Browse Source

Merge pull request #3670 from SammyK/password-column-fix

Fix password column for future hashing
Taylor Otwell 9 years ago
parent
commit
aa07b0c699
1 changed files with 1 additions and 1 deletions
  1. 1 1
      database/migrations/2014_10_12_000000_create_users_table.php

+ 1 - 1
database/migrations/2014_10_12_000000_create_users_table.php

@@ -16,7 +16,7 @@ class CreateUsersTable extends Migration
             $table->increments('id');
             $table->string('name');
             $table->string('email')->unique();
-            $table->string('password', 60);
+            $table->string('password');
             $table->rememberToken();
             $table->timestamps();
         });