Update 2014_10_12_000000_create_users_table.php
This commit is contained in:
parent
3f7e48ea27
commit
19ddd37182
|
@ -15,7 +15,7 @@ class CreateUsersTable extends Migration
|
|||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('name')->unique();
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
|
|
Loading…
Reference in New Issue