User talk:Kymara: Difference between revisions
Content deleted Content added
imported>Kymara No edit summary |
imported>Kymara No edit summary |
||
Line 1:
== cleanup postman table ==
<source lang="sql">
-- remove messages where the target does not correspond to an existing character name
▲;add indices on target and delivered (combined?)
delete postman from postman
left join characters on character.charname = postman.target
where character.charname is null;
join account on account.username = postman.target
where account.status='banned';
join characters on character.charname = postman.target
join account on account.id = characters.player_id
where account.status='banned';
;remove any uncaught spam?▼
delete from postman
where source = 'Harold'
and length(message)>1000;
</source>
== Quests which ask for a random item to be collected ==
| |||