This commit is contained in:
James Cole 2017-12-27 18:11:22 +01:00
parent a14ae02c27
commit 5ba03bd222
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -160,7 +160,7 @@ class CreateSupportTables extends Migration
// straight from laravel // straight from laravel
$table->string('email')->index(); $table->string('email')->index();
$table->string('token')->index(); $table->string('token')->index();
$table->timestamp('created_at'); $table->timestamp('created_at')->nullable();
} }
); );
} }