fix(mysql): handle CreateMemo custom timestamps with FROM_UNIXTIME (#5673)

pull/5638/head
Mudkip 3 months ago committed by GitHub
parent 104d2ec0a6
commit 09d73e8b6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -29,12 +29,12 @@ func (d *DB) CreateMemo(ctx context.Context, create *store.Memo) (*store.Memo, e
// Add custom timestamps if provided
if create.CreatedTs != 0 {
fields = append(fields, "`created_ts`")
placeholder = append(placeholder, "?")
placeholder = append(placeholder, "FROM_UNIXTIME(?)")
args = append(args, create.CreatedTs)
}
if create.UpdatedTs != 0 {
fields = append(fields, "`updated_ts`")
placeholder = append(placeholder, "?")
placeholder = append(placeholder, "FROM_UNIXTIME(?)")
args = append(args, create.UpdatedTs)
}

Loading…
Cancel
Save