Updating Minefaconomy
0.4 to 0.5 or above
Due to EbeanServer not executing SqlStatments, you have to Alter the tables by your own, I'm still working on a fix for this, but until it's fixed you can simply update the tables by your own. Here a Howto for SqlLite:
1. Stop the Server
2. Go to your SqlEditor choose Minefaconomy Database and execute this:
ALTER TABLE 'minefaconomy' RENAME TO 'minefaconomyold';
3. Restart the Server and let it install the the new tables. 4. Go back to your SqlEditor choose Minefaconomy Database and execute this:
INSERT INTO 'minefaconomy' SELECT * FROM 'minefaconomyold';
5. Get your time in millies (webcalculator), and execute this in your Database:
UPDATE 'minefaconomy' SET lastSeen = //paste your time here//, continousDays = 1;
6. And finished!
Comments