From f895867b86e66550eee23ed195cb02b6a9145bfa Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 28 Jul 2012 08:37:27 -0500 Subject: [PATCH] Twitter: twitter_settings shouldn't have a primary key --- modules/Twitter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Twitter.py b/modules/Twitter.py index e752203..a0eaf7c 100644 --- a/modules/Twitter.py +++ b/modules/Twitter.py @@ -102,7 +102,7 @@ class Twitter(Module): cur = db.cursor(mdb.cursors.DictCursor) cur.execute(""" CREATE TABLE twitter_settings ( - since_id SERIAL, + since_id BIGINT(20) UNSIGNED NOT NULL, output_channel VARCHAR(64) NOT NULL, oauth_token VARCHAR(256) DEFAULT NULL, oauth_token_secret VARCHAR(256) DEFAULT NULL