openbsd-ports/net/powerdns/files/tables-pgsql.sql
jasper cd55a396b9 import powerdns 2.9.21.1
pdnsd is a proxy dns server with permanent caching (the cache
contents are written to hard disk on exit) that is designed to cope
with unreachable or down dns servers (for example in dial-in
networking).

original port by dlg@ and robert@, banged into shape by me.
not hooked to the builds as this needs further testing/tweaking
2008-10-02 18:40:41 +00:00

61 lines
1.6 KiB
SQL

-- $OpenBSD: tables-pgsql.sql,v 1.1.1.1 2008/10/02 18:40:41 jasper Exp $
-- Taken from FreeBSD's powerdns port.
CREATE TABLE "domains" (
"id" SERIAL NOT NULL,
"name" VARCHAR(255) NOT NULL,
"type" VARCHAR(6) NOT NULL,
"master" VARCHAR(40) NOT NULL DEFAULT '',
"account" VARCHAR(40) NOT NULL DEFAULT '',
"notified_serial" INTEGER DEFAULT NULL,
"last_check" INTEGER DEFAULT NULL,
"status" CHAR(1) NOT NULL DEFAULT 'A',
CONSTRAINT "pk_domains_id"
PRIMARY KEY ("id"),
CONSTRAINT "unq_domains_name"
UNIQUE ("name")
);
CREATE INDEX "idx_domains_status_type" ON "domains" ("status","type");
CREATE TABLE "records" (
"id" SERIAL NOT NULL,
"domain_id" INTEGER NOT NULL,
"name" VARCHAR(255) NOT NULL,
"type" VARCHAR(6) NOT NULL,
"ttl" INTEGER DEFAULT NULL,
"prio" INTEGER DEFAULT NULL,
"content" VARCHAR(255) NOT NULL,
"change_date" INTEGER DEFAULT NULL,
CONSTRAINT "pk_records_id"
PRIMARY KEY ("id"),
CONSTRAINT "fk_records_domainid"
FOREIGN KEY ("domain_id")
REFERENCES domains ("id")
ON UPDATE CASCADE
ON DELETE CASCADE
);
CREATE INDEX "idx_records_name_type" ON "records" ("name","type");
CREATE INDEX "idx_records_type" ON "records" ("type");
CREATE TABLE "supermasters" (
"ip" VARCHAR(40) NOT NULL,
"nameserver" VARCHAR(255) NOT NULL,
"account" VARCHAR(40) NOT NULL DEFAULT ''
);
CREATE INDEX "idx_smaster_ip_ns" ON "supermasters" ("ip","nameserver");
GRANT SELECT ON "supermasters" TO "powerdns";
GRANT ALL ON "domains" TO "powerdns";
GRANT ALL ON "domains_id_seq" TO "powerdns";
GRANT ALL ON "records" TO "powerdns";
GRANT ALL ON "records_id_seq" TO "powerdns";