probo/pkg/models/tag.go

15 lines
214 B
Go
Raw Normal View History

2023-10-02 12:55:03 +02:00
package models
2023-10-28 20:50:06 +02:00
import (
"time"
"gorm.io/gorm"
)
2023-10-02 12:55:03 +02:00
type Tag struct {
2023-10-28 20:50:06 +02:00
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt gorm.DeletedAt `gorm:"index"`
Name string `json:"name" gorm:"primaryKey"`
2023-10-02 12:55:03 +02:00
}