]> git.ipfire.org Git - thirdparty/pdns.git/blame_incremental - pdns/bind-dnssec.schema.sqlite3.sql
dnsdist: Add HTTPStatusAction to return a specific HTTP response
[thirdparty/pdns.git] / pdns / bind-dnssec.schema.sqlite3.sql
... / ...
CommitLineData
1create table domainmetadata (
2 id INTEGER PRIMARY KEY,
3 domain VARCHAR(255) COLLATE NOCASE,
4 kind VARCHAR(32) COLLATE NOCASE,
5 content TEXT
6);
7
8create index domainmetanameindex on domainmetadata(domain);
9
10create table cryptokeys (
11 id INTEGER PRIMARY KEY,
12 domain VARCHAR(255) COLLATE NOCASE,
13 flags INT NOT NULL,
14 active BOOL,
15 content TEXT
16);
17
18create index domainnameindex on cryptokeys(domain);
19
20create table tsigkeys (
21 id INTEGER PRIMARY KEY,
22 name VARCHAR(255) COLLATE NOCASE,
23 algorithm VARCHAR(50) COLLATE NOCASE,
24 secret VARCHAR(255)
25);
26
27create unique index namealgoindex on tsigkeys(name, algorithm);