ajout de la fonctionnalité login et modification profil
This commit is contained in:
@@ -13,6 +13,11 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('utilisateurs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('Email')->unique();
|
||||
$table->string('MotDePasse');
|
||||
$table->string('Pseudo')->nullable();
|
||||
$table->unsignedBigInteger('ID_Role')->nullable();
|
||||
$table->string('Statut')->default('Actif');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user