From 48059ab401d9ee9804692b9bfe919ba9fb1b3e6c Mon Sep 17 00:00:00 2001 From: Code2Prog Date: Wed, 24 Sep 2014 07:07:02 +0100 Subject: [PATCH] Changed collation from utf8_turkish_ci to global standard utf8_general_ci --- .gitignore | 2 ++ sql/Aauth_v2.sql | 16 ++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..4dff4e42 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Created by .gitignore support plugin (hsz.mobi) +.idea/ \ No newline at end of file diff --git a/sql/Aauth_v2.sql b/sql/Aauth_v2.sql index 52aafbd4..2af980c0 100644 --- a/sql/Aauth_v2.sql +++ b/sql/Aauth_v2.sql @@ -116,22 +116,22 @@ CREATE TABLE `aauth_system_variables` ( DROP TABLE IF EXISTS `aauth_users`; CREATE TABLE `aauth_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `email` text COLLATE utf8_turkish_ci NOT NULL, - `pass` text COLLATE utf8_turkish_ci NOT NULL, - `name` text COLLATE utf8_turkish_ci, + `email` text COLLATE utf8_general_ci NOT NULL, + `pass` text COLLATE utf8_general_ci NOT NULL, + `name` text COLLATE utf8_general_ci, `banned` int(11) DEFAULT '0', `last_login` datetime DEFAULT NULL, `last_activity` datetime DEFAULT NULL, `last_login_attempt` datetime DEFAULT NULL, - `forgot_exp` text COLLATE utf8_turkish_ci, + `forgot_exp` text COLLATE utf8_general_ci, `remember_time` datetime DEFAULT NULL, - `remember_exp` text COLLATE utf8_turkish_ci, - `verification_code` text COLLATE utf8_turkish_ci, - `ip_address` text COLLATE utf8_turkish_ci, + `remember_exp` text COLLATE utf8_general_ci, + `verification_code` text COLLATE utf8_general_ci, + `ip_address` text COLLATE utf8_general_ci, `login_attempts` int(11) DEFAULT '0', PRIMARY KEY (`id`), KEY `id_index` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; -- ---------------------------- -- Records of aauth_users