“Comment ajouter un champ à la table par une autre migration à Laravel” Réponses codées

Comment ajouter un champ à la table par une autre migration à Laravel

php artisan make:migration add_store_id_to_users_table --table=users
Mohamad

Comment régler le champ après un autre champ dans la migration à Laravel

Schema::table('users', function($table)
{
    $table->string('phone_nr')->after('id');
});
Mohamad

Réponses similaires à “Comment ajouter un champ à la table par une autre migration à Laravel”

Questions similaires à “Comment ajouter un champ à la table par une autre migration à Laravel”

Plus de réponses similaires à “Comment ajouter un champ à la table par une autre migration à Laravel” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code