Revocations?

Hello, after 6 years of running my TS server using sqlite I moved and converted my database to MySQL; conversion went fine and the server is working, however I noticed that the revocations table holds ~13K rows. Can I clean this?

Yes, you can use any SQL database editing program, then run the command: DELETE * FROM revocations and that would clean it. It won’t disrupt the server, it will be even better because the database size would reduce.