diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-12 17:44:26 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-12 17:44:26 +0100 |
commit | 3a7d2175f3a6e0daac3dc1674ac5665a75af5cd9 (patch) | |
tree | 5d8f084717fb1a58363696f16dba0dfbbce8e06b | |
parent | Remove the need to associate bugs and packages with functional index (diff) | |
download | gentoobrowse-api-0.4.4.tar.bz2 gentoobrowse-api-0.4.4.tar.xz gentoobrowse-api-0.4.4.zip |
commitid can be a straight char(40), it won't varygentoobrowse-api-0.4.4
-rw-r--r-- | gentoobrowse-api/db/schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoobrowse-api/db/schema.sql b/gentoobrowse-api/db/schema.sql index 532ebbb..5adc042 100644 --- a/gentoobrowse-api/db/schema.sql +++ b/gentoobrowse-api/db/schema.sql @@ -30,7 +30,7 @@ SET default_with_oids = false; CREATE TABLE changelog ( changeid integer NOT NULL, repoid integer NOT NULL, - commitid text NOT NULL, + commitid character(40) NOT NULL, committime timestamp without time zone NOT NULL, authorname text NOT NULL, authoremail text NOT NULL, |