...
- The relevant table definition should include the field
ordr
, spelled with out the "e". (This is becauseorder
is a reserved keyword in MySQL.) - The Table should use OrderableBehavior, which will automatically set an appropriate value for
ordr
if none is provided when a new entity is saved.- OrderableBehavior will constrain searches by primary key when assigning the next
ordr
value. So, for example, when a new Provisioning Target is added,max(ordr)
is determined for all Provisioning Targets within the same CO, while for Enrollment Flow Stepsmax(ordr)
is determined for all Enrollment Flow Steps within the same Enrollment Flow.
- OrderableBehavior will constrain searches by primary key when assigning the next
Timezones
All timestamps are stored in the database in UTC (AR-GMR-4).
...