@rimori/client 2.5.3-next.1 → 2.5.3-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,7 +28,7 @@ export class DbModule {
|
|
|
28
28
|
// Plugin tables use the schema provided by rimori-main (plugins or plugins_alpha)
|
|
29
29
|
if (relation.startsWith('global_')) {
|
|
30
30
|
// Global tables stay in public schema
|
|
31
|
-
return this.supabase.from(tableName);
|
|
31
|
+
return this.supabase.schema('public').from(tableName);
|
|
32
32
|
}
|
|
33
33
|
// Plugin tables go to the schema provided by rimori-main
|
|
34
34
|
return this.supabase.schema(this.rimoriInfo.dbSchema).from(tableName);
|