From 9bafff750501da822c84e401afee94dc104bfee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Wed, 28 Feb 2024 19:08:02 +0100 Subject: [PATCH] Add steps column to subscriptions table --- ...2_28_180250_add_steps_to_subscriptions.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 database/migrations/2024_02_28_180250_add_steps_to_subscriptions.php diff --git a/database/migrations/2024_02_28_180250_add_steps_to_subscriptions.php b/database/migrations/2024_02_28_180250_add_steps_to_subscriptions.php new file mode 100644 index 000000000000..b2a73d857a6a --- /dev/null +++ b/database/migrations/2024_02_28_180250_add_steps_to_subscriptions.php @@ -0,0 +1,29 @@ +pluck('id') + ->implode(','); + + $table->string('steps')->default($steps); + }); + } +};