diff --git a/README.md b/README.md index 80d60b0..09e87fc 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ $this->aauth->send_pm(3,4,'New cloaks','These new cloaks are fantastic!') #### Banning users -Frodo has broke the rules and will not need to be banned from the system. +Frodo has broke the rules and will now need to be banned from the system. ```php $this->aauth->ban_user(3); ``` diff --git a/sql/Aauth_v2.sql b/sql/Aauth_v2.sql index b0c68a1..008d6ad 100644 --- a/sql/Aauth_v2.sql +++ b/sql/Aauth_v2.sql @@ -107,7 +107,7 @@ DROP TABLE IF EXISTS `aauth_users`; CREATE TABLE `aauth_users` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(100) COLLATE utf8_general_ci NOT NULL, - `pass` varchar(50) COLLATE utf8_general_ci NOT NULL, + `pass` varchar(64) COLLATE utf8_general_ci NOT NULL, `name` varchar(100) COLLATE utf8_general_ci, `banned` tinyint(1) DEFAULT '0', `last_login` datetime DEFAULT NULL,