You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
657 B
28 lines
657 B
"""add n_comments |
|
|
|
Revision ID: 865bf933ea82 |
|
Revises: 9ac8682d438c |
|
Create Date: 2021-12-24 20:21:53.928842 |
|
|
|
""" |
|
from alembic import op |
|
import sqlalchemy as sa |
|
|
|
|
|
# revision identifiers, used by Alembic. |
|
revision = '865bf933ea82' |
|
down_revision = '9ac8682d438c' |
|
branch_labels = None |
|
depends_on = None |
|
|
|
|
|
def upgrade(): |
|
# ### commands auto generated by Alembic - please adjust! ### |
|
op.add_column('post', sa.Column('n_comments', sa.Integer(), nullable=True)) |
|
# ### end Alembic commands ### |
|
|
|
|
|
def downgrade(): |
|
# ### commands auto generated by Alembic - please adjust! ### |
|
op.drop_column('post', 'n_comments') |
|
# ### end Alembic commands ###
|
|
|