23 lines
414 B
Python
23 lines
414 B
Python
|
"""add NSFW score
|
||
|
|
||
|
Revision ID: 7e246705da6a
|
||
|
Revises: 0cd36ecdd937
|
||
|
Create Date: 2017-10-27 03:07:48.179290
|
||
|
|
||
|
"""
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '7e246705da6a'
|
||
|
down_revision = '0cd36ecdd937'
|
||
|
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
op.add_column('file', sa.Column('nsfw_score', sa.Float(), nullable=True))
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
op.drop_column('file', 'nsfw_score')
|