Sticky headers fix, added Heliports

This commit is contained in:
PxlLoewe
2025-07-13 00:30:46 -07:00
parent 0730737bbe
commit 768c84f171
27 changed files with 432 additions and 22 deletions

View File

@@ -0,0 +1,25 @@
enum HeliportType {
HELIPAD
POI
MOUNTAIN
}
model Heliport {
id Int @id @default(autoincrement())
type HeliportType
designator String
designatorSub6 String
fir String
state String
stateShort String
siteName String
siteNameSub26 String
siteNameSub21 String
siteElevation Float?
siteElevationUnit String?
info String?
lat Float
lng Float
country Country
hospital String?
}