https://supabase.com/ logo
Join Discord
Powered by
# help
  • a

    Anoushk

    12/17/2021, 9:42 AM
    but why is status shown as operational
  • l

    laznic

    12/17/2021, 9:46 AM
    Just updated
  • p

    productdevbook

    12/17/2021, 9:46 AM
    where link?
  • l

    laznic

    12/17/2021, 9:46 AM
    Status pages usually don't update in real time, sometimes they might be 30min to 1hr behind
  • l

    laznic

    12/17/2021, 9:46 AM
    https://status.supabase.com/
  • l

    laznic

    12/17/2021, 9:48 AM
    Dashboard seems to be working now, at least for me
  • p

    productdevbook

    12/17/2021, 9:50 AM
    fixed now
  • a

    Anoushk

    12/17/2021, 9:51 AM
    yea works
  • a

    Anoushk

    12/17/2021, 9:52 AM
    gg @User and @User
  • e

    everconfusedguy

    12/17/2021, 9:57 AM
    hey everyone sorry about this, bad deploy - reverted it now.
  • m

    Muphet

    12/17/2021, 10:14 AM
    no luck for me. is it my database breaking something? 😄
  • c

    copple

    12/17/2021, 10:18 AM
    apologies everyone - should have only been the Dashboard, not the database
  • c

    copple

    12/17/2021, 10:19 AM
    is anyone still having issues? If so, can you please confirm here: https://app.supabase.io/support/new so that we get your project IDs? If you can't reach that page just let us know your project id
  • c

    copple

    12/17/2021, 10:22 AM
    @User - looking for your support ticket. seems to be unrelated to the Dashboard issue
  • m

    Muphet

    12/17/2021, 10:22 AM
    sorry that it's recorded with phone but here its how it is
  • c

    copple

    12/17/2021, 10:23 AM
    ah that's super helpful - thanks! Looks like a legit bug. Do you already have a github issue for this one?
  • m

    Muphet

    12/17/2021, 10:23 AM
    no since i am using cloud supabase, i only sent support ticket and didn't do anything with it yet
  • m

    Muphet

    12/17/2021, 10:24 AM
    i mean, not self hosted
  • c

    copple

    12/17/2021, 10:25 AM
    OK cool - would you mind starting a github issue too? More people looking at it means faster fixes 🙂 They Dashboard is open source, so anyone can help fix this
  • c

    copple

    12/17/2021, 10:25 AM
    (while we also investigate on the support ticket)
  • m

    Muphet

    12/17/2021, 10:28 AM
    but speaking of this, i have a query in my app:
    Copy code
    Javascript
    const { data: logs, count } = await this.$sb
            .from("logs")
            .select("*, added_by(discord)", { count: "exact" })
            .range(startIndex, endIndex)
            .order("created_at", { ascending: false });
    and this fetches just fine, but when i add
    .eq('user_id', id)
    i get 0 results
  • c

    copple

    12/17/2021, 10:31 AM
    I'll help you create the github issue for the first one - I don't want it to get lost in the threads. The second issue could be an RLS issue
  • m

    Muphet

    12/17/2021, 10:31 AM
    hm, for this project i didnt set up rls at all and use super key so i thought there wont be issues
  • c

    copple

    12/17/2021, 10:35 AM
    created an issue here @User : https://github.com/supabase/supabase/issues/4531
  • c

    copple

    12/17/2021, 10:40 AM
    > didnt set up rls definitely not RLS then ! It won't be an error though, just that the combination of filters you're passing legitimately don't match any data. It's very hard to give an exact resolution because it depends on your data. Perhaps trim back the filters and play around with combos until you find a the right methods?
  • m

    Muphet

    12/17/2021, 11:56 AM
    Copy code
    javascript
    .from("logs")
            .select("*, added_by(discord)")
            .range(startIndex, endIndex)
            .order("created_at", { ascending: false })
            .eq("verified", false);
    returns all results with verified==false
    Copy code
    javascript
    .from("logs")
            .select("*, added_by(discord)")
            .range(startIndex, endIndex)
            .order("created_at", { ascending: false })
            .eq("guild_id", id);
    returns empty. guild_id is a foreign key to different db (just like added_by)
  • m

    Muphet

    12/17/2021, 12:00 PM
    tested by adding new column of int8 (and text) and filter for them, and also same empty result
  • s

    silentworks

    12/17/2021, 12:50 PM
    You can use a database schema migration library
  • s

    silentworks

    12/17/2021, 12:56 PM
    Can you create a thread for this and share what your table schemas look like too, It's hard to follow with other conversations going on in-between them all
  • m

    Muphet

    12/17/2021, 1:15 PM
    ahh, i thought threads are only made by staff. anyway i tried for science and removed all underscores from my schemas. suddenly everything works..
1...162163164...316Latest