From 347d351d9d3e63468f5a33d132dbc13530f7b458 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 16:28:57 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[esign]=20esign=5Fcontracts=20=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EB=B8=94=EC=97=90=20completion=5Ftemplate=5Fname=20?= =?UTF-8?q?=EC=BB=AC=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 - 완료 알림톡 템플릿명을 저장하기 위한 nullable string 컬럼 --- ...completion_template_to_esign_contracts.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 database/migrations/2026_02_27_120000_add_completion_template_to_esign_contracts.php diff --git a/database/migrations/2026_02_27_120000_add_completion_template_to_esign_contracts.php b/database/migrations/2026_02_27_120000_add_completion_template_to_esign_contracts.php new file mode 100644 index 0000000..14bae8b --- /dev/null +++ b/database/migrations/2026_02_27_120000_add_completion_template_to_esign_contracts.php @@ -0,0 +1,23 @@ +string('completion_template_name', 100)->nullable()->after('sms_fallback') + ->comment('완료 알림톡 템플릿명'); + }); + } + + public function down(): void + { + Schema::table('esign_contracts', function (Blueprint $table) { + $table->dropColumn('completion_template_name'); + }); + } +};