If you use mySQL 4, this is the proper syntax for the SQL alter command (1 of 3 in commands in the sql file):

ALTER TABLE `orders` ADD `reminder_sent` TINYINT(1) NOT NULL default '0' AFTER `orders_status` ;

file is the revised sql.

More...