repaired seen_tweets, this time 4 real

master
b3yond 2018-09-24 22:14:17 +02:00
parent bb1319473e
commit 9a24237e97
1 changed files with 1 additions and 1 deletions

2
db.py
View File

@ -109,7 +109,7 @@ class DB(object):
CREATE TABLE IF NOT EXISTS seen_tweets (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
user_id INTEGER,
tweet_id TEXT,
tweet_id INTEGER,
FOREIGN KEY(user_id) REFERENCES user(id)
);
CREATE TABLE IF NOT EXISTS seen_dms (