From 5702ea7a1571da7aaf14623d59d68a6a0e2fbc35 Mon Sep 17 00:00:00 2001 From: ivan-sim Date: Wed, 20 Dec 2023 18:49:52 +0700 Subject: [PATCH] Add Column in Claim Request --- ...20_184642_add_column_to_claim_requests.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2023_12_20_184642_add_column_to_claim_requests.php diff --git a/database/migrations/2023_12_20_184642_add_column_to_claim_requests.php b/database/migrations/2023_12_20_184642_add_column_to_claim_requests.php new file mode 100644 index 00000000..f556686a --- /dev/null +++ b/database/migrations/2023_12_20_184642_add_column_to_claim_requests.php @@ -0,0 +1,32 @@ +bigInteger('request_log_id')->after('code'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('claim_requests', function (Blueprint $table) { + $table->dropColumn('request_log_id'); + }); + } +};