fuzzysearch/migrations/20210420024815_webhooks.up.sql
Syfaro dd7805d052
Webhooks (#8)
* Rough initial progress on webhooks.

* Better webhook error handling, use all ingesters.

* Include hash in webhook data.

* Always pull Rust image.

* Fix missing features.
2021-04-21 16:58:32 -04:00

6 lines
128 B
SQL

CREATE TABLE webhook (
id SERIAL PRIMARY KEY,
account_id INTEGER REFERENCES account (id),
endpoint TEXT NOT NULL
);