Quote:
Originally Posted by Marratook
Where does this setting stores?
|
The user's status is stored in the 'status' column of the account table. Using MySQL, to see the status of all the accounts in your database, do:
Code:
select name,status from account ;
or you can do it for just one account:
Code:
select name,status from account where name='someusername';
You can change the status in MySQL as well, e.g.:
Code:
update account set status=250 where name='someusername';