Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions migrations/versions/64081c5f2989_.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ###


Expand All @@ -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 ###