veloren/server/src/migrations/V18__rename_npcweapons.sql
Ben Wallis 1de94a9979 * Replaced diesel with rusqlite and refinery
* Added "migration of migrations" to transfer the data from the __diesel_schema_migrations table to the refinery_schema_history table
* Removed all down migrations as refinery does not support down migrations
* Changed all diesel up migrations to refinery naming format
* Added --sql-log-mode parameter to veloren-server-cli to allow SQL tracing and profiling
* Added /disconnect_all_players admin command
* Added disconnectall CLI command
* Fixes for several potential persistence-related race conditions
2021-04-13 22:05:47 +00:00

6 lines
367 B
SQL

-- Changes filepaths of npcweapons
UPDATE item
SET item_definition_id = 'common.items.npc_weapons.unique.beast_claws' WHERE item_definition_id = 'common.items.npc_weapons.npcweapon.beast_claws';
UPDATE item
SET item_definition_id = 'common.items.npc_weapons.unique.stone_golems_fist' WHERE item_definition_id = 'common.items.npc_weapons.npcweapon.stone_golems_fist';