API: refactor (rename mpwo_api to fittrackee_api)

This commit is contained in:
Sam
2018-06-07 14:15:27 +02:00
parent c314c79f86
commit 1f36de74ba
61 changed files with 52 additions and 52 deletions

View File

@@ -0,0 +1,28 @@
"""empty message
Revision ID: 9f8c9c37da44
Revises: 5a42db64e872
Create Date: 2018-05-30 12:48:11.714627
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '9f8c9c37da44'
down_revision = '5a42db64e872'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('activities', sa.Column('map_id', sa.String(length=50), nullable=True))
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('activities', 'map_id')
# ### end Alembic commands ###