diff --git a/app/database/migrations/2013_11_22_213400_edits_to_settings_table.php b/app/database/migrations/2013_11_22_213400_edits_to_settings_table.php new file mode 100644 index 0000000000..9361718106 --- /dev/null +++ b/app/database/migrations/2013_11_22_213400_edits_to_settings_table.php @@ -0,0 +1,36 @@ +dropColumn('option_label'); + $table->dropColumn('option_name'); + $table->dropColumn('option_value'); + $table->integer('per_page')->default(20); + $table->string('site_name','100')->default("Snipe IT Asset Management"); + }); + + + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } + +} \ No newline at end of file