1UP_SQL = """ 2CREATE 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 11DOWN_SQL = """ 12DROP TABLE afe_host_queue_entry_start_times; 13""" 14