From: dms Date: Sat, 23 Sep 2000 14:18:44 +0000 (+0000) Subject: closed 114944 -- karma can't be a negative int X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b8f9bccae7f12e0d6288831d23b54e24afe1a2a1;p=infobot.git closed 114944 -- karma can't be a negative int git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@136 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/scripts/setup_sql.pl b/scripts/setup_sql.pl index 8cf13d2..4fe4da1 100755 --- a/scripts/setup_sql.pl +++ b/scripts/setup_sql.pl @@ -116,7 +116,7 @@ if ($param{'DBType'} =~ /mysql/i) { $query = "CREATE TABLE karma (". "nick VARCHAR(20) NOT NULL,". - "karma SMALLINT UNSIGNED,". + "karma SMALLINT,". "PRIMARY KEY (nick)". ")";