diff --git a/database/migrations/2026_01_29_163733_rename_development_fee_to_registration_fee_in_sales_contract_products.php b/database/migrations/2026_01_29_163733_rename_development_fee_to_registration_fee_in_sales_contract_products.php new file mode 100644 index 0000000..d6914a8 --- /dev/null +++ b/database/migrations/2026_01_29_163733_rename_development_fee_to_registration_fee_in_sales_contract_products.php @@ -0,0 +1,28 @@ +renameColumn('development_fee', 'registration_fee'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('sales_contract_products', function (Blueprint $table) { + $table->renameColumn('registration_fee', 'development_fee'); + }); + } +};