6 lines
268 B
SQL
6 lines
268 B
SQL
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, '"', '');
|