“Index de migration de Laravel” Réponses codées

Laravel Migration Ajouter une colonne unique

Schema::table('tableName', function($table)
{
    $table->string('column-name')->unique(); //notice the parenthesis I added
});
Sore Seal

Colonne Laravel Drop

// To drop a column, use the dropColumn method on the schema builder.
// Before dropping columns from a SQLite database, you will need to add
// the doctrine/dbal dependency to your composer.json file and run the
// composer update command in your terminal to install the library:

Schema::table('users', function (Blueprint $table) {
    $table->dropColumn('votes');
});
Yingfufu

Index de migration de Laravel

$table->index(['account_id', 'created_at']);
Mysterious Moth

Réponses similaires à “Index de migration de Laravel”

Questions similaires à “Index de migration de Laravel”

Plus de réponses similaires à “Index de migration de Laravel” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code