]> git.mjollnir.org Git - s9y.git/commitdiff
fix parse error
authorgarvinhicking <garvinhicking>
Mon, 12 Jun 2006 07:30:24 +0000 (07:30 +0000)
committergarvinhicking <garvinhicking>
Mon, 12 Jun 2006 07:30:24 +0000 (07:30 +0000)
sql/db_update_1.1-alpha4_1.1-alpha5_sqlite.sql

index 24c68607362e4baa8463b3af6b6c2e606d77ea86..386aca83c37faf1e08a9655891cb2f3096673bd1 100644 (file)
@@ -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);