diff --git a/app/database/migrations/2013_11_18_152942_remove_location_id_from_asset.php b/app/database/migrations/2013_11_18_152942_remove_location_id_from_asset.php new file mode 100644 index 0000000000..2e291a935e --- /dev/null +++ b/app/database/migrations/2013_11_18_152942_remove_location_id_from_asset.php @@ -0,0 +1,33 @@ +dropColumn('location_id'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('assets', function($table) + { + $table->integer('location_id'); + }); + } + +} \ No newline at end of file