From 2ea08cd3df99f4303473a95492d91f52f10ac60e Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 20 Oct 2014 22:16:21 +0300 Subject: [PATCH] fix #182 - SQLite issue on /get_started --- .../migrations/2013_11_05_180133_confide_setup_users_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/database/migrations/2013_11_05_180133_confide_setup_users_table.php b/app/database/migrations/2013_11_05_180133_confide_setup_users_table.php index 7412ebe74560..e295b176b1e3 100755 --- a/app/database/migrations/2013_11_05_180133_confide_setup_users_table.php +++ b/app/database/migrations/2013_11_05_180133_confide_setup_users_table.php @@ -135,7 +135,7 @@ class ConfideSetupUsersTable extends Migration { $t->string('name')->nullable(); $t->string('ip'); $t->string('account_key')->unique(); - $t->timestamp('last_login'); + $t->timestamp('last_login')->nullable(); $t->string('address1')->nullable(); $t->string('address2')->nullable();