mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 07:14:28 +08:00
15 lines
922 B
Plaintext
15 lines
922 B
Plaintext
---
|
|
id: permissions
|
|
title: Permissions
|
|
description: Permissions requirements for the Supabase Cloud hosting environment
|
|
---
|
|
|
|
The Supabase platform offers additional services (e.g. Storage) on top of the Postgres database that comes with each project. These services default to storing their operational data within your database, to ensure that you retain complete control over it.
|
|
|
|
However, these services assume a base level of access to their data, in order to e.g. be able to run migrations over it. Breaking these assumptions runs the risk of rendering these services inoperational for your project:
|
|
|
|
- all entitites under the `storage` schema are owned by `supabase_storage_admin`
|
|
- all entitites under the `auth` schema are owned by `supabase_auth_admin`
|
|
|
|
It is possible for violations of these assumptions to not cause an immediate outage, but take effect at a later time when a newer migration becomes available.
|