mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 11:26:00 +00:00
13 lines
183 B
YAML
13 lines
183 B
YAML
name: departments
|
|
columns:
|
|
- name: id
|
|
type: int
|
|
default: null
|
|
notNull: true
|
|
- name: name
|
|
type: varchar(100)
|
|
default: null
|
|
notNull: true
|
|
primaryKey:
|
|
- id
|