From 8f17dcdcbd94e279535ff1fecb97316217f02a41 Mon Sep 17 00:00:00 2001 From: Matt Burchett Date: Fri, 9 Apr 2021 01:59:03 -0700 Subject: [PATCH] Remove 'other' class ships --- .../2021_04_09_085648_remove_other_ships.php | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 database/migrations/2021_04_09_085648_remove_other_ships.php diff --git a/database/migrations/2021_04_09_085648_remove_other_ships.php b/database/migrations/2021_04_09_085648_remove_other_ships.php new file mode 100644 index 0000000..59b4af3 --- /dev/null +++ b/database/migrations/2021_04_09_085648_remove_other_ships.php @@ -0,0 +1,31 @@ +where('shipClass', 'O') + ->delete(); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}