[DiscordArchive] are there intemediary commits I need to checkout / build / restart to first?
[DiscordArchive] are there intemediary commits I need to checkout / build / restart to first?
Archived author: MrCeeJ • Posted: 2023-02-05T16:51:50.663000+00:00
Original source
are there intemediary commits I need to checkout / build / restart to first?
Archived author: Nyeriah • Posted: 2023-02-05T16:52:39.085000+00:00
Original source
hm yeah
Archived author: Nyeriah • Posted: 2023-02-05T16:53:54.503000+00:00
Original source
but at this point the safer route would be to just drop your database and allow the server to repopulate it.
Alternatively, you'll have to browse <#316952484566532107> for the releases you skipped and perform the checkout for each of them
Archived author: MrCeeJ • Posted: 2023-02-05T16:54:20.421000+00:00
Original source
if I do that is there anyway of restroing the data from the original server from yesterday?
Archived author: MrCeeJ • Posted: 2023-02-05T16:54:31.361000+00:00
Original source
or am I just going to have to wipe everything?
Archived author: Nyeriah • Posted: 2023-02-05T16:54:50.241000+00:00
Original source
you can backup your data
Archived author: MrCeeJ • Posted: 2023-02-05T16:55:00.137000+00:00
Original source
I backed it up before I started the upgrade
Archived author: MrCeeJ • Posted: 2023-02-05T16:55:15.102000+00:00
Original source
but how can I re-import it if the schema has changed 3 or 4 times?
Archived author: Foe • Posted: 2023-02-05T16:55:50.542000+00:00
Original source
run this in your character db
```SQL
DROP TABLE IF EXISTS `character_entry_point`;
CREATE TABLE IF NOT EXISTS `character_entry_point` (
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`joinX` float NOT NULL DEFAULT '0',
`joinY` float NOT NULL DEFAULT '0',
`joinZ` float NOT NULL DEFAULT '0',
`joinO` float NOT NULL DEFAULT '0',
`joinMapId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
`taxiPath0` int unsigned NOT NULL DEFAULT '0',
`taxiPath1` int unsigned NOT NULL DEFAULT '0',
`mountSpell` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';```
Archived author: Foe • Posted: 2023-02-05T16:56:16.544000+00:00
Original source
then start the core and see what the next breaking thing is