update
parent
601e596980
commit
2f27f72450
|
@ -0,0 +1,24 @@
|
||||||
|
package calendar
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
|
type Calendar struct {
|
||||||
|
ID uint `gorm:"primaryKey"`
|
||||||
|
|
||||||
|
CreatedAt time.Time
|
||||||
|
UpdatedAt time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
type EventGroup struct {
|
||||||
|
ID uint `gorm:"primaryKey"`
|
||||||
|
|
||||||
|
CreatedAt time.Time
|
||||||
|
UpdatedAt time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
type Event struct {
|
||||||
|
ID uint `gorm:"primaryKey"`
|
||||||
|
|
||||||
|
CreatedAt time.Time
|
||||||
|
UpdatedAt time.Time
|
||||||
|
}
|
Loading…
Reference in New Issue