From 4e5927a78867cc4daf579ca4e5ae6131a862f0a7 Mon Sep 17 00:00:00 2001 From: "IceHe.xyz" Date: Thu, 21 Apr 2022 13:31:29 +0800 Subject: [PATCH] chore(schemas): conform sql style (#600) --- packages/schemas/tables/logs.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/schemas/tables/logs.sql b/packages/schemas/tables/logs.sql index f720b46a9..f754883c3 100644 --- a/packages/schemas/tables/logs.sql +++ b/packages/schemas/tables/logs.sql @@ -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) );