mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7 lines
257 B
MySQL
7 lines
257 B
MySQL
|
CREATE TABLE phabricator_repository.`repository_summary` (
|
||
|
`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`)
|
||
|
);
|