Skip to content

Commit f0a549e

Browse files
style: autofix
[skip netlify]
1 parent 2dabf6a commit f0a549e

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

app/types/database.types.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,29 +37,23 @@ export type Database = {
3737
tasks: {
3838
Row: {
3939
created_at: string | null
40-
description: string
4140
id: string
42-
requesting_tasks: boolean | null
4341
status: Database["public"]["Enums"]["task_status"]
4442
title: string
4543
topic_id: string
4644
updated_at: string | null
4745
}
4846
Insert: {
4947
created_at?: string | null
50-
description: string
5148
id?: string
52-
requesting_tasks?: boolean | null
5349
status?: Database["public"]["Enums"]["task_status"]
5450
title: string
5551
topic_id: string
5652
updated_at?: string | null
5753
}
5854
Update: {
5955
created_at?: string | null
60-
description?: string
6156
id?: string
62-
requesting_tasks?: boolean | null
6357
status?: Database["public"]["Enums"]["task_status"]
6458
title?: string
6559
topic_id?: string
@@ -116,6 +110,7 @@ export type Database = {
116110
description: string
117111
id: string
118112
owner: string
113+
requesting_tasks: boolean | null
119114
title: string
120115
updated_at: string | null
121116
}
@@ -124,6 +119,7 @@ export type Database = {
124119
description: string
125120
id?: string
126121
owner?: string
122+
requesting_tasks?: boolean | null
127123
title: string
128124
updated_at?: string | null
129125
}
@@ -132,6 +128,7 @@ export type Database = {
132128
description?: string
133129
id?: string
134130
owner?: string
131+
requesting_tasks?: boolean | null
135132
title?: string
136133
updated_at?: string | null
137134
}

0 commit comments

Comments
 (0)