create transports_cache on first startup, fixes

#2223
This commit is contained in:
Dimitur Kirov 2006-08-10 06:57:10 +00:00
parent ed4406472a
commit 78863765e8
1 changed files with 5 additions and 0 deletions

View File

@ -57,6 +57,11 @@ def create_log_db():
jid_id INTEGER
);
CREATE TABLE transports_cache (
transport TEXT UNIQUE,
type INTEGER
);
CREATE TABLE logs(
log_line_id INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
jid_id INTEGER,