Merge branch 'master' into master
This commit is contained in:
commit
0c71c43a2c
@ -26,10 +26,10 @@ func (n DeletedAt) Value() (driver.Value, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (n DeletedAt) MarshalJSON() ([]byte, error) {
|
func (n DeletedAt) MarshalJSON() ([]byte, error) {
|
||||||
if !n.Valid {
|
if n.Valid {
|
||||||
return []byte(`null`), nil
|
return json.Marshal(n.Time)
|
||||||
}
|
}
|
||||||
return json.Marshal(n.Time)
|
return json.Marshal(nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n *DeletedAt) UnmarshalJSON(b []byte) error {
|
func (n *DeletedAt) UnmarshalJSON(b []byte) error {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user