fixed a bug in the update script
authorzapata <zapata>
Thu, 19 Dec 2002 16:14:34 +0000 (16:14 +0000)
committerzapata <zapata>
Thu, 19 Dec 2002 16:14:34 +0000 (16:14 +0000)
dbscripts/updates/update20021213.sql

index dcd93b4..1f2119d 100755 (executable)
@@ -33,13 +33,6 @@ BEGIN TRANSACTION;
 
   DROP TABLE "comment_status_old";
 
-  CREATE  INDEX "comment_checksum_index" on "comment" using btree ( "checksum" "int4_ops" );
-  CREATE  INDEX "idx_comment_to_media" on "comment" using btree ( "to_media" "int4_ops" );
-  create index idx_comment_webdb_create on comment(webdb_create);
-
-  CREATE  INDEX "idx_comment_tomedia_ispublished" on "comment" using btree ( "to_media" "int4_ops", "is_published" "bool_ops" );
-
-  CREATE UNIQUE INDEX "idx_comment_id" on "comment" using btree ( "id" "int4_ops" );
 
   
 -- task 2: add sequenced and unique id's to article_type
@@ -163,6 +156,12 @@ BEGIN TRANSACTION;
     relname = 'comment';
   
   DROP TABLE "comment_old";
+
+  CREATE  INDEX "comment_checksum_index" on "comment" using btree ( "checksum" "int4_ops" );
+  CREATE  INDEX "idx_comment_to_media" on "comment" using btree ( "to_media" "int4_ops" );
+  create index idx_comment_webdb_create on comment(webdb_create);
+  CREATE  INDEX "idx_comment_tomedia_ispublished" on "comment" using btree ( "to_media" "int4_ops", "is_published" "bool_ops" );
+  CREATE UNIQUE INDEX "idx_comment_id" on "comment" using btree ( "id" "int4_ops" );
   
 -- that's it!