Home | History | Annotate | Download | only in migrations
      1 UP_SQL = """
      2 CREATE INDEX parent_job_id_index ON afe_jobs (parent_job_id);
      3 """
      4 
      5 DOWN_SQL = """
      6 DROP INDEX parent_job_id_index ON afe_jobs;
      7 """
      8 
      9