]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
postgresl update script now working in postgres
authorbrenda <brenda@pukeko.(none)>
Sat, 14 Nov 2009 03:34:36 +0000 (16:34 +1300)
committerbrenda <brenda@pukeko.(none)>
Sat, 14 Nov 2009 03:34:36 +0000 (16:34 +1300)
db/08to09_pg.sql

index fe9eccb2a95eb01e2c0b633c0d0f9c1ba889e347..d9b57fb8414702bd947de854693b24717361b165 100644 (file)
@@ -40,24 +40,23 @@ create table user_role (
 );
 
 create table login_token (
-    user_id integer not null /* comment 'user owning this token'*/ references user (id),
+    user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
     token char(32) not null /* comment 'token useable for logging in'*/,
     created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/,
     modified timestamp /* comment 'date this record was modified'*/,
 
-    constraint primary key (user_id)
+    primary key (user_id)
 );
 
-alter table fave
-    drop index fave_user_id_idx,
-    add index fave_user_id_idx using btree(user_id,modified);
+DROP index fave_user_id_idx;
+CREATE index fave_user_id_idx on fave (user_id,modified);
 
-alter table subscription
-    drop index subscription_subscriber_idx,
-    add index subscription_subscriber_idx using btree(subscriber,created),
-    drop index subscription_subscribed_idx,
-    add index subscription_subscribed_idx using btree(subscribed,created);
+DROP index subscription_subscriber_idx;
+CREATE index subscription_subscriber_idx ON subscription (subscriber,created);
+
+DROP index subscription_subscribed_idx;
+CREATE index subscription_subscribed_idx ON subscription (subscribed,created);
+
+DROP index notice_profile_id_idx;
+CREATE index notice_profile_id_idx ON notice (profile_id,created,id);
 
-alter table notice
-    drop index notice_profile_id_idx,
-    add index notice_profile_id_idx using btree(profile_id,created,id);