Add swipping mechanic

This commit is contained in:
2025-07-27 18:07:27 +07:00
parent bde97a3c42
commit e80f7e6a58
3 changed files with 303 additions and 0 deletions
+35
View File
@@ -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