2023-08-20 13:51:00 +08:00
|
|
|
//
|
|
|
|
// timestamps.go
|
|
|
|
// Copyright (C) 2023 tiglog <me@tiglog.com>
|
|
|
|
//
|
|
|
|
// Distributed under terms of the MIT license.
|
|
|
|
//
|
|
|
|
|
|
|
|
package orm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Timestamps struct {
|
|
|
|
CreatedAt sql.NullTime
|
|
|
|
UpdatedAt sql.NullTime
|
2023-08-22 16:24:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type SoftDelete struct {
|
2023-08-20 13:51:00 +08:00
|
|
|
DeletedAt sql.NullTime
|
|
|
|
}
|