From 5e08e5025c3dbdc9dbfb31e1a636fae6bb4c8dd2 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 30 Dec 2022 21:42:01 -0700 Subject: [PATCH] Add migration --- ...2_31_034627_fix_account_status_deletes.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2022_12_31_034627_fix_account_status_deletes.php diff --git a/database/migrations/2022_12_31_034627_fix_account_status_deletes.php b/database/migrations/2022_12_31_034627_fix_account_status_deletes.php new file mode 100644 index 000000000..e5aab2859 --- /dev/null +++ b/database/migrations/2022_12_31_034627_fix_account_status_deletes.php @@ -0,0 +1,30 @@ +get()->each(function($status) { StatusDelete::dispatch($status); }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +};