Files
qddns/schema.sql
2022-08-05 23:44:21 +02:00

7 lines
186 B
SQL

CREATE TABLE IF NOT EXISTS qddns_auth (
auth_id BIGSERIAL NOT NULL PRIMARY KEY,
token text not null,
domain text not null,
description text,
UNIQUE (token, domain)
);