403951940f
* Added new statements * Modified existing statements * (TODO: FINISH STATEMENT IMPLEMENTATIONS)
7 lines
340 B
Smarty
7 lines
340 B
Smarty
{{- $tableName := .TableName -}}
|
|
// {{makeGoColName $tableName}} is an object representing the database table.
|
|
type {{makeGoColName $tableName}} struct {
|
|
{{range $key, $value := .TableData -}}
|
|
{{makeGoColName $value.ColName}} {{$value.ColType}} `db:"{{makeDBColName $tableName $value.ColName}}" json:"{{$value.ColName}}"`
|
|
{{end -}}
|
|
}
|