Answers for "laravel migration if column exists in table then skip"

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
0

laravel migrate if not exists

if (!Schema::hasTable('tblCategory'))
{
     Schema::create('tblCategory', function($table){
            //...
    }
}
Posted by: Guest on June-16-2021

Code answers related to "laravel migration if column exists in table then skip"

Browse Popular Code Answers by Language