Files
cybertron/models/db/roles.go
Varnit Goyal f75297880d TP-55555 | crud ingestor (#2)
* TP-55555 | crud ingestor

* TP-55555 | Project handler (#4)

---------

Co-authored-by: Lokesh Dugar <lokesh.dugar@navi.com>
2024-07-24 12:51:37 +05:30

10 lines
164 B
Go

package db
import "gorm.io/gorm"
type Roles struct {
gorm.Model
ProjectReferenceId string `gorm:"primaryKey"`
Role string `gorm:"column:name"`
}