Skip to content

Commit

Permalink
Merge pull request #2 from codetheorist/master
Browse files Browse the repository at this point in the history
Change JSON database column to binary
  • Loading branch information
oriceon authored Aug 31, 2017
2 parents 975b57d + 7262b27 commit 23e7835
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function up()
Schema::create('settings__lists', function (Blueprint $table)
{
$table->string('setting_key')->index()->unique();
$table->json('setting_value')->nullable();
$table->binary('setting_value')->nullable();
});
}

Expand Down

0 comments on commit 23e7835

Please sign in to comment.