1
0
Fork 0
forked from 0x2E/fusion
fusion/model/group.go
2024-03-06 16:54:13 +08:00

16 lines
288 B
Go

package model
import (
"time"
"gorm.io/plugin/soft_delete"
)
type Group struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt soft_delete.DeletedAt `gorm:"uniqueIndex:idx_name"`
Name *string `gorm:"name;not null;uniqueIndex:idx_name"`
}