Update migration

pull/4862/head
Daniel Supernault 2024-01-11 01:50:51 -07:00
rodzic c53894fe16
commit ef57d471e5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
1 zmienionych plików z 11 dodań i 3 usunięć

Wyświetl plik

@ -24,9 +24,17 @@ return new class extends Migration
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn('has_roles');
$table->dropColumn('parent_id');
$table->dropColumn('role_id');
if (Schema::hasColumn('users', 'has_roles')) {
$table->dropColumn('has_roles');
}
if (Schema::hasColumn('users', 'role_id')) {
$table->dropColumn('role_id');
}
if (Schema::hasColumn('users', 'parent_id')) {
$table->dropColumn('parent_id');
}
});
}
};