Align SCUM operations with reference tools
This commit is contained in:
@@ -14,7 +14,7 @@ type GameGiftCatalog struct {
|
||||
UpdatedAt time.Time `json:"updatedAt" db:"updated_at"`
|
||||
}
|
||||
|
||||
func (GameGiftCatalog) TableName() string { return "game_gift_catalogs" }
|
||||
func (GameGiftCatalog) TableName() string { return "scum_gift_catalogs" }
|
||||
|
||||
// GameGiftRevision is an immutable gift item snapshot.
|
||||
type GameGiftRevision struct {
|
||||
@@ -27,7 +27,7 @@ type GameGiftRevision struct {
|
||||
PublishedAt time.Time `json:"publishedAt" db:"published_at"`
|
||||
}
|
||||
|
||||
func (GameGiftRevision) TableName() string { return "game_gift_revisions" }
|
||||
func (GameGiftRevision) TableName() string { return "scum_gift_revisions" }
|
||||
|
||||
// GameGiftGrant records a directed frozen gift lifecycle without raw game commands.
|
||||
type GameGiftGrant struct {
|
||||
@@ -42,4 +42,4 @@ type GameGiftGrant struct {
|
||||
UpdatedAt time.Time `json:"updatedAt" db:"updated_at"`
|
||||
}
|
||||
|
||||
func (GameGiftGrant) TableName() string { return "game_gift_grants" }
|
||||
func (GameGiftGrant) TableName() string { return "scum_gift_grants" }
|
||||
|
||||
Reference in New Issue
Block a user