From 27a558dafb3219dad0e590ed6d17278caed4e53f Mon Sep 17 00:00:00 2001 From: pro Date: Thu, 29 Jan 2026 09:15:22 +0900 Subject: [PATCH] =?UTF-8?q?feat:sales=5Fconsultations=EC=97=90=20gcs=5Furi?= =?UTF-8?q?=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 - 음성 녹음 파일의 Google Cloud Storage URI 저장용 Co-Authored-By: Claude Opus 4.5 --- LOGICAL_RELATIONSHIPS.md | 2 +- ...000_add_gcs_uri_to_sales_consultations.php | 29 +++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 database/migrations/2026_01_29_093000_add_gcs_uri_to_sales_consultations.php diff --git a/LOGICAL_RELATIONSHIPS.md b/LOGICAL_RELATIONSHIPS.md index bafc746..a75a39c 100644 --- a/LOGICAL_RELATIONSHIPS.md +++ b/LOGICAL_RELATIONSHIPS.md @@ -1,6 +1,6 @@ # 논리적 데이터베이스 관계 문서 -> **자동 생성**: 2026-01-29 08:59:43 +> **자동 생성**: 2026-01-29 09:14:06 > **소스**: Eloquent 모델 관계 분석 ## 📊 모델별 관계 현황 diff --git a/database/migrations/2026_01_29_093000_add_gcs_uri_to_sales_consultations.php b/database/migrations/2026_01_29_093000_add_gcs_uri_to_sales_consultations.php new file mode 100644 index 0000000..8ce6499 --- /dev/null +++ b/database/migrations/2026_01_29_093000_add_gcs_uri_to_sales_consultations.php @@ -0,0 +1,29 @@ +string('gcs_uri', 500)->nullable()->after('duration') + ->comment('Google Cloud Storage URI (본사 연구용 백업)'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('sales_consultations', function (Blueprint $table) { + $table->dropColumn('gcs_uri'); + }); + } +};