create database if not exists dmy_ts parameters(database_to_upper=false
create sequence if not exists ts_app start with 1;
create table if not exists ts_app
(
id bigint default (next value for ts_app) primary key,
`key` varchar not null,
`name` varchar not null,
createAt timestamp,
updateAt timestamp
)