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 new file mode 100644 index 00000000..bf80cb4d --- /dev/null +++ b/database/migrations/2023_06_09_150842_add_payment_type_to_claim_requests.php @@ -0,0 +1,34 @@ +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'); + }); + } +};