Quote:
Originally Posted by Me!
go into your PHP myadmin click on "SQL" tab then in the empty box that you can type in place
Code:
ALTER TABLE post ADD proxyip VARCHAR(16) not null AFTER ipaddress;
in the box and hit the submit button. That will alter the table for you.
|
Sorry, I haven't updated the file so far. The Query should be
Code:
ALTER TABLE post ADD proxyip VARCHAR(50) not null AFTER ipaddress;
To change this from VARCHAR(16) to VARCHAR(50) run the following query:
Code:
ALTER TABLE post CHANGE proxyip proxyip VARCHAR(50) NOT NULL