diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sql/sqlite/createTables.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql index 152d16fc..5cd439d2 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 ); |