view db/gateway.sql @ 389:66128656f76c

backend: fixed items returned on publishing: when generating several item ids at once, only the last id was returned. This patch fixes it by returning an item with filled id for each generated item.
author Goffi <goffi@goffi.org>
date Fri, 15 Feb 2019 16:31:38 +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)
);