diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-05-25 21:22:07 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-05-25 21:22:07 +0100 | 
| commit | 6aa56f0f25451b9a642fd031e8b6cefde86756ae (patch) | |
| tree | 4e895e3b69de1565717c455e49d77b4e22560b56 | |
| parent | Commit check function bodies on import (diff) | |
| download | gentoobrowse-api-6aa56f0f25451b9a642fd031e8b6cefde86756ae.tar.bz2 gentoobrowse-api-6aa56f0f25451b9a642fd031e8b6cefde86756ae.tar.xz gentoobrowse-api-6aa56f0f25451b9a642fd031e8b6cefde86756ae.zip | |
Fix order of properties on firstseen
| -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 254c08b..afd47af 100644 --- a/gentoobrowse-api/db/schema.sql +++ b/gentoobrowse-api/db/schema.sql @@ -329,7 +329,7 @@ CREATE TABLE ebuilds (      versioninst ebuildversion NOT NULL,      slot text NOT NULL,      license text, -    firstseen timestamp without time zone NOT NULL DEFAULT now(), +    firstseen timestamp without time zone DEFAULT now() NOT NULL,      moddate timestamp without time zone NOT NULL,      repoid integer NOT NULL  ); | 
