View Single Post
  #2  
Old Yesterday, 08:13 AM
ajinaniyan
Fire Beetle
 
Join Date: Dec 2025
Location: United states
Posts: 1
Default

This is happening because your database schema doesn’t match the server binary you’re running. You rebuilt the server using the stable 23.10.3 binaries, but your database is missing required bot tables (like bot_data), so the automatic migrations fail and the world server shuts down.

In short: the server expects bot tables that were never created.

The fix is straightforward: re-import the correct base database that includes bots for your server version, or manually load the bot SQL files. The easiest and safest option is to drop the peq database, recreate it, then import the latest PEQ database dump that includes bots, followed by the bots.sql file, and then start the world server again so migrations can complete cleanly. Mixing dev and stable versions without a matching database will always cause this kind of error.

If the database got partially corrupted from repeated failed migrations, repairing it first with a tool like Stellar Repair for MySQL can help before reimporting, but in your case a clean database rebuild is usually enough.
Reply With Quote