phorge/resources/sql/patches/009.repo_summary.sql
2011-03-20 17:55:31 -07:00

7 lines
257 B
SQL

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`)
);