From f11595a13c72e11e98f80494c8211054f76c5f0c Mon Sep 17 00:00:00 2001 From: "Ed (ODSC)" Date: Tue, 17 Jan 2023 15:25:55 +0000 Subject: [PATCH] Fix alembic two heads issue --- .../864375812164_merging_two_heads.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 migrations/versions/864375812164_merging_two_heads.py diff --git a/migrations/versions/864375812164_merging_two_heads.py b/migrations/versions/864375812164_merging_two_heads.py new file mode 100644 index 00000000..071dcd65 --- /dev/null +++ b/migrations/versions/864375812164_merging_two_heads.py @@ -0,0 +1,24 @@ +"""merging two heads + +Revision ID: 864375812164 +Revises: c6fe2cf16adb, 3daa1d4ab046 +Create Date: 2022-12-13 17:03:56.861063 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = '864375812164' +down_revision = ('c6fe2cf16adb', '3daa1d4ab046') +branch_labels = None +depends_on = None + + +def upgrade(): + pass + + +def downgrade(): + pass