mirror of
https://github.com/sigmasternchen/threadule
synced 2025-03-15 08:09:01 +00:00
mysql doesn't support uuid as a type
This commit is contained in:
parent
29333173dd
commit
085caf97f4
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ import (
|
|||
)
|
||||
|
||||
type BaseModel struct {
|
||||
ID uuid.UUID `gorm:"type:uuid;primary_key;"`
|
||||
ID uuid.UUID `gorm:"type:char(36);primary_key;"`
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
DeletedAt gorm.DeletedAt `gorm:"index"`
|
||||
|
|
Loading…
Reference in a new issue