Home | History | Annotate | Download | only in migrations
      1 UP_SQL = """
      2 ALTER TABLE afe_autotests ADD COLUMN test_retry integer NOT NULL DEFAULT '0';
      3 """
      4 
      5 DOWN_SQL = """
      6 ALTER TABLE afe_autotests DROP COLUMN test_retry;
      7 """
      8