0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

chore(schemas): conform sql style (#600)

This commit is contained in:
IceHe.xyz 2022-04-21 13:31:29 +08:00 committed by GitHub
parent 8e13dd5746
commit 4e5927a788
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,9 @@
create table logs
(
id varchar(21) not null,
type varchar(64) not null,
payload jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb,
created_at timestamptz not null default (now()),
id varchar(21) not null,
type varchar(64) not null,
payload jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb,
created_at timestamptz not null default (now()),
primary key (id)
);