mirror of https://github.com/statping/statping
17 lines
557 B
Go
17 lines
557 B
Go
![]() |
package groups
|
||
|
|
||
|
import (
|
||
|
"github.com/hunterlong/statping/types/null"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// Group is the main struct for Groups
|
||
|
type Group struct {
|
||
|
Id int64 `gorm:"primary_key;column:id" json:"id"`
|
||
|
Name string `gorm:"column:name" json:"name"`
|
||
|
Public null.NullBool `gorm:"default:true;column:public" json:"public"`
|
||
|
Order int `gorm:"default:0;column:order_id" json:"order_id"`
|
||
|
CreatedAt time.Time `gorm:"column:created_at" json:"created_at"`
|
||
|
UpdatedAt time.Time `gorm:"column:updated_at" json:"updated_at"`
|
||
|
}
|