initial import

This commit is contained in:
ultra
2016-12-05 21:22:44 -05:00
commit 66cc8b6ad5
17 changed files with 581 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
"""added comment_count column
Revision ID: e07ebf603ff2
Revises: 131d925693a4
Create Date: 2016-12-05 19:49:45.783201
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'e07ebf603ff2'
down_revision = '131d925693a4'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('found_items', sa.Column('comment_count', sa.Integer(), nullable=True))
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('found_items', 'comment_count')
# ### end Alembic commands ###