log_entry table

It seems mostly useless. Just keeps track of playerIDs and the first time they logged on? There are like 30k entries.

Can I just delete all the entries or are they actually used for anything important?

To be safe for now I have just done this for cleanup:
Code:
DELETE FROM log_entry WHERE created < now() - INTERVAL 14 DAY;

Yeah, you can just truncate it if you like. Its simply there to log who logs in and out of the server. Great for assisting an admin in IDing players who log in.
 
Back
Top