File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
migrations/20240418074938_add_wifi
src/customModelsEnhanceMap Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1+ ALTER TABLE " Venue" ADD COLUMN " wifiSsid" TEXT NULL DEFAULT NULL ;
2+ ALTER TABLE " Venue" ADD COLUMN " wifiPassword" TEXT NULL DEFAULT NULL ;
Original file line number Diff line number Diff line change @@ -146,6 +146,9 @@ model Venue {
146146 contactEmail String ?
147147 contactPhone String ?
148148
149+ wifiSsid String ?
150+ wifiPassword String ?
151+
149152 // Relations
150153 events Event []
151154}
@@ -387,4 +390,4 @@ model EventRestriction {
387390 title String
388391 details String ?
389392 Events Event []
390- }
393+ }
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ export const venueEnhanceConfig: ModelConfig<"Venue"> = {
2020 zipCode : [ ] ,
2121 country : [ ] ,
2222 countryAbbreviation : [ ] ,
23- stateAbbreviation : [ ]
23+ stateAbbreviation : [ ] ,
24+ wifiSsid : [ ] ,
25+ wifiPassword : [ ] ,
2426 }
2527}
You can’t perform that action at this time.
0 commit comments