plugins/tests/TestDB.yml

30 lines
727 B
YAML
Raw Normal View History

2024-03-09 13:43:14 +08:00
- group: account
comment: 账号相关
tables:
- name: user
comment: 用户表
fields:
- name: id
comment: 用户编号
type: INTEGER
index: pk
extra: AUTO_INCREMENT
- name: name
comment: 姓名
type: VARCHAR(30)
- name: phone
comment: 手机号
type: VARCHAR(20)
index: unique
- name: addDate
comment: 创建时间
type: DATETIME
index: index
- name: version
comment: 数据版本号
type: INTEGER
index: index
- name: isValid
comment: 是否有效1-启用0-禁用)
type: INTEGER