Home | History | Annotate | Download | only in migrations
      1 UP_SQL = """
      2 CREATE TABLE afe_host_queue_entry_start_times (
      3     id INT NOT NULL AUTO_INCREMENT,
      4     insert_time TIMESTAMP NOT NULL,
      5     highest_hqe_id INT NOT NULL,
      6     PRIMARY KEY (id),
      7     INDEX afe_hqe_insert_times_index (insert_time)
      8 );
      9 """
     10 
     11 DOWN_SQL = """
     12 DROP TABLE afe_host_queue_entry_start_times;
     13 """
     14