boolean('found')->default(1); }); } } public function down() { if (!Schema::hasTable(self::TABLE_NAME)) { return; } if (Schema::hasColumn(self::TABLE_NAME, 'found')) { Schema::table(self::TABLE_NAME, function($table) { $table->dropColumn(['found']); }); } } }