2021-06-13 16:33:50 -04:00
|
|
|
Table {{$name}}
|
|
|
|
===========
|
2021-06-14 02:10:11 -04:00
|
|
|
|
2021-06-13 16:33:50 -04:00
|
|
|
{{$comment}}
|
|
|
|
|
2021-06-14 04:53:37 -04:00
|
|
|
Fields
|
|
|
|
------
|
|
|
|
|
2021-06-13 16:33:50 -04:00
|
|
|
{{foreach $fields as $field}}
|
2021-06-14 02:10:11 -04:00
|
|
|
| {{$field.name}} | {{$field.comment}} | {{$field.type}} | {{$field.null}} | {{$field.primary}} | {{$field.default}} | {{$field.extra}} |
|
2021-06-13 16:33:50 -04:00
|
|
|
{{/foreach}}
|
|
|
|
|
2021-06-14 04:53:37 -04:00
|
|
|
Indexes
|
|
|
|
------------
|
|
|
|
|
|
|
|
{{foreach $indexes as $index}}
|
|
|
|
| {{$index.name}} | {{$index.fields}} |
|
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{if $foreign}}
|
|
|
|
Foreign Keys
|
|
|
|
------------
|
|
|
|
|
|
|
|
| Field | Target Table | Target Field |
|
|
|
|
|-------|--------------|--------------|
|
|
|
|
{{foreach $foreign as $key}}
|
|
|
|
| {{$key.field}} | [{{$key.targettable}}](help/database/db_{{$key.targettable}}) | {{$key.targetfield}} |
|
|
|
|
{{/foreach}}
|
|
|
|
{{/if}}
|
|
|
|
|
2021-06-13 16:33:50 -04:00
|
|
|
Return to [database documentation](help/database)
|