From f8d37f0b5e5b6afb15c827f2e7e93b56a56cc1ef Mon Sep 17 00:00:00 2001 From: pro Date: Thu, 29 Jan 2026 16:38:34 +0900 Subject: [PATCH] =?UTF-8?q?refactor:sales=5Fcontract=5Fproducts=20?= =?UTF-8?q?=ED=85=8C=EC=9D=B4=EB=B8=94=20development=5Ffee=20=E2=86=92=20r?= =?UTF-8?q?egistration=5Ffee=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...tration_fee_in_sales_contract_products.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 database/migrations/2026_01_29_163733_rename_development_fee_to_registration_fee_in_sales_contract_products.php 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'); + }); + } +};