]> git.mxchange.org Git - friendica.git/blob - view/templates/structure.tpl
make dropzone work on editing postings/Comments
[friendica.git] / view / templates / structure.tpl
1 Table {{$name nofilter}}
2 ===========
3
4 {{$comment nofilter}}
5
6 Fields
7 ------
8
9 {{foreach $fields as $field}}
10 | {{$field.name nofilter}} | {{$field.comment nofilter}} | {{$field.type nofilter}} | {{$field.null nofilter}} | {{$field.primary nofilter}} | {{$field.default nofilter}} | {{$field.extra nofilter}} |
11 {{/foreach}}
12
13 Indexes
14 ------------
15
16 {{foreach $indexes as $index}}
17 | {{$index.name nofilter}} | {{$index.fields nofilter}} |
18 {{/foreach}}
19
20 {{if $foreign}}
21 Foreign Keys
22 ------------
23
24 | Field | Target Table | Target Field |
25 |-------|--------------|--------------|
26 {{foreach $foreign as $key}}
27 | {{$key.field nofilter}} | [{{$key.targettable nofilter}}](help/database/db_{{$key.targettable nofilter}}) | {{$key.targetfield nofilter}} |
28 {{/foreach}}
29 {{/if}}
30
31 Return to [database documentation](help/database)