Jinni
03/13/2023, 5:03 AMtest db
work? I am trying to \include
sql files but it cannot find it.Shaco Is Near
03/13/2023, 5:08 AMHAHZNFT
03/13/2023, 6:36 AMkillerthief
03/13/2023, 7:39 AMhannaszepesi
03/13/2023, 7:47 AMlake_mattiato
03/13/2023, 9:17 AMMetaW3b
03/13/2023, 9:17 AMviktor
03/13/2023, 10:28 AMGaryLake
03/13/2023, 10:56 AMeloahsam
03/13/2023, 11:32 AMGwhyyy
03/13/2023, 11:41 AMhttps://user-images.githubusercontent.com/25140579/224687845-cc4d434e-0b35-432d-8f1f-fa272224d009.png▾
Kcrik
03/13/2023, 11:55 AMPeterSon
03/13/2023, 12:58 PMYourFavoriteKyle
03/13/2023, 1:06 PM?????
03/13/2023, 1:11 PMLesourdingo
03/13/2023, 1:20 PMPhenomen
03/13/2023, 1:28 PMlouis030195
03/13/2023, 1:40 PMpy
supabase.table("foos").select("bar").distinct()
any idea how?Daemon
03/13/2023, 2:05 PMsupabase link
with a self hosted project rather than the typical local installation?
I think the only valuable thing this would enable you to do would be to easily migrate your database from development to production. Maybe I could do this manually? I would appreciate any insight on this.
Thanks all!Devesh agarwal
03/13/2023, 3:56 PMjbergius
03/13/2023, 4:17 PMDontblink
03/13/2023, 5:42 PMEdson.CS
03/13/2023, 6:25 PMnelakay
03/13/2023, 7:42 PMAlwaysBlue
03/13/2023, 8:35 PMAlwaysBlue
03/13/2023, 8:40 PMnateland
03/13/2023, 8:46 PMLog ID
...
Log Timestamp (UTC)
2023-03-13T20:41:02.000Z
Log Event Message
{"component":"api","error":"error finding user: ERROR: column users.deleted_at does not exist (SQLSTATE 42703)","level":"error","method":"POST","msg":"500: Database error finding user","path":"/otp","referer":...}
Log Metadata
[
{
...
"timestamp": "2023-03-13T20:41:02Z",
....
"method": "POST",
....
"msg": "500: Database error finding user",
...
"path": "/otp",
"component": "api",
...
"error": "error finding user: ERROR: column users.deleted_at does not exist (SQLSTATE 42703)"
}
]
Lar
03/13/2023, 9:30 PMelliott
03/13/2023, 9:37 PMKremBanan
03/13/2023, 9:57 PMts
const [todos, setTodos] = useState<???>([])
useEffect(() => {
supabase
.from("todos")
.select()
.then((res) => {
setTodos(res.data);
});
}, []);