Skip to content

Commit

Permalink
fix/types
Browse files Browse the repository at this point in the history
  • Loading branch information
psiddharthdesign committed Jul 30, 2024
1 parent 65a2eb5 commit 64d411a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib/database.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,25 +354,25 @@ export type Database = {
Row: {
created_at: string | null
deleted_at: string | null
digger_run_id: number | null
digger_run_id: string | null
id: number
project_id: number | null
project_id: string | null
updated_at: string | null
}
Insert: {
created_at?: string | null
deleted_at?: string | null
digger_run_id?: number | null
digger_run_id?: string | null
id?: number
project_id?: number | null
project_id?: string | null
updated_at?: string | null
}
Update: {
created_at?: string | null
deleted_at?: string | null
digger_run_id?: number | null
digger_run_id?: string | null
id?: number
project_id?: number | null
project_id?: string | null
updated_at?: string | null
}
Relationships: []
Expand Down

0 comments on commit 64d411a

Please sign in to comment.