From d8f2361c88ff1d17562683fafb96a42865f96e67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Tue, 10 Mar 2026 01:20:32 +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=20options=20JSON=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 - 이메일 발송 이력 등 확장 속성 저장용 --- ...0_010000_add_options_to_payrolls_table.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 database/migrations/2026_03_10_010000_add_options_to_payrolls_table.php diff --git a/database/migrations/2026_03_10_010000_add_options_to_payrolls_table.php b/database/migrations/2026_03_10_010000_add_options_to_payrolls_table.php new file mode 100644 index 00000000..3a364c15 --- /dev/null +++ b/database/migrations/2026_03_10_010000_add_options_to_payrolls_table.php @@ -0,0 +1,22 @@ +json('options')->nullable()->after('note'); + }); + } + + public function down(): void + { + Schema::table('payrolls', function (Blueprint $table) { + $table->dropColumn('options'); + }); + } +};