fix: Prefer: missing=default with DOMAIN defaults

This commit is contained in:
steve-chavez
2023-06-30 17:46:16 -05:00
committed by Steve Chavez
parent 0a1564ba5a
commit a17dd41d6b
4 changed files with 29 additions and 6 deletions
+8
View File
@@ -3285,3 +3285,11 @@ BEGIN
END IF;
END
$do$;
create domain devil_int as int
default 666;
create table evil_friends(
id devil_int
, name text
);