mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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:
parent
99a2bb81cf
commit
10355ec959
1 changed files with 2 additions and 2 deletions
|
@ -190,8 +190,8 @@ CREATE TABLE PackageBlacklist (
|
|||
--
|
||||
CREATE TABLE IF NOT EXISTS TU_VoteInfo (
|
||||
ID int(10) unsigned NOT NULL auto_increment,
|
||||
Agenda text COLLATE utf8_general_ci NOT NULL,
|
||||
User VARCHAR(32) COLLATE utf8_general_ci NOT NULL,
|
||||
Agenda text NOT NULL,
|
||||
User VARCHAR(32) NOT NULL,
|
||||
Submitted bigint(20) unsigned NOT NULL,
|
||||
End bigint(20) unsigned NOT NULL,
|
||||
SubmitterID int(10) unsigned NOT NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue