feat: added compulsory tags

This commit is contained in:
Barf-Vader
2025-06-09 17:25:12 +01:00
parent f6f09c8492
commit 3cec498192
8 changed files with 206 additions and 27 deletions

View File

@@ -70,8 +70,11 @@ export type Database = {
description: string | null
id: string
location: string | null
power: string
tags: string[]
updated_at: string | null
volume: string
wifi: string
}
Insert: {
building_location?: string | null
@@ -79,8 +82,11 @@ export type Database = {
description?: string | null
id?: string
location?: string | null
power: string
tags?: string[]
updated_at?: string | null
volume: string
wifi: string
}
Update: {
building_location?: string | null
@@ -88,8 +94,11 @@ export type Database = {
description?: string | null
id?: string
location?: string | null
power?: string
tags?: string[]
updated_at?: string | null
volume?: string
wifi?: string
}
Relationships: []
}