“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

Kolumna Laravel upuść, jeśli istnieje

if (Schema::hasColumn('users', 'phone')) {
 	Schema::table('users', function (Blueprint $table){
       $table->dropColumn('phone');
    });
}
Lovely Llama

Tabela ma kolumnę laravel

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

Laravel Sprawdź, czy tabela ma kolumnę

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

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

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

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

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

Przeglądaj inne języki kodu