Files
houston-be/entity/alerts.go
Shubham Kirve b974cb6bf3 TP-0000 | Initialize houston repo (#1)
* TP-0000 | intialize houston repo

* TP-0000 | intialize houston repo
2023-03-29 00:01:17 +05:30

17 lines
216 B
Go

package entity
import "gorm.io/gorm"
type AlertsEntity struct {
gorm.Model
Name string
Team string
Service string
Status bool
Version int
}
func (AlertsEntity) TableName() string {
return "alerts"
}