Skip to content

Commit

Permalink
optional type
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloGracia committed Nov 8, 2024
1 parent d2465b2 commit 52a22ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export type Database = {
town_id?: number | null;
type?: string | null;
urgency?: string | null;
user_id: string | null;
user_id?: string | null;
};
Update: {
additional_info?: Json | null;
Expand All @@ -236,7 +236,7 @@ export type Database = {
town_id?: number | null;
type?: string | null;
urgency?: string | null;
user_id: string | null;
user_id?: string | null;
};
Relationships: [
{
Expand Down

0 comments on commit 52a22ee

Please sign in to comment.