view db/gateway.sql @ 429:0526073ff2ab

pgsql: replaced ValueError by BadRequest: `BadRequest` results in a proper IQ error, while `ValueError` results in an InternalError.
author Goffi <goffi@goffi.org>
date Thu, 10 Dec 2020 10:46:34 +0100
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)
);