mirror of
https://forge.dns-witch.net/dns-witch/nomilo.git
synced 2026-06-05 18:02:34 +02:00
5 lines
112 B
SQL
5 lines
112 B
SQL
create table zones (
|
|
name VARCHAR NOT NULL PRIMARY KEY
|
|
);
|
|
|
|
insert into zones (name) values ('example.com');
|