working
This commit is contained in:
BIN
FitnessSync/backend/alembic/__pycache__/env.cpython-311.pyc
Normal file
BIN
FitnessSync/backend/alembic/__pycache__/env.cpython-311.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,30 @@
|
||||
"""add_fitbit_redirect_uri
|
||||
|
||||
Revision ID: b5a6d7ef97a5
|
||||
Revises: 299d39b0f13d
|
||||
Create Date: 2026-01-01 00:15:13.805893
|
||||
|
||||
"""
|
||||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = 'b5a6d7ef97a5'
|
||||
down_revision: Union[str, None] = '299d39b0f13d'
|
||||
branch_labels: Union[str, Sequence[str], None] = None
|
||||
depends_on: Union[str, Sequence[str], None] = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('configurations', sa.Column('fitbit_redirect_uri', sa.String(), nullable=True))
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('configurations', 'fitbit_redirect_uri')
|
||||
# ### end Alembic commands ###
|
||||
Reference in New Issue
Block a user