increments('id'); $table->string('file')->unique(); $table->string('interpret')->nullable(); $table->string('songtitle')->nullable(); $table->string('imgsource')->nullable(); $table->unsignedInteger('category_id'); $table->unsignedInteger('user_id'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('videos'); } }