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:
parent
8e13dd5746
commit
4e5927a788
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue