diff --git a/database/migrations/2023_09_26_100614_add_column_to_claims.php b/database/migrations/2023_09_26_100614_add_column_to_claims.php new file mode 100644 index 00000000..a37f739a --- /dev/null +++ b/database/migrations/2023_09_26_100614_add_column_to_claims.php @@ -0,0 +1,34 @@ +char('uuid')->after('id'); + $table->string('claim_request_id')->after('code'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('claims', function (Blueprint $table) { + $table->dropColumn('uuid'); + $table->dropColumn('claim_request_id'); + }); + } +};