From e593bcf3d7ff2636b9e0ea578cbd7b795e135a38 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sun, 5 Sep 2004 15:45:50 +0000 Subject: - re-enable polls (user is now able to decide if users are able to change votes if this feature is enabled within the given forum) git-svn-id: file:///svn/phpbb/trunk@4981 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'phpBB/install') diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 32981c93bd..7beb7cc8c5 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -802,8 +802,9 @@ CREATE TABLE phpbb_topics ( poll_title varchar(255) NOT NULL, poll_start int(11) DEFAULT '0' NOT NULL, poll_length int(11) DEFAULT '0' NOT NULL, - poll_max_options tinyint(4) UNSIGNED NOT NULL DEFAULT '1', - poll_last_vote int(11), + poll_max_options tinyint(4) UNSIGNED DEFAULT '1' NOT NULL, + poll_last_vote int(11) UNSIGNED DEFAULT '0', + poll_vote_change tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (topic_id), KEY forum_id (forum_id), KEY forum_id_type (forum_id, topic_type), -- cgit v1.2.1