increments('id'); $table->string('title', 1024); $table->string('tagline', 1024); $table->binary('plot'); $table->string('genre'); $table->string('director'); $table->string('actors', 2500); $table->text('extras'); $table->text('productinfo'); $table->text('trailers'); $table->string('directurl', 2000); $table->string('classused', 20); $table->unsignedTinyInteger('cover'); $table->unsignedTinyInteger('backdrop'); $table->dateTime('created_at'); $table->dateTime('updated_at'); $table->unique('title', 'ix_xxxinfo_title'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('xxxinfo'); } }