From a7a71c5e8de06c53afedd2a3452a03c5cacbda48 Mon Sep 17 00:00:00 2001 From: Kevin Quinn Date: Tue, 6 Jun 2017 14:00:58 -0400 Subject: [PATCH] Fix query in howtos.md doc I'm not sure if this is a bug in the docs, a bug in pdns, or an old bug that was fixed. I will open an issue to reference this. --- docs/markdown/authoritative/howtos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/markdown/authoritative/howtos.md b/docs/markdown/authoritative/howtos.md index e956e846b6..eea0ad7def 100644 --- a/docs/markdown/authoritative/howtos.md +++ b/docs/markdown/authoritative/howtos.md @@ -73,7 +73,7 @@ Now we need to add some records to our database (in a separate shell): # mysql pdnstest mysql> INSERT INTO domains (name, type) values ('example.com', 'NATIVE'); INSERT INTO records (domain_id, name, content, type,ttl,prio) -VALUES (1,'example.com','localhost admin.example.com 1','SOA',86400,NULL); +VALUES (1,'example.com','localhost admin.example.com 1 10380 3600 604800 3600','SOA',86400,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) VALUES (1,'example.com','dns-us1.powerdns.net','NS',86400,NULL); INSERT INTO records (domain_id, name, content, type,ttl,prio) -- 2.47.2