| 12345678910111213141516171819202122 |
- ; default database config 默认数据库配置
- [database]
- driver = mysql
- host = 127.0.0.1
- username = root
- port = 3306
- password = 123456
- database = goadmin
- ; Here are new tables to generate. 新的待转换的表格
- ; tables = new_table1,new_table2
- ; specified connection database config 指定数据库配置
- ; for example, database config which connection name is mydb.
- ;[database.mydb]
- ; table model config 数据模型设置
- [model]
- package = tables
- connection = default
- output = ./tables
|