blob: c2cd752ede630d44dbee9a80c8fa46907940b39a (
plain)
1
2
3
4
5
6
7
8
9
10
|
package mail
import "gorm.io/gorm"
type Alias struct {
gorm.Model
SourceAddress string `gorm:"uniqueIndex;not null" json:"source_address"`
MailboxID uint `gorm:"not null" json:"mailbox_id"`
Mailbox Mailbox `gorm:"foreignKey:MailboxID" json:"mailbox"`
}
|