Identifiers
All about entity identifiers, from primary keys, and generators to composite keys and field types.
property name = "id"
fieldtype = "id"
ormtype = "string"
generator = "assigned"
update = "false";Common Generator Types
Assigned Generator
property name = "id"
fieldtype = "id"
generator = "assigned"
update = "false";function preInsert( entity ){
setId( createUUID() );
}Select Generator
UUID Generator
Increment Generator
Other Valid Generator Types
Last updated
Was this helpful?