From 595f151ff9cc06db06d92819d66b0dce49bfdc1f Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 20 Nov 2013 07:28:34 -0500 Subject: [PATCH] Add soft delete to locations - migration --- ...20_121404_add_soft_delete_on_locations.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 app/database/migrations/2013_11_20_121404_add_soft_delete_on_locations.php diff --git a/app/database/migrations/2013_11_20_121404_add_soft_delete_on_locations.php b/app/database/migrations/2013_11_20_121404_add_soft_delete_on_locations.php new file mode 100644 index 0000000000..12883989e4 --- /dev/null +++ b/app/database/migrations/2013_11_20_121404_add_soft_delete_on_locations.php @@ -0,0 +1,30 @@ +softDeletes(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } + +} \ No newline at end of file