Skip to content

Commit

Permalink
Administrator username maximum length reduced to 190 to support utf8m…
Browse files Browse the repository at this point in the history
…b4 charset. Fix #1
  • Loading branch information
sleeping-owl committed Oct 29, 2014
1 parent c88b2c0 commit 8c0ad0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function up()
Schema::create('administrators', function(Blueprint $table)
{
$table->increments('id');
$table->string('username')->unique();
$table->string('username', 190)->unique();
$table->string('password', 60);
$table->string('name');
$table->string('remember_token', 100)->nullable();
Expand Down

0 comments on commit 8c0ad0c

Please sign in to comment.