/
githubmirror
/
ydb-java-dialects
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-dialects
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
flyway-dialect/src/test/resources/db/migration/V1__create_series.sql
13 строк
500 B
Kirill Kurdyukov
[Flyway]: Fixed integration tests + add new test cases (#111)
09 апр 2024, 15:31
Не верифицирован
09 апр 2024, 15:31
5f85cb0
Код
Авторство
О чём код?
CREATE TABLE series -- series is the table name. ( -- Must be unique within the folder. series_id Int64, title Text, series_info Text, release_date Int64, PRIMARY KEY (series_id) -- The primary key is a column or -- combination of columns that uniquely identifies -- each table row (contains only -- non-repeating values). A table can have -- only one primary key. For every table -- in YDB, the primary key is required. );