Files
directus/api/src/database/seeds/05-activity.yaml
2020-10-30 11:52:16 -04:00

37 lines
573 B
YAML

table: directus_activity
columns:
id:
increments: true
action:
type: string
length: 45
nullable: false
user:
type: uuid
timestamp:
type: timestamp
nullable: false
default: '$now'
ip:
type: string
length: 50
nullable: false
user_agent:
type: string
length: 255
nullabel: false
collection:
type: string
length: 64
nullable: false
references:
table: directus_collections
column: collection
item:
type: string
length: 255
nullable: false
comment:
type: text