Mercurial > ~dholland > hg > swallowtail > index.cgi
diff database/schema/subscription.sql @ 55:40f64a96481f
Adjust database user arrangements and grant schema privs.
author | David A. Holland |
---|---|
date | Sun, 10 Apr 2022 19:36:29 -0400 (2022-04-10) |
parents | cd36b49f4437 |
children |
line wrap: on
line diff
--- a/database/schema/subscription.sql Sun Apr 10 17:41:24 2022 -0400 +++ b/database/schema/subscription.sql Sun Apr 10 19:36:29 2022 -0400 @@ -42,3 +42,9 @@ -- ; -- -- should always return nothing. + +-- Generically accessible. +GRANT SELECT, INSERT, UPDATE, DELETE ON subscriptions TO swallowtail_admin; +GRANT SELECT, INSERT, UPDATE, DELETE ON subscriptions TO swallowtail_writer; +GRANT SELECT ON subscriptions TO swallowtail_reader; +GRANT SELECT ON subscriptions TO swallowtail_public;