increments('id'); $table->string('title'); $table->string('url')->nullable(); $table->integer('position')->nullable(); $table->string('file')->nullable(); $table->string('image')->nullable(); $table->datetime('date')->nullable(); $table->boolean('online'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('videos'); } }