project_role.go 210 B

123456789101112131415161718
  1. package models
  2. import (
  3. "gorm.io/gorm"
  4. )
  5. type ProjectRole struct {
  6. gorm.Model
  7. ProjectID uint
  8. PolicyID uint
  9. UniqueID string `gorm:"unique"`
  10. Name string
  11. Users []User `gorm:"many2many:user_roles"`
  12. }