“Laravel Migration Vérifiez si le tableau a une colonne” Réponses codées

Laravel Migration Vérifiez si le tableau a une colonne

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

La table a une colonne Laravel

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

Réponses similaires à “Laravel Migration Vérifiez si le tableau a une colonne”

Questions similaires à “Laravel Migration Vérifiez si le tableau a une colonne”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code