-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodels.go
62 lines (55 loc) · 1.94 KB
/
models.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2020
// With love
// 42nd Studio
// 2020-2021
package main
import (
"github.com/jinzhu/gorm"
//I&I justify it
_ "github.com/jinzhu/gorm/dialects/mysql"
)
// BingoGame es un evento de bingo el cual tiene muchos tableros asociados
type BingoGame struct {
gorm.Model
BingoID string `gorm:"index;unique;not null"`
Name string `gorm:"not null"`
CurrentMode string `gorm:"null"`
BoardsSold int `gorm:"not null" sql:"DEFAULT:0"`
Password string `gorm:"not null"`
AcceptingOrganizers bool `gorm:"not null"`
Playing bool `gorm:"null"`
DrawnBalots string `gorm:"null"`
UniqueBoards bool `gorm:"null"` //If true, there will be no repeated boards
IdentifierType string `gorm:"null"` // str vs num
boards []BingoBoard `gorm:"-"`
}
// BingoOrganizer es un organizador del bingo
type BingoOrganizer struct {
gorm.Model
BingoID string `gorm:"index;not null"` // A que bingo tiene acceso
Name string `gorm:"not null"`
TelegramID string `gorm:"index;not null"`
BoardsSold int `gorm:"null"`
}
// BingoBoard es un evento de bingo el cual tiene muchos tableros asociados
type BingoBoard struct {
gorm.Model
BingoID string `gorm:"index;not null"`
BoardID string `gorm:"not null"`
Name string `gorm:"null"`
GamesWon int `gorm:"null"`
GamesWonIds string `gorm:"null"`
Sold bool `gorm:"null"`
BoardHash string `gorm:"null"` // Used to detect repeated boards (for Unique Bingo Mode)
slots []BingoSlot `gorm:"-"`
}
// BingoSlot es una casilla de un tablero
type BingoSlot struct {
gorm.Model
BingoID string `gorm:"index;not null"`
BoardID string `gorm:"index;not null"`
Letter string `gorm:"not null"`
Number int `gorm:"not null"`
Y int `gorm:"not null"`
Marked bool `gorm:"null"`
}