From 85b0d7fc96ee87cc2863e84787cca1164b16f401 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Mon, 12 Jun 2006 07:30:24 +0000 Subject: [PATCH] fix parse error --- sql/db_update_1.1-alpha4_1.1-alpha5_sqlite.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/db_update_1.1-alpha4_1.1-alpha5_sqlite.sql b/sql/db_update_1.1-alpha4_1.1-alpha5_sqlite.sql index 24c6860..386aca8 100644 --- a/sql/db_update_1.1-alpha4_1.1-alpha5_sqlite.sql +++ b/sql/db_update_1.1-alpha4_1.1-alpha5_sqlite.sql @@ -44,7 +44,7 @@ CREATE TABLE {PREFIX}tempreferences ( entry_id int(10) {UNSIGNED} not null default '0', link text, name text, - type varchar(128' not null default '' + type varchar(128) not null default '' ) {UTF_8}; INSERT INTO {PREFIX}tempreferences (id, entry_id, link, name) SELECT id, entry_id, link, name FROM {PREFIX}references; @@ -55,7 +55,7 @@ CREATE TABLE {PREFIX}references ( entry_id int(10) {UNSIGNED} not null default '0', link text, name text, - type varchar(128' not null default '' + type varchar(128) not null default '' ) {UTF_8}; CREATE INDEX refentry_idx ON {PREFIX}references (entry_id); -- 2.39.5