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: 255
    nullable: false
    references:
      table: directus_collections
      column: collection
  item:
    type: string
    length: 255
    nullable: false
  comment:
    type: text
