When one uses \"ALTER TABLE tab ADD col\", the new column gets added to the end of the table. For example:
TABLE: TAB COL_1 COL_2 COL_4 ALTER TABLE TAB ADD
It works.
ALTER TABLE tablename ADD columnname datatype AFTER columnname;