You can do it by hand via phpMyAdmin or any other web interface. You can also use SQL queries through PHP if you really want to.
This is better in the Database section rather than coding since you want to add columns, not data.
But the basic syntax would be:
ALTER TABLE table_name ADD field_name column_properties;
~Brett