Update gitignore. Add schema.

This commit is contained in:
2019-01-06 22:47:49 +05:30
parent e897d6c162
commit 4ae5663fea
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -95,3 +95,4 @@ ENV/
.ropeproject
config.py
chanbot.sqlite
+2
View File
@@ -0,0 +1,2 @@
CREATE TABLE IF NOT EXISTS poll(callback int NOT NULL, user_id int, UNIQUE(callback, user_id));
INSERT INTO poll values(0, 0);