Answers for "check table exists in db laravel"

PHP
0

check table exists in db laravel

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

laravel if database has table

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-18-2021
0

check table exists in db laravel

FOR LUMEN FOR migrate job 
BOOTSTRAP/APP.PHP
  
  
if(\Illuminate\Support\Facades\Schema::hasTable("jobs"))
Queue::push(new ProcessCenterJob());
Posted by: Guest on August-25-2021

Code answers related to "check table exists in db laravel"

Browse Popular Code Answers by Language