“Laravel Verifique se a tabela tem coluna” Respostas de código

Laravel Migration Verifique se a tabela tem coluna

// 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

coluna Laravel Drop se existir

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

Tabela tem coluna Laravel

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

Laravel Verifique se a tabela tem coluna

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

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

Respostas semelhantes a “Laravel Verifique se a tabela tem coluna”

Perguntas semelhantes a “Laravel Verifique se a tabela tem coluna”

Procure respostas de código populares por idioma

Procurar outros idiomas de código