From e04f6d2328820cded0c853888fdea57119a8fee2 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 16 Aug 2002 07:37:03 +0000 Subject: - Made the rating module and its SQL table ASNI compliant. Patch by jaa. --- database/database.mysql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'database/database.mysql') diff --git a/database/database.mysql b/database/database.mysql index 7337be7c3..fa6eba04e 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -318,8 +318,8 @@ CREATE TABLE poll_choices ( CREATE TABLE rating ( uid int(10) NOT NULL default '0', - new int(6) NOT NULL default '0', - old int(6) NOT NULL default '0', + current int(6) NOT NULL default '0', + previous int(6) NOT NULL default '0', PRIMARY KEY (uid) ) TYPE=MyISAM; -- cgit v1.2.3