mirror of
https://github.com/Jinnrry/PMail.git
synced 2025-02-20 11:43:09 +08:00
11 lines
224 B
Go
11 lines
224 B
Go
package models
|
|
|
|
type Version struct {
|
|
Id int `xorm:"id int unsigned not null pk autoincr" json:"id"`
|
|
Info string `xorm:"varchar(255) notnull" json:"info"`
|
|
}
|
|
|
|
func (p *Version) TableName() string {
|
|
return "version"
|
|
}
|