Syntax Element: design
Description
Begins the design block of a database version.
Example
This keyword is highlighted
like this.
You can click on keywords and concepts in blue.
// begins declaring the design for a versiondatabase YourDatabase { // ... version initialized { design { public table ALegacyTable; } } }
Notes
- There may only be one design element in a version.
Related Use Cases
- Specifying design separately from construction
- Getting compiler feedback on your database design
- Eliminating duplication between client and database code
- Keeping clients coupled to the current version
- Leveraging a version's proxy in a client
- Transition testing
Related Concepts
Other Actions
documentation | all examples for this syntax element | all examples | use cases | concepts | keywords
database