权限
Supabase 平台在每个项目自带的 Postgres 数据库基础上还提供额外的服务(例如存储)。这些服务默认会将它们的操作数据存储在你的数据库里,以确保你能完全掌控这些数据。
🌐 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:
storage模式下的所有实体都属于supabase_storage_adminauth模式下的所有实体都属于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.