[sql]ALTER TABLE `user` ADD `awaystatus` INT( 1 ) UNSIGNED DEFAULT '0' NOT NULL ,
ADD `awaymessage` VARCHAR( 200 ) NOT NULL ,
ADD `awaysince` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL
[/sql]
You are not editing files, but a table in your database. You are probably using a table prefix, thus the table named 'user' will be named something like 'prefix_user'.
To find your table prefix look in the bottom of your includes/config.php file.
For more information on how to run a query, click the link "How to run a query" above the sql-statement in my post.
|