You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
351 B
14 lines
351 B
package gorm |
|
|
|
import "time" |
|
|
|
// Model base model definition, including fields `ID`, `CreatedAt`, `UpdatedAt`, `DeletedAt`, which could be embedded in your models |
|
// type User struct { |
|
// gorm.Model |
|
// } |
|
type Model struct { |
|
ID uint `gorm:"primary_key"` |
|
CreatedAt time.Time |
|
UpdatedAt time.Time |
|
DeletedAt *time.Time `sql:"index"` |
|
}
|
|
|