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'); + }); + } +};