summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2016-05-25 21:22:07 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2016-05-25 21:22:07 +0100
commit6aa56f0f25451b9a642fd031e8b6cefde86756ae (patch)
tree4e895e3b69de1565717c455e49d77b4e22560b56
parentCommit check function bodies on import (diff)
downloadgentoobrowse-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.sql2
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
);