Merge branch 'feature/festa' into merge/feature/festa

This commit is contained in:
wish
2022-08-12 00:41:32 +10:00
committed by GitHub
5 changed files with 574 additions and 91 deletions

View File

@@ -12,6 +12,7 @@ type GuildMember struct {
GuildID uint32 `db:"guild_id"`
CharID uint32 `db:"character_id"`
JoinedAt *time.Time `db:"joined_at"`
Souls uint32 `db:"souls"`
Name string `db:"name"`
IsApplicant bool `db:"is_applicant"`
OrderIndex uint8 `db:"order_index"`
@@ -48,6 +49,7 @@ const guildMembersSelectSQL = `
SELECT
g.id as guild_id,
joined_at,
souls,
c.name,
character.character_id,
coalesce(gc.order_index, 0) as order_index,