id(); $table->string('name', 255); $table->bigInteger('tvdbid'); $table->date('suggested'); $table->date('seen')->nullable(); $table->date('rejected')->nullable(); $table->integer('user'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('films'); } };