JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
Skip to content
Gallery
CodeWave Systems
Software STMF
More
Share
Explore
Database
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
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 (
Ctrl
P
) instead.