Files
directus/api/src/database/seeds/03-users.yaml
2020-10-28 16:26:46 -04:00

63 lines
928 B
YAML

table: directus_users
columns:
id:
type: uuid
primary: true
first_name:
type: string
length: 50
last_name:
type: string
length: 50
email:
type: string
length: 128
nullable: false
unique: true
password:
type: string
length: 255
location:
type: string
length: 255
title:
type: string
length: 50
description:
type: text
tags:
type: json
avatar:
type: uuid
language:
type: string
length: 8
default: 'en-US'
theme:
type: string
length: 20
default: auto
tfa_secret:
type: string
length: 255
status:
type: string
length: 16
nullable: false
default: active
role:
type: uuid
nullable: true
references:
table: directus_roles
column: id
token:
type: string
length: 255
last_access:
type: timestamp
last_page:
type: string
length: 255