mirror of
https://github.com/0x2E/fusion.git
synced 2025-06-08 05:27:15 +09:00
16 lines
288 B
Go
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"`
|
|
}
|