Skip to content

Commit bc5d04c

Browse files
committed
Set user_id?: string
1 parent c736227 commit bc5d04c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

common/src/supabase/schema.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ export type Database = {
273273
id: number
274274
iv: string | null
275275
tag: string | null
276-
user_id: string
276+
user_id: string | null
277277
visibility: string
278278
}
279279
Insert: {
@@ -284,7 +284,7 @@ export type Database = {
284284
id?: never
285285
iv?: string | null
286286
tag?: string | null
287-
user_id: string
287+
user_id?: string | null
288288
visibility?: string
289289
}
290290
Update: {
@@ -295,7 +295,7 @@ export type Database = {
295295
id?: never
296296
iv?: string | null
297297
tag?: string | null
298-
user_id?: string
298+
user_id?: string | null
299299
visibility?: string
300300
}
301301
Relationships: [

0 commit comments

Comments
 (0)