“Laravel crea tabla si no existe” Código de respuesta

Laravel DB no existe

if (DB::table('orders')->where('finalized', 1)->exists()) {
    // ...
}

if (DB::table('orders')->where('finalized', 1)->doesntExist()) {
    // ...
}
Shadow

La mesa de verificación existe en DB Laravel

if (!Schema::hasTable('table_name')) {
    // Code to create table
}
Anxious Anteater

Laravel migra si no existe

if (!Schema::hasTable('tblCategory')) {
     Schema::create('tblCategory', function($table){
            $table->engine = 'InnoDB';
            $table->increments('CategoryID');
            $table->string('Category', 40);
            $table->unique('Category', 'tblCategory_UK_Category');
            $table->timestamps();
    }
}
Tiago F2

Laravel crea tabla si no existe

if (!Schema::hasTable('tblCategory')) {
     Schema::create('tblCategory', function($table){
            $table->engine = 'InnoDB';
            $table->increments('CategoryID');
            $table->string('Category', 40);
            $table->unique('Category', 'tblCategory_UK_Category');
            $table->timestamps();
    }
}
Alberto Peripolli

Respuestas similares a “Laravel crea tabla si no existe”

Preguntas similares a “Laravel crea tabla si no existe”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código