“Migracja Laravel sprawdź, czy tabela ma kolumnę” Kod odpowiedzi

Migracja Laravel sprawdź, czy tabela ma kolumnę

// You may check for the existence of a table or column
// using the hasTable and hasColumn methods:

if (Schema::hasTable('users')) {
    // The "users" table exists...
}

if (Schema::hasColumn('users', 'email')) {
    // The "users" table exists and has an "email" column...
}
Yingfufu

Tabela ma kolumnę laravel

Schema::hasColumn('users', 'email') // laravel
Gegasoft

Odpowiedzi podobne do “Migracja Laravel sprawdź, czy tabela ma kolumnę”

Pytania podobne do “Migracja Laravel sprawdź, czy tabela ma kolumnę”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu