## `{{table_name}}` — {{purpose}} ### 字段 | 字段 | 类型 | Nullable | 默认 | 业务含义 | |---|---|---|---|---| {{#each columns}} | {{name}} | {{type}} | {{nullable}} | {{default}} | {{business_meaning}} | {{/each}} ### 索引 {{#each indexes}} - `{{name}}` ({{type}}): {{columns}} {{/each}} ### 外键 {{#each foreign_keys}} - `{{name}}`: {{from_col}} → {{to_table}}.{{to_col}} ({{on_delete}}) {{/each}} ### 业务注记 {{notes}}