On Mon, Aug 22, 2011 at 3:45 PM, Dan McGee <[email protected]> wrote: > 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 <[email protected]> > --- Ping?
> support/schema/aur-schema.sql | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql > index 88d074e..544ed94 100644 > --- a/support/schema/aur-schema.sql > +++ b/support/schema/aur-schema.sql > @@ -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, > -- > 1.7.6 > >
