Answers for "how to create coulmn if table data exist in column in laravel"

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

check table exists in db laravel

if (!Schema::hasTable('table_name')) {
    // Code to create table
}
Posted by: Guest on July-15-2020

Code answers related to "how to create coulmn if table data exist in column in laravel"

Browse Popular Code Answers by Language