identity.yaml 597 B

12345678910111213141516171819202122232425
  1. kind: DataContainer
  2. spec:
  3. namespace: baize
  4. data_source: baize
  5. name: test.identities
  6. spec:
  7. table_name: test.identities
  8. columns:
  9. - name: id
  10. type: varchar(32)
  11. comment: id
  12. primary_key: true
  13. - name: name
  14. type: varchar(128)
  15. comment: 名称
  16. not_null: true
  17. index: true
  18. - name: created_time
  19. type: "timestamp with time zone"
  20. comment: 创建时间
  21. not_null: true
  22. - name: last_updated_time
  23. type: "timestamp with time zone"
  24. comment: 最近更新时间
  25. not_null: true