mysql doesn't support uuid as a type

This commit is contained in:
overflowerror 2021-08-14 15:04:51 +02:00
parent 29333173dd
commit 085caf97f4

View file

@ -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"`