• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TFS 0.X clean database

ConAn Edujawa

Member
Joined
Feb 23, 2015
Messages
457
Reaction score
17
how i can clean my mysql database from characters and storage's clean from every thing just keep accounts
 
It's the same answer I always give. This is a question you don't really need to ask in a forum.
If you want to host a server, you should be able to figure stuff out yourself and execute basic SQL queries.
Steps 3-X of this tutorial will help you with that.

Now to your query.
The obvious solution would be to use the DELETE function.
SQL:
DELETE FROM tablename;
But the clean solution would be
SQL:
TRUNCATE TABLE tablename;
 
Back
Top