From 5c19dbdf77dcae7d86102f02e2d32d9231bed4e1 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Wed, 9 Sep 2009 22:18:25 +0200 Subject: Fixed superfluous semicolon in sqlite3 createTables.sql file It was causing problems with sqlite 3.6.10. --- src/sql/sqlite/createTables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sql') diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql index 152d16f..5cd439d 100644 --- a/src/sql/sqlite/createTables.sql +++ b/src/sql/sqlite/createTables.sql @@ -281,7 +281,7 @@ CREATE TABLE tmw_transactions time INTEGER NOT NULL, -- FOREIGN KEY (char_id) REFERENCES tmw_characters(id), - FOREIGN KEY (action) REFERENCES tmw_transaction_codes(id), + FOREIGN KEY (action) REFERENCES tmw_transaction_codes(id) ); CREATE INDEX tmw_transactions_char ON tmw_transactions ( char_id ); -- cgit