Fix: Remove versioning helpers

This commit is contained in:
gpt-engineer-app[bot]
2025-10-15 18:14:08 +00:00
parent 84238bc40e
commit 8f56f608f7
2 changed files with 75 additions and 0 deletions

View File

@@ -705,6 +705,54 @@ export type Database = {
},
]
}
entity_versions_archive: {
Row: {
change_reason: string | null
change_type: Database["public"]["Enums"]["version_change_type"]
changed_at: string
changed_by: string | null
entity_id: string
entity_type: string
id: string
ip_address_hash: string | null
is_current: boolean
metadata: Json | null
submission_id: string | null
version_data: Json
version_number: number
}
Insert: {
change_reason?: string | null
change_type?: Database["public"]["Enums"]["version_change_type"]
changed_at?: string
changed_by?: string | null
entity_id: string
entity_type: string
id?: string
ip_address_hash?: string | null
is_current?: boolean
metadata?: Json | null
submission_id?: string | null
version_data: Json
version_number: number
}
Update: {
change_reason?: string | null
change_type?: Database["public"]["Enums"]["version_change_type"]
changed_at?: string
changed_by?: string | null
entity_id?: string
entity_type?: string
id?: string
ip_address_hash?: string | null
is_current?: boolean
metadata?: Json | null
submission_id?: string | null
version_data?: Json
version_number?: number
}
Relationships: []
}
historical_parks: {
Row: {
closure_reason: string | null