view db/gateway.sql @ 402:724e39d596a9

psql: use a set for categories, to avoid duplicates (and constraint failure)
author Goffi <goffi@goffi.org>
date Thu, 23 May 2019 08:58:29 +0200
parents 274a45d2a5ab
children
line wrap: on
line source

create table callbacks (
    service text not null,
    node text not null,
    uri text not null,
    PRIMARY KEY (service, node, uri)
);