Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
2876118ee7
2 changed files with 13 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
||||||
package models
|
package models
|
||||||
|
|
||||||
type Contest struct {
|
type Contest struct {
|
||||||
Id *int `db:"id"`
|
Id *int `db:"id"`
|
||||||
Name *string `db:"name"`
|
Name *string `db:"name"`
|
||||||
//CreatedAt time.Time `db:"created_at"` FIXME
|
CreatedAt *time.Time `db:"created_at"`
|
||||||
//UpdatedAt time.Time `db:"updated_at"` FIXME
|
UpdatedAt *time.Time `db:"updated_at"`
|
||||||
}
|
}
|
||||||
|
|
9
internal/models/task.go
Normal file
9
internal/models/task.go
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
package models
|
||||||
|
|
||||||
|
type Task struct {
|
||||||
|
Id *int32 `db:"id"`
|
||||||
|
ContestId *int32 `db:"contest_id"`
|
||||||
|
ProblemId *int32 `db:"problem_id"`
|
||||||
|
Position *int32 `db:"position"`
|
||||||
|
PositionName *string `db:"position_name"`
|
||||||
|
}
|
Loading…
Reference in a new issue