diff --git a/app/database/migrations/2013_11_22_075308_add_option_label_to_settings_table.php b/app/database/migrations/2013_11_22_075308_add_option_label_to_settings_table.php new file mode 100644 index 0000000000..97b45288da --- /dev/null +++ b/app/database/migrations/2013_11_22_075308_add_option_label_to_settings_table.php @@ -0,0 +1,33 @@ +string('option_label','80')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('settings', function($table) + { + $table->dropColumn('option_label'); + }); + } + +} \ No newline at end of file