1
0
Fork 0
forked from mia/0x0

Add NSFW detection

This commit is contained in:
Martin Herkt 2017-10-27 05:22:11 +02:00
parent def5d9802f
commit 7bbeb2d144
No known key found for this signature in database
GPG key ID: C24B9CD04DC6AE7F
7 changed files with 3666 additions and 10 deletions

View file

@ -0,0 +1,26 @@
"""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():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('file', sa.Column('nsfw_score', sa.Float(), nullable=True))
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('file', 'nsfw_score')
# ### end Alembic commands ###