Skip to content

Commit

Permalink
fix: correct user
Browse files Browse the repository at this point in the history
  • Loading branch information
neilsong committed Jan 12, 2025
1 parent 11ebfef commit 3d32844
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion db/ferry-user.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
-- This only has to be done once to initialize the new user.
-- Run this in the ferry DB.

GRANT ALL ON SCHEMA public TO hasura;
GRANT ALL ON SCHEMA public TO ferry;
ALTER SCHEMA public OWNER TO ferry;
GRANT ALL ON ALL TABLES IN SCHEMA public TO ferry;
GRANT ALL ON ALL SEQUENCES IN SCHEMA public TO ferry;
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT ALL ON TABLES TO ferry;
Expand Down

0 comments on commit 3d32844

Please sign in to comment.