307fe4919a
- Bonus: Add yaml/toml struct tags for models
8 lines
431 B
Smarty
8 lines
431 B
Smarty
{{- $tableNameSingular := .Table.Name | singular -}}
|
|
{{- $modelName := $tableNameSingular | titleCase -}}
|
|
// {{$modelName}} is an object representing the database table.
|
|
type {{$modelName}} struct {
|
|
{{range $column := .Table.Columns -}}
|
|
{{titleCase $column.Name}} {{$column.Type}} `boil:"{{printf "%s.%s" $tableNameSingular $column.Name}}" json:"{{$column.Name}}" toml:"{{$column.Name}}" yaml:"{{$column.Name}}"`
|
|
{{end -}}
|
|
}
|