From: Bert Hubert Date: Sun, 2 Jan 2011 21:49:31 +0000 (+0000) Subject: add the code to add the new fields to the sqlite3 sql schema X-Git-Tag: auth-3.0~453 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27b2903bed29114359af3fc076c222ebe841bba6;p=pdns add the code to add the new fields to the sqlite3 sql schema git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@1794 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- diff --git a/pdns/dnssec.schema.sqlite3.sql b/pdns/dnssec.schema.sqlite3.sql index 757f2f0b9..2ec99ea73 100644 --- a/pdns/dnssec.schema.sqlite3.sql +++ b/pdns/dnssec.schema.sqlite3.sql @@ -1,3 +1,7 @@ +alter table records add ordername VARCHAR(255); +alter table records add auth bool; +create index orderindex on records(ordername); + create table domainmetadata ( id INTEGER PRIMARY KEY, domain_id INT NOT NULL,