Answers for "laravel migration has column"

PHP
0

laravel migration check if table has column

// 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...
}
Posted by: Guest on January-14-2021
1

table has column laravel

Schema::hasColumn('users', 'email') // laravel
Posted by: Guest on October-30-2020

Code answers related to "laravel migration has column"

Browse Popular Code Answers by Language