Skip to content

Commit

Permalink
pdns: update SQL "domains" view to be compatible with pdns-server 4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
brainexe committed Jan 21, 2025
1 parent 3fe48a0 commit 05fc9bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion db/dns_internal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ select
null::int as last_check,
'NATIVE'::text as type,
null::int as notified_serial,
null::text as account
null::text as account,
null::text as catalog
from public.server
where servertype_id = 'provider_domain';

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

Expand Down

0 comments on commit 05fc9bc

Please sign in to comment.