1234567891011121314151617181920212223242526272829303132333435 |
- kind: DataContainer
- spec:
- namespace: baize
- data_source: baize
- name: test.families
- spec:
- table_name: test.families
- columns:
- - name: id
- type: varchar(32)
- comment: id
- primary_key: true
- - name: father
- type: varchar(128)
- comment: 父亲姓名
- not_null: true
- index: true
- - name: mother
- type: varchar(128)
- comment: 母亲姓名
- not_null: true
- index: true
- - name: student_id
- type: varchar(32)
- comment: 家庭ID
- not_null: true
- index: true
- - name: created_time
- type: "timestamp with time zone"
- comment: 创建时间
- not_null: true
- - name: last_updated_time
- type: "timestamp with time zone"
- comment: 最近更新时间
- not_null: true
|