boolean('scanned')->nullable(); $table->string('file_signature')->nullable(); $table->string('identifier')->nullable(); $table->string('software')->nullable(); }); Schema::table('videos', function (Blueprint $table) { $table->boolean('scanned')->nullable(); $table->string('file_signature')->nullable(); $table->string('identifier')->nullable(); $table->string('software')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('photo', function (Blueprint $table) { $table->dropColumn('scanned'); $table->dropColumn('file_signature'); $table->dropColumn('identifier'); $table->dropColumn('software'); }); Schema::table('videos', function (Blueprint $table) { $table->dropColumn('scanned'); $table->dropColumn('file_signature'); $table->dropColumn('identifier'); $table->dropColumn('software'); }); } }