From 255fad99e789463efde9ab04af879ec0b1250765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 27 Feb 2026 10:06:25 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[payroll]=20payrolls=20=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EB=B8=94=EC=97=90=20long=5Fterm=5Fcare=20=EC=BB=AC?= =?UTF-8?q?=EB=9F=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...1_add_long_term_care_to_payrolls_table.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 database/migrations/2026_02_27_100001_add_long_term_care_to_payrolls_table.php diff --git a/database/migrations/2026_02_27_100001_add_long_term_care_to_payrolls_table.php b/database/migrations/2026_02_27_100001_add_long_term_care_to_payrolls_table.php new file mode 100644 index 0000000..ad98f2d --- /dev/null +++ b/database/migrations/2026_02_27_100001_add_long_term_care_to_payrolls_table.php @@ -0,0 +1,22 @@ +decimal('long_term_care', 12, 0)->default(0)->after('health_insurance'); + }); + } + + public function down(): void + { + Schema::table('payrolls', function (Blueprint $table) { + $table->dropColumn('long_term_care'); + }); + } +};