We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8425925 commit cb9d00fCopy full SHA for cb9d00f
1 file changed
__tests__/p-schema.sql
@@ -135,7 +135,7 @@ create table p.range_array_types (
135
create domain p.char4_domain as char(4) check (lower(value) = 'test');
136
create domain p.date_domain as date check (value >= '1990-01-01'::date);
137
create domain p.int4_domain as int4 check (value > 0);
138
-create domain p.email_domain as text check (value ~ '^[^@]+@[^@]+$');
+create domain p.email_domain as citext check (value ~ '^[^@]+@[^@]+$');
139
140
create table p.domain_types (
141
id serial primary key,
0 commit comments