From: pietrus Date: Fri, 1 Sep 2006 04:37:36 +0000 (+0000) Subject: fixing typos X-Git-Tag: LATEST_MERGED_1_1~46 X-Git-Url: http://erislabs.net/gitweb/?p=mir.git;a=commitdiff_plain;h=04b4ac65a0b00082225ba81e116202246aec55b3 fixing typos --- diff --git a/dbscripts/create_pg.sql b/dbscripts/create_pg.sql index e29ce4cd..4070d461 100755 --- a/dbscripts/create_pg.sql +++ b/dbscripts/create_pg.sql @@ -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 ); diff --git a/dbscripts/updates/update20050913.sql b/dbscripts/updates/update20050913.sql index 641202b1..aeb0894f 100755 --- a/dbscripts/updates/update20050913.sql +++ b/dbscripts/updates/update20050913.sql @@ -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 );