mirror of
https://github.com/ZeusWPI/ZNS.git
synced 2024-10-30 13:34:26 +01:00
11 lines
229 B
SQL
11 lines
229 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE records (
|
|
name TEXT NOT NULL,
|
|
type INT NOT NULL,
|
|
class INT NOT NULL,
|
|
ttl INT NOT NULL,
|
|
rdlength INT NOT NULL,
|
|
rdata BYTEA NOT NULL,
|
|
|
|
PRIMARY KEY (name,type,class,rdlength,rdata)
|
|
)
|