Skip to content

Commit 20c51c2

Browse files
authored
форматирование
1 parent 4c24a25 commit 20c51c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ create table test_history
14271427
(
14281428
id integer generated always as identity primary key,
14291429
reference_id integer not null, -- идентификатор связанной сущности, FK быть не должно, т.к. запись м.б. удалена
1430-
created_at timestamp(0) with time zone not null default now() check (created_at <= now() + interval '10m'),
1430+
created_at timestamp(0) with time zone not null default now() check (created_at <= now() + interval '10m'),
14311431
old_data jsonb check(jsonb_typeof(old_data) = 'object'),
14321432
new_data jsonb check(jsonb_typeof(new_data) = 'object'),
14331433
check (not (old_data is null and new_data is null))

0 commit comments

Comments
 (0)