Remove explicit utf8 declarations in table creation

The create database statement sets the default character set of the
database to UTF-8, so no need to do it down below.

Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Dan McGee 2011-10-21 16:03:38 -05:00 committed by Lukas Fleischer
parent 99a2bb81cf
commit 10355ec959

View file

@ -190,8 +190,8 @@ CREATE TABLE PackageBlacklist (
-- --
CREATE TABLE IF NOT EXISTS TU_VoteInfo ( CREATE TABLE IF NOT EXISTS TU_VoteInfo (
ID int(10) unsigned NOT NULL auto_increment, ID int(10) unsigned NOT NULL auto_increment,
Agenda text COLLATE utf8_general_ci NOT NULL, Agenda text NOT NULL,
User VARCHAR(32) COLLATE utf8_general_ci NOT NULL, User VARCHAR(32) NOT NULL,
Submitted bigint(20) unsigned NOT NULL, Submitted bigint(20) unsigned NOT NULL,
End bigint(20) unsigned NOT NULL, End bigint(20) unsigned NOT NULL,
SubmitterID int(10) unsigned NOT NULL, SubmitterID int(10) unsigned NOT NULL,