no need of IF NOT EXISTS when creating the database

This commit is contained in:
Yann Leboulanger 2009-05-27 09:50:12 +02:00
parent 05e63acc22
commit 8a70c5a679

View file

@ -92,7 +92,7 @@ def create_log_db():
hash TEXT,
data BLOB);
CREATE TABLE IF NOT EXISTS rooms_last_message_time(
CREATE TABLE rooms_last_message_time(
jid_id INTEGER PRIMARY KEY UNIQUE,
time INTEGER
);