From 0003260fc9dc076609d863f97babcd12420408a1 Mon Sep 17 00:00:00 2001 From: Spitfire Date: Wed, 6 Mar 2024 19:13:08 -0600 Subject: [PATCH] Added feature request rejection to db --- ...7_010249_update_features_add_rejection.php | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 database/migrations/2024_03_07_010249_update_features_add_rejection.php diff --git a/database/migrations/2024_03_07_010249_update_features_add_rejection.php b/database/migrations/2024_03_07_010249_update_features_add_rejection.php new file mode 100644 index 0000000000..f1c315b27e --- /dev/null +++ b/database/migrations/2024_03_07_010249_update_features_add_rejection.php @@ -0,0 +1,27 @@ +text('rejection')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('features', function (Blueprint $table) { + $table->dropColumn('rejection'); + }); + } +};