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'); + }); + } +};