From 3da8a16bfcc34c6fadbfc7d59c559450eae38803 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Wed, 25 Feb 2026 05:41:25 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[business-card]=20ordered=5Fby,=20order?= =?UTF-8?q?ed=5Fat=20=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 - 3단계 워크플로우: 요청 → 제작의뢰 → 처리완료 --- ...olumns_to_business_card_requests_table.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 database/migrations/2026_02_25_100000_add_ordered_columns_to_business_card_requests_table.php diff --git a/database/migrations/2026_02_25_100000_add_ordered_columns_to_business_card_requests_table.php b/database/migrations/2026_02_25_100000_add_ordered_columns_to_business_card_requests_table.php new file mode 100644 index 0000000..0aebdef --- /dev/null +++ b/database/migrations/2026_02_25_100000_add_ordered_columns_to_business_card_requests_table.php @@ -0,0 +1,23 @@ +unsignedBigInteger('ordered_by')->nullable()->after('status')->comment('제작의뢰 처리자 ID'); + $table->timestamp('ordered_at')->nullable()->after('ordered_by')->comment('제작의뢰 일시'); + }); + } + + public function down(): void + { + Schema::table('business_card_requests', function (Blueprint $table) { + $table->dropColumn(['ordered_by', 'ordered_at']); + }); + } +};