]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
more changes to file_id copied from mysql schema change in 05e51228020fecaa894523b515...
authorBrenda Wallace <shiny@cpan.org>
Wed, 22 Jul 2009 09:39:53 +0000 (21:39 +1200)
committerBrenda Wallace <shiny@cpan.org>
Wed, 22 Jul 2009 09:39:53 +0000 (21:39 +1200)
db/laconica_pg.sql

index de4fab03e26c778c1f91621144c6a378efc20c5a..1059da3c9981d81d573b8236cf2e3a1c227d0d4c 100644 (file)
@@ -488,8 +488,7 @@ create table file_redirection (
 \r
 create sequence file_thumbnail_seq;\r
 create table file_thumbnail (\r
-    id bigint default nextval('file_thumbnail_seq') primary key /* comment 'unique identifier' */,\r
-    file_id bigint unique, \r
+    file_id bigint primary key, \r
     url varchar(255) unique, \r
     width integer, \r
     height integer \r
@@ -497,11 +496,10 @@ create table file_thumbnail (
 \r
 create sequence file_to_post_seq;\r
 create table file_to_post (\r
-    id bigint default nextval('file_to_post_seq') primary key /* comment 'unique identifier' */,\r
     file_id bigint, \r
     post_id bigint, \r
 \r
-    unique(file_id, post_id)\r
+    primary key (file_id, post_id)\r
 );\r
 \r
 create table group_block (\r