You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's good to remember that Redash allows whatever you allow the database user you supply it with.
In this case the redash_reader user can create new tables and delete tables it created, but it can't touch (delete) the metadata tables. That's apparently the default behavior in Postgres.
I don't mind changing the bootstrap script to prevent this though by basically adding the following:
revoke create on schema public from public;
grant create on schema public to redash;
In this case the redash_reader user can create new tables and delete tables it created, but it can't touch (delete) the metadata tables. That's apparently the default behavior in Postgres.
Issue Summary
It seems to be possible to create / delete tables in Re:dash metadata.
Steps to Reproduce
It was created!
#### And also ...
deletable.
Is it safe?
I think that non-administrator users also can do this.
DROP TABLE dashboards
,DROP TABLE queries
...Technical details:
The text was updated successfully, but these errors were encountered: