fix removing whitespace

This commit is contained in:
Maksim 2017-04-24 12:46:56 -04:00
parent d9b991e487
commit bdd28d9d5b

View file

@ -56,7 +56,7 @@ func (o *{{$tableNameSingular}}) Update(exec boil.Executor, whitelist ... string
{{if eq .DriverName "mssql"}}
wl = strmangle.SetComplement(wl, {{$varNameSingular}}ColumnsWithAuto)
{{end}}
{{- if not .NoAutoTimestamps}}
{{if not .NoAutoTimestamps}}
if len(whitelist) == 0 {
wl = strmangle.SetComplement(wl, []string{"created_at"})
}