feat:video_generations 테이블에 gcs_path 컬럼 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-15 11:11:09 +09:00
parent d97130fc3a
commit 6874754b92

View File

@@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('video_generations', function (Blueprint $table) {
$table->string('gcs_path', 500)->nullable()->after('output_path');
});
}
public function down(): void
{
Schema::table('video_generations', function (Blueprint $table) {
$table->dropColumn('gcs_path');
});
}
};