15 lines
330 B
Go
15 lines
330 B
Go
package models
|
|
|
|
import "github.com/uptrace/bun"
|
|
|
|
type AutoRoleMsg struct {
|
|
bun.BaseModel `bun:"table:auto_role_msg"`
|
|
|
|
GuildId int `bun:"guild_id,pk"`
|
|
MessageId string `bun:"message_id,pk"`
|
|
RoleId string `bun:"role_id,notnull"`
|
|
Emoji string `bun:"emoji"`
|
|
|
|
Guild *Guild `bun:"belongs-to:guild,join:guild_id=id"`
|
|
}
|