Files
templates/examples/02-loop/db-schema.tpl
Matyas Szentivanyi 5ca3d033ee Restructure project
2020-11-03 09:50:48 +01:00

9 lines
219 B
Smarty

{{range .Schema.Table}}
CREATE TABLE {{ .Name}} (
{{range $idx, $column := .Column}}
{{if $idx }} , {{end}}{{ $column.Name}} {{$column.Type}} {{if $column.Size }} {{$column.Size}} {{end}}
{{end}}
)
{{end}}