Change state table to include extra field

This commit is contained in:
2018-10-31 18:33:47 +05:30
parent 3ffabd4ded
commit 1127673d28
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ queries = [
"int);"),
("CREATE TABLE IF NOT EXISTS state(chat_id int PRIMARY KEY, state "
"varchar(10));"),
"varchar(10), extra varchar(10));"),
]
for query in queries:
cursor.execute(query)