On 04/08/2013 04:58 AM, Peter Dunkley wrote:
This means you can have multiple active registrars off the same database table and use some external process to manage deletion of records (for example, a stored procedure triggered from a cron job).
Ah, so! I hadn't thought of that. Good suggestion, thank you.
DELETE FROM location WHERE expires >= NOW();
Simple enough.
Cheers