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 | d463741d1db53b5bcb82923caa44041c6614a60e (patch) | |
| tree | 5d8f084717fb1a58363696f16dba0dfbbce8e06b | |
| parent | Remove the need to associate bugs and packages with functional index (diff) | |
| download | gentoobrowse-api-d463741d1db53b5bcb82923caa44041c6614a60e.tar.bz2 gentoobrowse-api-d463741d1db53b5bcb82923caa44041c6614a60e.tar.xz gentoobrowse-api-d463741d1db53b5bcb82923caa44041c6614a60e.zip | |
commitid can be a straight char(40), it won't vary
| -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, | 
