1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/resources/sql/patches/009.repo_summary.sql

8 lines
259 B
MySQL
Raw Normal View History

CREATE TABLE {$NAMESPACE}_repository.`repository_summary` (
2011-03-21 01:55:31 +01:00
`repositoryID` int(10) unsigned NOT NULL,
`size` int(10) unsigned NOT NULL,
`lastCommitID` int(10) unsigned NOT NULL,
`epoch` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`repositoryID`)
);