-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#4044] Add more documentation on formio configuration
- Loading branch information
Showing
2 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
Forms model relationship | ||
--- | ||
erDiagram | ||
Category { | ||
UUIDField uuid | ||
CharField path | ||
CharField name | ||
} | ||
Form { | ||
UUIDField uuid | ||
SlugField slug | ||
CharField name | ||
ForeignKey category | ||
} | ||
FormDefinition { | ||
UUIDField uuid | ||
CharField name | ||
SlugField slug | ||
JSONField configuration | ||
BooleanField login_required | ||
BooleanField is_reusable | ||
} | ||
FormStep { | ||
UUIDField uuid | ||
SlugField slug | ||
ForeignKey form | ||
ForeignKey form_definition | ||
BooleanField is_applicable | ||
} | ||
FormVariable { | ||
ForeignKey form | ||
ForeignKey form_definition | ||
TextField name | ||
TextField key | ||
CharField source | ||
CharField data_type | ||
CharField data_format | ||
BooleanField is_sensitive_data | ||
JSONField initial_value | ||
} | ||
Form }|--|| Category : category | ||
FormStep }|--|| Form : form | ||
FormStep }|--|| FormDefinition : form_definition | ||
FormVariable }|--|| Form : form | ||
FormVariable }|--|| FormDefinition : form_definition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters