Skip to content

Commit

Permalink
Merge pull request #26 from fotex/master
Browse files Browse the repository at this point in the history
Changed collation from utf8_turkish_ci to global standard utf8_general_c...
  • Loading branch information
Emre Akay committed Sep 26, 2014
2 parents 9b5123a + 48059ab commit 9dd0a17
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Created by .gitignore support plugin (hsz.mobi)
.idea/
16 changes: 8 additions & 8 deletions sql/Aauth_v2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9dd0a17

Please sign in to comment.