fixing typos
authorpietrus <pietrus>
Fri, 1 Sep 2006 04:37:36 +0000 (04:37 +0000)
committerpietrus <pietrus>
Fri, 1 Sep 2006 04:37:36 +0000 (04:37 +0000)
dbscripts/create_pg.sql
dbscripts/updates/update20050913.sql

index e29ce4c..4070d46 100755 (executable)
@@ -432,7 +432,7 @@ CREATE TABLE "filter_group" (
 CREATE SEQUENCE "db_patches_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1  cache 1 ;
 
 CREATE TABLE "db_patches" (
-  "id" integer DEFAULT nextval('filter_group_id_seq'::text) NOT NULL,
+  "id" integer DEFAULT nextval('db_patches_id_seq'::text) NOT NULL,
   "date" date NOT NULL,
   "description" text
 );
index 641202b..aeb0894 100755 (executable)
@@ -15,7 +15,7 @@ BEGIN TRANSACTION;
 CREATE SEQUENCE "db_patches_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1  cache 1 ;
 
 CREATE TABLE "db_patches" (
-  "id" integer DEFAULT nextval('filter_group_id_seq'::text) NOT NULL,
+  "id" integer DEFAULT nextval('db_patches_id_seq'::text) NOT NULL,
   "date" date NOT NULL,
   "description" text
 );