diff --git a/migrations/2015_12_17_194247_change_settings_value_column_to_text.php b/migrations/2015_12_17_194247_change_settings_value_column_to_text.php new file mode 100644 index 000000000..85c603d27 --- /dev/null +++ b/migrations/2015_12_17_194247_change_settings_value_column_to_text.php @@ -0,0 +1,23 @@ +schema->table('settings', function (Blueprint $table) { + $table->text('value')->change(); + }); + } + + public function down() + { + $this->schema->table('settings', function (Blueprint $table) { + $table->binary('value')->change(); + }); + } +}