48a9ba8d29
* Fixed TestTemplates bug (now shows compile errors properly) * Fixed all compile errors for templates (except test templates) * Added conditional imports for column types
28 lines
955 B
Smarty
28 lines
955 B
Smarty
{{- $tableNameSingular := titleCaseSingular .Table -}}
|
|
// {{$tableNameSingular}}Delete deletes a single record.
|
|
func {{$tableNameSingular}}Delete(db boil.DB, id int) error {
|
|
if id == 0 {
|
|
return errors.New("{{.PkgName}}: no id provided for {{.Table}} delete")
|
|
}
|
|
|
|
_, err := db.Exec("DELETE FROM {{.Table}} WHERE id=$1", id)
|
|
if err != nil {
|
|
return fmt.Errorf("{{.PkgName}}: unable to delete from {{.Table}}: %s", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
{{if hasPrimaryKey .Columns -}}
|
|
// Delete deletes a single {{$tableNameSingular}} record.
|
|
// Delete will match against the primary key column to find the record to delete.
|
|
func (o *{{$tableNameSingular}}) Delete(db boil.DB) error {
|
|
{{- $pkeyName := getPrimaryKey .Columns -}}
|
|
_, err := db.Exec("DELETE FROM {{.Table}} WHERE {{$pkeyName}}=$1", o.{{titleCase $pkeyName}})
|
|
if err != nil {
|
|
return fmt.Errorf("{{.PkgName}}: unable to delete from {{.Table}}: %s", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
{{- end}}
|