8 Replies
Ik we can do this with a migration, toml would feel better tho imo, there's already some precedent there in the toml
https://supabase.com/docs/guides/local-development/cli/config#api.schemas
The api schema setting is there.
I don't know what your are showing with realtime schemas.
But if you have feature requests they need to be on github supabase/discussions or the appropriate repository. Supabase does not read posts here regularly.
there's no array for realtime schemas though, the schema array doesn't expose that permission when reatlime is enabled, though it should imo -- unless im doing something totally wrong
I've never seen a separate area in the hosted dashboard to expose realtime schemas. There is only one place to expose a schema and it's under the API settings.
I don't know what realtime schema option would be.
You add tables to the realtime publication.
If you mean realtime publication, you enable those on tables via SQL in the CLI setup.
ALTER PUBLICATION supabase_realtime ADD TABLE your_table_name;
You beat me to it.