Home | History | Annotate | Download | only in migrations
      1 UP_SQL = """
      2 ALTER TABLE `afe_hosts` DROP COLUMN `synch_id`;
      3 """
      4 
      5 DOWN_SQL = """
      6 ALTER TABLE `afe_hosts` ADD `synch_id` int(11) default NULL;
      7 """
      8