Skip to content

Commit

Permalink
Revert wrong type changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloGracia committed Nov 8, 2024
1 parent 8e15cea commit d2465b2
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions src/types/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ export type Database = {
town_id: number | null;
type: string | null;
urgency: string | null;
user_id: string | null;
};
Insert: {
additional_info?: Json | null;
Expand All @@ -212,6 +213,7 @@ export type Database = {
town_id?: number | null;
type?: string | null;
urgency?: string | null;
user_id: string | null;
};
Update: {
additional_info?: Json | null;
Expand All @@ -234,6 +236,7 @@ export type Database = {
town_id?: number | null;
type?: string | null;
urgency?: string | null;
user_id: string | null;
};
Relationships: [
{
Expand Down Expand Up @@ -334,12 +337,7 @@ export type Database = {
};
};
Views: {
distinct_collection_cities: {
Row: {
city: string | null;
};
Relationships: [];
};
[_ in never]: never;
};
Functions: {
[_ in never]: never;
Expand All @@ -354,9 +352,7 @@ export type Database = {
| 'medica'
| 'psicologico'
| 'logistico'
| 'otros'
| 'reparto'
| 'donaciones';
| 'otros';
};
CompositeTypes: {
[_ in never]: never;
Expand Down

0 comments on commit d2465b2

Please sign in to comment.