mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 11:26:56 -08:00
remove avg comment length experiment
This commit is contained in:
parent
dee81cca8f
commit
71ed6fc7af
1 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
|||
"""remove avg comment length
|
||||
|
||||
Revision ID: a32b474a40dd
|
||||
Revises: e76f2067e689
|
||||
Create Date: 2024-05-23 15:24:12.575063
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'a32b474a40dd'
|
||||
down_revision = 'e76f2067e689'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
with op.batch_alter_table('user', schema=None) as batch_op:
|
||||
batch_op.drop_column('average_comment_length')
|
||||
batch_op.drop_column('comment_length_warning')
|
||||
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
with op.batch_alter_table('user', schema=None) as batch_op:
|
||||
batch_op.add_column(sa.Column('comment_length_warning', sa.INTEGER(), autoincrement=False, nullable=True))
|
||||
batch_op.add_column(sa.Column('average_comment_length', sa.INTEGER(), autoincrement=False, nullable=True))
|
||||
|
||||
# ### end Alembic commands ###
|
Loading…
Reference in a new issue