Skip to content
Gallery
CodeWave Systems
Share
Explore
Database

icon picker
Usuários

Descrição

A modelagem de usuário deve focar nos elementos básicos necessários para identificação, autenticação, e controle de acesso, garantindo funcionalidade e segurança.

Modelagem

STMF-MODELAGEM (10).jpg

Migration

Schema::create('users', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('avatar_url')->nullable(); $table->string('telefone')->nullable()->unique(); $table->integer('change_password')->default(1); $table->json('custom_fields')->nullable(); $table->enum('status', ['Ativo', 'Inativo']); $table->softDeletes(); $table->rememberToken(); $table->timestamps(); });

Relacionamentos


Observações


Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.