bigInteger('hits')->default(0); }); Schema::table('photos', function (Blueprint $table) { $table->bigInteger('hits')->default(0); $table->bigInteger('hits_download')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('photos', function (Blueprint $table) { $table->dropColumn('hits_download'); $table->dropColumn('hits'); }); Schema::table('albums', function (Blueprint $table) { $table->dropColumn('hits'); }); } }