Skip to content

Commit

Permalink
[Bug Fix] Bot Spell Entries Column Fix (#182)
Browse files Browse the repository at this point in the history
* [Bug FIx] Bot Spell Entries Column Fix

# Description
- Bot spell entries had their column name changed from `spellid` to `spell_id` which broke them.
- Adds `spell_buckets`, `guild_bank`, and `buyer` to `ignore_tables`.
- Fixes `db-relationships.yml` for column name change.

* Release
  • Loading branch information
Kinglykrab authored Sep 8, 2024
1 parent 7b3c399 commit 4905e79
Show file tree
Hide file tree
Showing 85 changed files with 39,899 additions and 23,656 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [4.9.2] 9/7/2024

* **Bot Spell Entries** Fixes an issue where a column was renamed from `spellid` to `spell_id`, causing the bot spell editor to quit working.

## [4.9.1] 7/17/2024

* **File Watchers** Add more resiliency to file watchers to prevent crashes
Expand Down
6 changes: 6 additions & 0 deletions boot/inject_http_crud_controllers.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ var httpCrudControllerSet = wire.NewSet(
crudcontrollers.NewNpcTypesTintController,
crudcontrollers.NewObjectContentController,
crudcontrollers.NewObjectController,
crudcontrollers.NewParcelController,
crudcontrollers.NewParcelMerchantController,
crudcontrollers.NewPerlEventExportSettingController,
crudcontrollers.NewPetController,
crudcontrollers.NewPetitionController,
Expand Down Expand Up @@ -392,6 +394,8 @@ func provideCrudControllers(
npcTypesTintController *crudcontrollers.NpcTypesTintController,
objectContentController *crudcontrollers.ObjectContentController,
objectController *crudcontrollers.ObjectController,
parcelController *crudcontrollers.ParcelController,
parcelMerchantController *crudcontrollers.ParcelMerchantController,
perlEventExportSettingController *crudcontrollers.PerlEventExportSettingController,
petController *crudcontrollers.PetController,
petitionController *crudcontrollers.PetitionController,
Expand Down Expand Up @@ -609,6 +613,8 @@ func provideCrudControllers(
npcTypesTintController,
objectContentController,
objectController,
parcelController,
parcelMerchantController,
perlEventExportSettingController,
petController,
petitionController,
Expand Down
4 changes: 3 additions & 1 deletion boot/wire_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4905e79

Please sign in to comment.