Skip to content

Commit cc538e1

Browse files
Merge pull request #11 from CropWatchDevelopment/develop
Develop
2 parents b21428c + 0eee4e5 commit cc538e1

42 files changed

Lines changed: 2540 additions & 727 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

database.types.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,35 @@ export type Database = {
335335
}
336336
Relationships: []
337337
}
338+
cw_air_annotations: {
339+
Row: {
340+
created_at: string
341+
dev_eui: string
342+
id: number
343+
note: string | null
344+
}
345+
Insert: {
346+
created_at: string
347+
dev_eui: string
348+
id?: number
349+
note?: string | null
350+
}
351+
Update: {
352+
created_at?: string
353+
dev_eui?: string
354+
id?: number
355+
note?: string | null
356+
}
357+
Relationships: [
358+
{
359+
foreignKeyName: "cw_air_annotations_air_fk"
360+
columns: ["dev_eui", "created_at"]
361+
isOneToOne: false
362+
referencedRelation: "cw_air_data"
363+
referencedColumns: ["dev_eui", "created_at"]
364+
},
365+
]
366+
}
338367
cw_air_data: {
339368
Row: {
340369
battery_level: number | null

0 commit comments

Comments
 (0)