1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-09-19 06:39:10 +00:00

add email for registration, set migration

This commit is contained in:
devfake
2015-06-23 14:13:27 +02:00
parent 750914882a
commit 01f54264e7
4 changed files with 7 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ class CreateUsersTable extends Migration
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('username')->unique();
$table->string('email')->unique();
$table->string('password', 60);
$table->rememberToken();