schema.sql: Fix syntax error

This commit is contained in:
Adnan Maolood 2023-01-02 10:08:03 -05:00 committed by Drew DeVault
parent fc70ae13a4
commit 5c4ba72503
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ CREATE TABLE user_webhook_subscription (
created timestamp without time zone NOT NULL,
url character varying(2048) NOT NULL,
events character varying NOT NULL,
user_id integer REFERENCES "user"(id), ON DELETE CASCADE
user_id integer REFERENCES "user"(id) ON DELETE CASCADE,
token_id integer REFERENCES oauthtoken(id) ON DELETE CASCADE
);