upda/server/migrations_postgres/4_secrets.up.sql

14 lines
387 B
MySQL
Raw Normal View History

create table if not exists secrets
(
id uuid not null
constraint uni_secrets_id primary key,
key text not null
constraint uni_secrets_key unique,
value text not null,
created_at timestamp with time zone not null,
updated_at timestamp with time zone not null
);
commit;