View Single Post
  #5  
Old 10-25-2004, 09:01 PM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

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';
Reply With Quote