init: 初始化项目
This commit is contained in:
14
internal/release/model.go
Normal file
14
internal/release/model.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package release
|
||||
|
||||
import "time"
|
||||
|
||||
type Release struct {
|
||||
ID uint `gorm:"primaryKey"`
|
||||
AppID string `gorm:"not null"`
|
||||
Version string `gorm:"not null"`
|
||||
Notes string
|
||||
Channel string
|
||||
PubDate time.Time
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
Reference in New Issue
Block a user