]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Splitting br3nda's merge 97db6e17b3f76e9a6acf87ddbad47ba54e9b1a3b
authorEric Helgeson <erichelgeson@gmail.com>
Wed, 29 Jul 2009 01:21:01 +0000 (20:21 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Tue, 4 Aug 2009 10:05:04 +0000 (06:05 -0400)
Adding deleted_notice to pg.sql

db/laconica_pg.sql

index ad34720a23357e405c99a7ff433303385d4df041..b5626d3f4a063ae5eb73c0219bca8444f0e594d0 100644 (file)
@@ -529,6 +529,17 @@ create table session (
 
 create index session_modified_idx on session (modified);
 
+create table deleted_notice (
+
+    id integer primary key /* comment 'identity of notice'*/ ,
+    profile_id integer /* not null comment 'author of the notice'*/,
+    uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI'*/,
+    created timestamp not null  /* comment 'date the notice record was created'*/ ,
+    deleted timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date the notice record was created'*/
+);
+
+CREATE index deleted_notice_profile_id_idx on deleted_notice (profile_id);
+
 
 /* Textsearch stuff */