]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add missing table "forward"
authorBrenda Wallace <shiny@cpan.org>
Wed, 9 Dec 2009 00:12:29 +0000 (13:12 +1300)
committerBrenda Wallace <shiny@cpan.org>
Wed, 9 Dec 2009 00:12:29 +0000 (13:12 +1300)
db/08to09_pg.sql
db/statusnet_pg.sql

index ee590b52f9139b7219b7766969b27fc44a07d5a0..4f8281bc3eaa49eec0ab0a6426dc629dbf8eac49 100644 (file)
@@ -79,3 +79,11 @@ ALTER TABLE profile ADD COLUMN lat decimal(10,7) /*comment 'latitude'*/ ;
 ALTER TABLE profile ADD COLUMN lon decimal(10,7) /*comment 'longitude'*/;
 ALTER TABLE profile ADD COLUMN location_id integer /* comment 'location id if possible'*/;
 ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for location'*/;
+
+CREATE TABLE forward (
+    profile_id integer not null /*comment 'profile who forwarded the notice'*/ references profile (id),
+    notice_id integer not null /*comment 'notice they forwarded'*/ references notice (id),
+    created timestamp not null /*comment 'date this record was created'*/ DEFAULT CURRENT_TIMESTAMP,
+    PRIMARY KEY (profile_id, notice_id)
+);
+
index 92546c814d696b544e089f7a57ecbfbf946b1399..6bcc2788599f2c0609eaeaec432631262664b465 100644 (file)
@@ -582,6 +582,8 @@ create table location_namespace (
 
 );
 
+
+
 create table login_token (
     user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
     token char(32) not null /* comment 'token useable for logging in'*/,
@@ -591,3 +593,9 @@ create table login_token (
     primary key (user_id)
 );
 
+CREATE TABLE forward (
+    profile_id integer not null /*comment 'profile who forwarded the notice'*/ references profile (id),
+    notice_id integer not null /*comment 'notice they forwarded'*/ references notice (id),
+    created timestamp not null /*comment 'date this record was created'*/ DEFAULT CURRENT_TIMESTAMP,
+    PRIMARY KEY (profile_id, notice_id)
+);