columns:
  - name: component_id
    type: fk
    isPrimary: true
    references:
      table: dashboard_component
      column: id
      onDelete: CASCADE
  - name: locale_id
    type: fk
    isPrimary: true
    references:
      table: locale
      column: id
      onDelete: CASCADE
  - name: name
    type: varchar
    length: 255
    locale:
      en: Name
      pt: Nome
  - type: created_at
  - type: updated_at
ifNotExists: true
