Domain Model Statements
Statements for creating, altering, and dropping domain model elements: entities, enumerations, associations, and constants.
Entity Statements
| Statement | Description |
|---|---|
| CREATE ENTITY | Create a new entity in a module’s domain model |
| ALTER ENTITY | Add, drop, modify, or rename attributes and indexes on an existing entity |
| DROP ENTITY | Remove an entity from the domain model |
Enumeration Statements
| Statement | Description |
|---|---|
| CREATE ENUMERATION | Create a new enumeration type with named values |
| DROP ENUMERATION | Remove an enumeration from the project |
Association Statements
| Statement | Description |
|---|---|
| CREATE ASSOCIATION | Create a relationship between two entities |
| DROP ASSOCIATION | Remove an association from the domain model |
Constant Statements
| Statement | Description |
|---|---|
| CREATE CONSTANT | Create a named constant value in a module |