mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 06:23:08 +00:00
dd7805d052
* Rough initial progress on webhooks. * Better webhook error handling, use all ingesters. * Include hash in webhook data. * Always pull Rust image. * Fix missing features.
6 lines
128 B
SQL
6 lines
128 B
SQL
CREATE TABLE webhook (
|
|
id SERIAL PRIMARY KEY,
|
|
account_id INTEGER REFERENCES account (id),
|
|
endpoint TEXT NOT NULL
|
|
);
|