From 2dacefd14faeee1b113aa0ae5058ba88af8f2508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 13 Feb 2026 18:07:20 +0900 Subject: [PATCH] =?UTF-8?q?feat:E-Sign=20=ED=95=84=EB=93=9C=20text=5Falign?= =?UTF-8?q?=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94=EA=B0=80=20(=EC=A2=8C/?= =?UTF-8?q?=EC=A4=91/=EC=9A=B0=20=EC=A0=95=EB=A0=AC=20=EC=A7=80=EC=9B=90)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- ..._180000_add_text_align_to_esign_tables.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2026_02_13_180000_add_text_align_to_esign_tables.php diff --git a/database/migrations/2026_02_13_180000_add_text_align_to_esign_tables.php b/database/migrations/2026_02_13_180000_add_text_align_to_esign_tables.php new file mode 100644 index 0000000..e50e136 --- /dev/null +++ b/database/migrations/2026_02_13_180000_add_text_align_to_esign_tables.php @@ -0,0 +1,30 @@ +char('text_align', 1)->default('L')->after('font_size'); + }); + + Schema::table('esign_sign_fields', function (Blueprint $table) { + $table->char('text_align', 1)->default('L')->after('font_size'); + }); + } + + public function down(): void + { + Schema::table('esign_field_template_items', function (Blueprint $table) { + $table->dropColumn('text_align'); + }); + + Schema::table('esign_sign_fields', function (Blueprint $table) { + $table->dropColumn('text_align'); + }); + } +};