Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/resources/sql/patches/009.repo_summary.sql
12250 views
1
CREATE TABLE {$NAMESPACE}_repository.`repository_summary` (
2
`repositoryID` int(10) unsigned NOT NULL,
3
`size` int(10) unsigned NOT NULL,
4
`lastCommitID` int(10) unsigned NOT NULL,
5
`epoch` int(10) unsigned DEFAULT NULL,
6
PRIMARY KEY (`repositoryID`)
7
);
8
9