From 735c08233e8c9aed5f7fd253e793f5c45c193465 Mon Sep 17 00:00:00 2001 From: Mubangizi Allan Date: Mon, 1 Sep 2025 15:18:44 +0300 Subject: [PATCH] fix migration heads --- migrations/versions/64081c5f2989_.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/migrations/versions/64081c5f2989_.py b/migrations/versions/64081c5f2989_.py index 505458e3..9cbce67f 100644 --- a/migrations/versions/64081c5f2989_.py +++ b/migrations/versions/64081c5f2989_.py @@ -11,17 +11,20 @@ # revision identifiers, used by Alembic. revision = '64081c5f2989' -down_revision = 'a49047414055' +down_revision = '6478d31e8708' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### - op.add_column('project', sa.Column('updated_at', sa.DateTime(), nullable=True)) - op.add_column('project_tag', sa.Column('updated_at', sa.DateTime(), nullable=True)) + op.add_column('project', sa.Column( + 'updated_at', sa.DateTime(), nullable=True)) + op.add_column('project_tag', sa.Column( + 'updated_at', sa.DateTime(), nullable=True)) op.add_column('tag', sa.Column('updated_at', sa.DateTime(), nullable=True)) - op.add_column('tag_followers', sa.Column('updated_at', sa.DateTime(), nullable=True)) + op.add_column('tag_followers', sa.Column( + 'updated_at', sa.DateTime(), nullable=True)) # ### end Alembic commands ### @@ -31,5 +34,5 @@ def downgrade(): op.drop_column('tag', 'updated_at') op.drop_column('project_tag', 'updated_at') op.drop_column('project', 'updated_at') - + # ### end Alembic commands ###