ALTER TABLE table_nameTo add the column after an specific existing column add:
ADD column_name datatype (eg. tinytext)
AFTER existing_columnTo add multiple columns with the same statement a number of ADD commands can be chained together and separated with commas:
ALTER TABLE table_name
ADD social_url_twitter tinytext,
ADD social_url_facebook tinytext,
ADD social_url_blogger tinytext