2018-05-17 18:35:53 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// Connection model
|
|
|
|
type Connection struct {
|
|
|
|
ID int `gorm:"primary_key"`
|
2018-05-28 18:16:13 +03:00
|
|
|
ClientID string `gorm:"client_id type:varchar(70);not null;unique" json:"clientId,omitempty"`
|
|
|
|
APIKEY string `gorm:"api_key type:varchar(100);not null;unique" json:"api_key,omitempty"`
|
|
|
|
APIURL string `gorm:"api_url type:varchar(100);not null;unique" json:"api_url,omitempty"`
|
|
|
|
MGURL string `gorm:"mg_url type:varchar(100);unique" json:"mg_url,omitempty"`
|
|
|
|
MGToken string `gorm:"mg_token type:varchar(100)" json:"mg_token,omitempty"`
|
2018-05-17 18:35:53 +03:00
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
2018-05-28 18:16:13 +03:00
|
|
|
Active bool `json:"active,omitempty"`
|
|
|
|
Bots []Bot `gorm:"foreignkey:ConnectionID"`
|
2018-05-17 18:35:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bot model
|
|
|
|
type Bot struct {
|
2018-05-28 18:16:13 +03:00
|
|
|
ID int `gorm:"primary_key"`
|
|
|
|
ConnectionID int `gorm:"connection_id" json:"connectionId,omitempty"`
|
|
|
|
Channel uint64 `json:"channel,omitempty"`
|
|
|
|
Token string `gorm:"token type:varchar(100);not null;unique" json:"token,omitempty"`
|
|
|
|
Name string `gorm:"name type:varchar(40)" json:"name,omitempty"`
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
Active bool `json:"active,omitempty"`
|
2018-05-17 18:35:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//Bots list
|
|
|
|
type Bots []Bot
|