7 lines
186 B
SQL
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)
|
|
); |