From 7141fecbaece62b4da95a542caab24dec35f346b Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sat, 10 Nov 2018 13:16:16 -0600 Subject: [PATCH] table migration fix --- database/migrations/2018_11_10_060257_create_sessions_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2018_11_10_060257_create_sessions_table.php b/database/migrations/2018_11_10_060257_create_sessions_table.php index 3b62bad27..b0f89c9f7 100644 --- a/database/migrations/2018_11_10_060257_create_sessions_table.php +++ b/database/migrations/2018_11_10_060257_create_sessions_table.php @@ -16,7 +16,7 @@ class CreateSessionsTable extends Migration if(!Schema::hasTable('sessions')) { Schema::create('sessions', function (Blueprint $table) { $table->string('id')->unique(); - $table->unisgnedInteger('user_id')->nullable(); + $table->unsignedInteger('user_id')->nullable(); $table->string('ip_address', 45)->nullable(); $table->text('user_agent')->nullable(); $table->text('payload');