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 new file mode 100644 index 00000000..259670e8 --- /dev/null +++ b/database/migrations/2023_06_09_151451_add_service_code_to_claim_requests.php @@ -0,0 +1,36 @@ +string('service_code')->after('payment_type')->nullable(); + $table->string('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'); + }); + } +};