mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 00:56:02 +00:00
19 lines
286 B
YAML
19 lines
286 B
YAML
name: projects
|
|
columns:
|
|
- name: id
|
|
type: int
|
|
default: null
|
|
notNull: true
|
|
- name: name
|
|
type: varchar(100)
|
|
default: null
|
|
notNull: true
|
|
- name: start_date
|
|
type: date
|
|
default: null
|
|
- name: end_date
|
|
type: date
|
|
default: null
|
|
primaryKey:
|
|
- id
|