2023-06-01 23:27:33 +04:00

24 lines
683 B
YAML

databaseChangeLog:
- changeSet:
id: 2022-04-01-schema-1
author: user
changes:
- createTable:
tableName: student
columns:
- column:
name: id
type: bigint
constraints:
primaryKey: true
nullable: false
- column:
name: first_name
type: varchar(255)
constraints:
nullable: false
- column:
name: last_name
type: varchar(255)
constraints:
nullable: false