From fe4303f80725879c18ec806dfe7ae592229cea87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Tue, 3 Feb 2026 09:12:30 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EB=B0=94=EB=A1=9C=EB=B9=8C=20=ED=9A=8C?= =?UTF-8?q?=EC=9B=90=EC=82=AC=20=EB=A7=88=EC=A7=80=EB=A7=89=20=EC=88=98?= =?UTF-8?q?=EC=A7=91=20=EC=8B=9C=EA=B0=84=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - last_sales_fetch_at: 마지막 매출 조회 시간 - last_purchases_fetch_at: 마지막 매입 조회 시간 Co-Authored-By: Claude Opus 4.5 --- ...etch_columns_to_barobill_members_table.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 database/migrations/2026_02_03_091006_add_last_fetch_columns_to_barobill_members_table.php diff --git a/database/migrations/2026_02_03_091006_add_last_fetch_columns_to_barobill_members_table.php b/database/migrations/2026_02_03_091006_add_last_fetch_columns_to_barobill_members_table.php new file mode 100644 index 0000000..4704e2c --- /dev/null +++ b/database/migrations/2026_02_03_091006_add_last_fetch_columns_to_barobill_members_table.php @@ -0,0 +1,29 @@ +timestamp('last_sales_fetch_at')->nullable()->comment('마지막 매출 조회 시간'); + $table->timestamp('last_purchases_fetch_at')->nullable()->comment('마지막 매입 조회 시간'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('barobill_members', function (Blueprint $table) { + $table->dropColumn(['last_sales_fetch_at', 'last_purchases_fetch_at']); + }); + } +};