diff --git a/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php b/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php deleted file mode 100644 index bf80cb4d..00000000 --- a/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php +++ /dev/null @@ -1,34 +0,0 @@ -string('payment_type')->after('member_id')->nullable(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('claim_requests', function (Blueprint $table) { - // - $table->dropColumn('payment_type'); - }); - } -}; diff --git a/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php b/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php deleted file mode 100644 index ce185355..00000000 --- a/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php +++ /dev/null @@ -1,36 +0,0 @@ -string('service_code')->after('payment_type')->nullable(); - $table->unsignedBigInteger('policy_id')->after('service_code')->nullable(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('claim_requests', function (Blueprint $table) { - // - $table->dropColumn('service_code'); - $table->dropColumn('policy_id'); - }); - } -};