package
Version:
v0.0.0-...-b31642b
Opens a new window with list of versions in this module.
Published: Aug 21, 2019
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Label struct {
gorm.Model
Name string `gorm:"type:varchar(64);not null"`
Description string `gorm:"size:255"`
Color string
Priority uint `gorm:"not null"`
}
type Task struct {
gorm.Model
Name string `gorm:"not null"`
Description string `gorm:"size:255"`
DueDate time.Time `gorm:"not null"`
Labels []Label `gorm:"many2many:task_labels"`
Priority float32 `gorm:"-"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.