Add swipping mechanic
This commit is contained in:
@@ -14,6 +14,41 @@ export type Database = {
|
||||
}
|
||||
public: {
|
||||
Tables: {
|
||||
poll_choices: {
|
||||
Row: {
|
||||
created_at: string
|
||||
distance: number | null
|
||||
id: string
|
||||
name: string
|
||||
picture: string
|
||||
poll_id: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
distance?: number | null
|
||||
id?: string
|
||||
name: string
|
||||
picture: string
|
||||
poll_id: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
distance?: number | null
|
||||
id?: string
|
||||
name?: string
|
||||
picture?: string
|
||||
poll_id?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "poll_choices_poll_id_fkey"
|
||||
columns: ["poll_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "polls"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
poll_members: {
|
||||
Row: {
|
||||
created_at: string
|
||||
|
||||
Reference in New Issue
Block a user