Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions db/dns_internal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ select
null::text as master,
null::int as last_check,
'NATIVE'::text as type,
null::int as notified_serial,
null::text as account
null::bigint as notified_serial,
null::text as account,
null::text as catalog
from public.server
where servertype_id = 'provider_domain';

Expand Down
5 changes: 3 additions & 2 deletions db/dns_public.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ select
null::text as master,
null::int as last_check,
'NATIVE'::text as type,
null::int as notified_serial,
null::text as account
null::bigint as notified_serial,
null::text as account,
null::text as catalog
from public.server
where servertype_id = 'provider_domain';

Expand Down
Loading