From e1d68e852a56e41a1aea19f5e6338943fed5e34c Mon Sep 17 00:00:00 2001 From: epriestley Date: Sun, 20 Mar 2011 17:55:31 -0700 Subject: [PATCH] Sorta need this file. --- resources/sql/patches/009.repo_summary.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 resources/sql/patches/009.repo_summary.sql diff --git a/resources/sql/patches/009.repo_summary.sql b/resources/sql/patches/009.repo_summary.sql new file mode 100644 index 0000000000..5f767c4e29 --- /dev/null +++ b/resources/sql/patches/009.repo_summary.sql @@ -0,0 +1,7 @@ +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`) +); \ No newline at end of file