Remove spaces after the function keyword in the default migrations

This commit is contained in:
Kevin MacMartin 2016-09-02 22:53:01 -04:00
parent def7030f70
commit 28a82ad735
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ class CreateUsersTable extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('users', function (Blueprint $table) { Schema::create('users', function(Blueprint $table) {
$table->increments('id'); $table->increments('id');
$table->string('name'); $table->string('name');
$table->string('email')->unique(); $table->string('email')->unique();

View file

@ -13,7 +13,7 @@ class CreatePasswordResetsTable extends Migration
*/ */
public function up() public function up()
{ {
Schema::create('password_resets', function (Blueprint $table) { Schema::create('password_resets', function(Blueprint $table) {
$table->string('email')->index(); $table->string('email')->index();
$table->string('token')->index(); $table->string('token')->index();
$table->timestamp('created_at')->nullable(); $table->timestamp('created_at')->nullable();