]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added missing columns from mysql upgrade script into pgsql script
authorBrenda Wallace <shiny@cpan.org>
Thu, 26 Nov 2009 07:35:41 +0000 (20:35 +1300)
committerBrenda Wallace <shiny@cpan.org>
Thu, 26 Nov 2009 07:35:41 +0000 (20:35 +1300)
db/08to09_pg.sql

index 7aaf3a7a00017335e4a89d8fefd8c863bdf73cde..233af82efc97a4e8bdf247298048a1a044f1fee5 100644 (file)
@@ -60,3 +60,13 @@ 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 ADD COLUMN lat decimal(10, 7) /* comment 'latitude'*/;
+ALTER TABLE notice ADD COLUMN lon decimal(10,7) /* comment 'longitude'*/;
+ALTER TABLE notice ADD COLUMN location_id integer /* comment 'location id if possible'*/ ;
+ALTER TABLE notice ADD COLUMN location_ns integer /* comment 'namespace for location'*/;
+
+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'*/;
+    
\ No newline at end of file