view db/gateway.sql @ 477:9125a6e440c0

install (setup): installation is actually not zip safe: `zip_safe` cause trouble when set and the package is zipped: - Twisted doesn't seem to handle correctly the plugin - `VERSION` can't be loaded
author Goffi <goffi@goffi.org>
date Mon, 03 Jan 2022 16:48:22 +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)
);