diff --git a/migrations/2015_01_20_105810_add_settings_to_users_table.php b/migrations/2015_01_20_105810_add_settings_to_users_table.php index f2026c8..613136b 100644 --- a/migrations/2015_01_20_105810_add_settings_to_users_table.php +++ b/migrations/2015_01_20_105810_add_settings_to_users_table.php @@ -14,7 +14,7 @@ public function up() { Schema::table('users', function(Blueprint $table) { - $table->text('settings'); + $table->text('settings')->nullable(); }); }