integer('likes')->unsigned()->default(0); }); } } public function down() { if (Schema::hasColumn('textures', 'likes')) { Schema::table('textures', function (Blueprint $table) { $table->dropColumn('likes'); }); } } }