From d97130fc3a1b6c32cadd67d06156cea4d52c8386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sun, 15 Feb 2026 08:46:34 +0900 Subject: [PATCH] =?UTF-8?q?feat:video=5Fgenerations=20=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=20=EB=A7=88=EC=9D=B4=EA=B7=B8=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=85=98=20=EC=B6=94=EA=B0=80=20(YouTube=20Shorts=20AI)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- ..._200000_create_video_generations_table.php | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 database/migrations/2026_02_15_200000_create_video_generations_table.php diff --git a/database/migrations/2026_02_15_200000_create_video_generations_table.php b/database/migrations/2026_02_15_200000_create_video_generations_table.php new file mode 100644 index 0000000..60c8362 --- /dev/null +++ b/database/migrations/2026_02_15_200000_create_video_generations_table.php @@ -0,0 +1,36 @@ +id(); + $table->unsignedBigInteger('tenant_id'); + $table->unsignedBigInteger('user_id'); + $table->string('keyword', 255); + $table->string('title', 500)->nullable(); + $table->json('scenario')->nullable(); + $table->string('status', 50)->default('pending'); + $table->tinyInteger('progress')->unsigned()->default(0); + $table->string('current_step', 100)->nullable(); + $table->json('clips_data')->nullable(); + $table->string('output_path', 500)->nullable(); + $table->decimal('cost_usd', 8, 4)->default(0); + $table->text('error_message')->nullable(); + $table->timestamps(); + + $table->index(['tenant_id', 'user_id']); + $table->index('status'); + }); + } + + public function down(): void + { + Schema::dropIfExists('video_generations'); + } +};