]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
PostgreSQL - reply.modified needs a default
authorCiaranG <ciaran@ciarang.com>
Wed, 10 Sep 2008 07:37:41 +0000 (03:37 -0400)
committerCiaranG <ciaran@ciarang.com>
Wed, 10 Sep 2008 07:37:41 +0000 (03:37 -0400)
darcs-hash:20080910073741-f6e2c-fe856e1acbc14f77e8ad6502cf5e16de768e0e5f.gz

db/laconica_pg.sql

index 8becea99c88a34f05a6ffb2a35de633170d85e74..315112b9350accd1a28da8d8db29001208eaaf5c 100644 (file)
@@ -126,7 +126,7 @@ create table reply (
 \r
     notice_id integer not null /* comment 'notice that is the reply' */ references notice (id) ,\r
     profile_id integer not null /* comment 'profile replied to' */ references profile (id) ,\r
-    modified timestamp not null /* comment 'date this record was modified' */,\r
+    modified timestamp not null default 'now' /* comment 'date this record was modified' */,\r
     replied_id integer /* comment 'notice replied to (not used, see notice.reply_to)' */,\r
 \r
     primary key (notice_id, profile_id)\r