diff --git a/database/migrations/2026_02_15_230000_create_tutorial_videos_table.php b/database/migrations/2026_02_15_230000_create_tutorial_videos_table.php new file mode 100644 index 0000000..82699d7 --- /dev/null +++ b/database/migrations/2026_02_15_230000_create_tutorial_videos_table.php @@ -0,0 +1,37 @@ +id(); + $table->unsignedBigInteger('tenant_id'); + $table->unsignedBigInteger('user_id'); + $table->string('title', 500)->nullable(); + $table->string('status', 50)->default('pending'); + $table->tinyInteger('progress')->unsigned()->default(0); + $table->string('current_step', 100)->nullable(); + $table->json('screenshots')->nullable(); + $table->json('analysis_data')->nullable(); + $table->json('slides_data')->nullable(); + $table->string('output_path', 500)->nullable(); + $table->string('gcs_path', 500)->nullable(); + $table->decimal('cost_usd', 8, 4)->default(0); + $table->text('error_message')->nullable(); + $table->timestamps(); + + $table->index('tenant_id'); + $table->index(['user_id', 'status']); + }); + } + + public function down(): void + { + Schema::dropIfExists('tutorial_videos'); + } +};