diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-20 00:30:08 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-20 00:30:08 -0500 |
commit | 757ccac0103541a34d040ef4812b2e7afb9f1f02 (patch) | |
tree | fe8960c4fac73a11e09cc6a2ec7f2c3b8d812485 /src/db/rest/follow/api_follow.sql | |
parent | profile stuff (diff) | |
download | xssbook2-757ccac0103541a34d040ef4812b2e7afb9f1f02.tar.gz xssbook2-757ccac0103541a34d040ef4812b2e7afb9f1f02.tar.bz2 xssbook2-757ccac0103541a34d040ef4812b2e7afb9f1f02.zip |
rename admin schema to xssbook
Diffstat (limited to 'src/db/rest/follow/api_follow.sql')
-rw-r--r-- | src/db/rest/follow/api_follow.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/rest/follow/api_follow.sql b/src/db/rest/follow/api_follow.sql index c0a07e5..6893240 100644 --- a/src/db/rest/follow/api_follow.sql +++ b/src/db/rest/follow/api_follow.sql @@ -7,9 +7,9 @@ CREATE VIEW api.follow AS f.created, f.modified FROM - admin.follow f; + xssbook.follow f; GRANT SELECT ON TABLE api.follow TO rest_anon, rest_user; -GRANT SELECT ON TABLE admin.follow +GRANT SELECT ON TABLE xssbook.follow TO rest_anon, rest_user; |