From a13e694174872f30276d7fa6dacc988353c96a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 12 Feb 2026 18:54:58 +0900 Subject: [PATCH] =?UTF-8?q?feat:E-Sign=20=ED=95=84=EB=93=9C=20=ED=85=9C?= =?UTF-8?q?=ED=94=8C=EB=A6=BF=20category=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=20=EB=A7=88=EC=9D=B4=EA=B7=B8=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=85=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- ...ategory_to_esign_field_templates_table.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 database/migrations/2026_02_12_200000_add_category_to_esign_field_templates_table.php diff --git a/database/migrations/2026_02_12_200000_add_category_to_esign_field_templates_table.php b/database/migrations/2026_02_12_200000_add_category_to_esign_field_templates_table.php new file mode 100644 index 0000000..2b28fe5 --- /dev/null +++ b/database/migrations/2026_02_12_200000_add_category_to_esign_field_templates_table.php @@ -0,0 +1,24 @@ +string('category', 50)->nullable()->after('description')->comment('템플릿 카테고리'); + $table->index('category', 'idx_esign_field_templates_category'); + }); + } + + public function down(): void + { + Schema::table('esign_field_templates', function (Blueprint $table) { + $table->dropIndex('idx_esign_field_templates_category'); + $table->dropColumn('category'); + }); + } +};