Grant permissions of api_key table to omnivore_user

This commit is contained in:
Hongbo Wu 2022-05-27 17:36:30 +08:00
parent 0f2a55d274
commit b77b378221
2 changed files with 2 additions and 0 deletions

View file

@ -16,4 +16,6 @@ CREATE TABLE omnivore.api_key (
UNIQUE (user_id, name)
);
GRANT SELECT, INSERT, UPDATE, DELETE ON omnivore.api_key TO omnivore_user;
COMMIT;