Skip to content

Commit

Permalink
Changed Setting value to nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
therealsmat committed Feb 12, 2018
1 parent 2c90c67 commit 083696e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function up()
Schema::create('settings', function (Blueprint $table) {
$table->increments('id');
$table->string('key');
$table->string('value');
$table->string('value')->nullable();
$table->timestamps();
});
}
Expand Down

0 comments on commit 083696e

Please sign in to comment.