configuration.yaml 498 B

1234567891011121314151617181920212223
  1. kind: DataContainer
  2. spec:
  3. namespace: baize
  4. data_source: baize
  5. name: test.configurations
  6. spec:
  7. table_name: test.configurations
  8. columns:
  9. - name: scope
  10. type: varchar(256)
  11. comment: 范围
  12. not_null: true
  13. primary_key: true
  14. - name: group
  15. type: varchar(256)
  16. comment: 组
  17. not_null: true
  18. primary_key: true
  19. - name: value
  20. type: varchar(256)
  21. comment: 值
  22. not_null: true
  23. index: true