{$title}
{$date} export
contents
{foreach from=$tables item="table"}
- {$table.tableName}
{/foreach}
{foreach from=$tables item="table"}
Table
{$table.tableName}
/
Schema
{$table.schema}
COLUMN NAME | PK | TYPE | SIZE | DEFAULT VALUE | NOT NULL |
comment |
{foreach from=$table.columnProperties item="c"}
{$c.name} |
{$c.primaryKeyName} |
{$c.typeAsDB} |
{$c.size} |
{$c.defaultValue} |
{$c.notNull} |
{$c.comment} |
{/foreach}
Index
INDEX NAME | COLUMN NAME | UNIQUE | CATALOG | TYPE |
{foreach from=$table.indexProperties item="c"}
{$c.indexName} |
{$c.columnName} |
{$c.nonUnique} |
{$c.catalog} |
{$c.typeName} |
{/foreach}
{/foreach}
{$auther} {$url}