I can already see my schema on the dashboard and e...
# supabase-kt
c
I can already see my schema on the dashboard and even have data populated in it, but from the error above, it’s not even selected as an option. The way I created my postgrest & supabase client was;
Copy code
createSupabaseClient(
            supabaseUrl = "myurl",
            supabaseKey = "mykey"
        ) {
            install(Postgrest) { 
                defaultSchema = "my_schema"
                propertyConversionMethod = PropertyConversionMethod.SERIAL_NAME
            }
            defaultSerializer = createSerializer(get())
        }