table: directus_collections

columns:
  collection:
    type: string
    length: 255
    primary: true
    nullable: false
  icon:
    type: string
    length: 30
  note:
    type: text
  display_template:
    type: string
    length: 255
  hidden:
    type: boolean
    nullable: false
    default: false
  singleton:
    type: boolean
    nullable: false
    default: false
  is_soft_delete:
    type: boolean
    nullable: true
    default: false
  is_external_source:
    type: boolean
    nullable: true
    default: false
  credential:
    type: integer
    nullable: true
    default: 0
  schema:
    type: string
    nullable: true
    length: 255
  tags:
    type: json
  translations:
    type: json
  archive_field:
    type: string
    length: 64
  archive_app_filter:
    type: boolean
    nullable: false
    default: true
  archive_value:
    type: string
    length: 255
  unarchive_value:
    type: string
    length: 255
  sort_field:
    type: string
    length: 64
  physical_table_name:
    type: string
    nullable: true
    default: null
  database_name:
    type: string
    nullable: true
    default: null
