id(); $table->string('title'); $table->text('description')->nullable(); $table->string('filename'); $table->string('path'); $table->string('thumbnail')->nullable(); $table->integer('duration')->default(0); $table->bigInteger('size')->default(0); $table->enum('status', ['pending', 'processing', 'ready', 'failed'])->default('pending'); $table->timestamps(); }); } public function down() { Schema::dropIfExists('videos'); } };