feat:sales_consultations에 gcs_uri 컬럼 추가

- 음성 녹음 파일의 Google Cloud Storage URI 저장용

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-29 09:15:22 +09:00
parent 4c7cf85ef9
commit 27a558dafb
2 changed files with 30 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('sales_consultations', function (Blueprint $table) {
$table->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');
});
}
};