Browse Source

Fix password column for future hashing

SammyK 8 years ago
parent
commit
531629e442
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();
         });