“Laravel Créer une table s'il n'y a pas” Réponses codées

Laravel DB n'existe pas

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

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

Vérifier la table existe dans DB Laravel

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

Laravel migre s'il n'existe pas

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 Créer une table s'il n'y a pas

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

Réponses similaires à “Laravel Créer une table s'il n'y a pas”

Questions similaires à “Laravel Créer une table s'il n'y a pas”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code