6 lines
268 B
MySQL
6 lines
268 B
MySQL
|
UPDATE (player) SET name = REPLACE(name, '"', '');
|
||
|
UPDATE (clan) SET name = REPLACE(name, '"', '');
|
||
|
UPDATE (account) SET name = REPLACE(name, '"', '');
|
||
|
UPDATE (clan_map_marker) SET label = REPLACE(label, '"', '');
|
||
|
UPDATE (territory) SET name = REPLACE(name, '"', '');
|