Repository: incubator-airflow Updated Branches: refs/heads/master 6b2a3ca2e -> 15f1abef2
[AIRFLOW-810] Correct down_revision dag_id/state index creation Due to revert the revision were not correct anymore and an unclean build environment would still consider it for alembic migrations. Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/15f1abef Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/15f1abef Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/15f1abef Branch: refs/heads/master Commit: 15f1abef288411539b512f6bdb572c4a54aa5447 Parents: 6b2a3ca Author: Bolke de Bruin <[email protected]> Authored: Thu Jan 26 13:57:55 2017 +0100 Committer: Bolke de Bruin <[email protected]> Committed: Thu Jan 26 13:57:55 2017 +0100 ---------------------------------------------------------------------- .../127d2bf2dfa7_add_dag_id_state_index_on_dag_run_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/15f1abef/airflow/migrations/versions/127d2bf2dfa7_add_dag_id_state_index_on_dag_run_table.py ---------------------------------------------------------------------- diff --git a/airflow/migrations/versions/127d2bf2dfa7_add_dag_id_state_index_on_dag_run_table.py b/airflow/migrations/versions/127d2bf2dfa7_add_dag_id_state_index_on_dag_run_table.py index c500966..a456daa 100644 --- a/airflow/migrations/versions/127d2bf2dfa7_add_dag_id_state_index_on_dag_run_table.py +++ b/airflow/migrations/versions/127d2bf2dfa7_add_dag_id_state_index_on_dag_run_table.py @@ -14,14 +14,14 @@ """Add dag_id/state index on dag_run table Revision ID: 127d2bf2dfa7 -Revises: 1a5a9e6bf2b5 +Revises: 5e7d17757c7a Create Date: 2017-01-25 11:43:51.635667 """ # revision identifiers, used by Alembic. revision = '127d2bf2dfa7' -down_revision = '1a5a9e6bf2b5' +down_revision = '5e7d17757c7a' branch_labels = None depends_on = None
