search for: latin1_general_ci

Displaying 3 results from an estimated 3 matches for "latin1_general_ci".

2012 Aug 10
2
postfix mysql quota map to dovecot dict in mysql
currently dovecot dict is CREATE TABLE IF NOT EXISTS `quota` ( `username` varchar(100) COLLATE latin1_general_ci NOT NULL, `bytes` bigint(20) NOT NULL DEFAULT '0', `messages` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`username`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; there is not field that says how much quota each user have, so one cant make a query on...
2006 May 10
3
migrations :timestamp becomes :datetime in mySql
...table.column :alter_date, :timestamp table.column :create_date, :datetime end But in mysql I get: CREATE TABLE `some_table` ( ... `alter_date` datetime default NULL, `create_date` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci ; -- Posted via http://www.ruby-forum.com/.
2008 Sep 02
2
Is it safe to delete /bin/[ && /usr/bin/false?
...Thinking that this might be the culprit when these messages starting to appear, I looked it over for possible typos. The only possible issue I could see was the reference to databases/mysql: .if ${.CURDIR:M*/databases/mysql*} WITH_OPENSSL=yes WITH_CHARSET=latin1 WITH_XCHARSET=complex WITH_COLLATION=latin1_general_ci WITH_PROC_SCOPE_PTH=yes BUILD_OPTIMIZED=yes WITH_ARCHIVE=yes WITH_CSV=yes .endif NOTE the YES | NO, as opposed to TRUE | FALSE. I changed them to true v false. But I have already built MySQL with the YES | NO. Could this be the issue? Source(s) cvsupped 08-09-01 Thank you for all your time and con...