golib/gdb/orm/timestamps.go
2023-08-20 13:51:00 +08:00

19 lines
259 B
Go

//
// 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
DeletedAt sql.NullTime
}