Skip to content

Commit

Permalink
Create Alembic migration for fct metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
ejamet73 committed Oct 18, 2024
1 parent 7d2aef5 commit 9fb7613
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions backend/alembic/versions/c32d65d6e6fd_create_fct_metrics.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"""create fct metrics
Revision ID: c32d65d6e6fd
Revises: 06bb3c26076f
Create Date: 2024-10-18 11:13:02.468934
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'c32d65d6e6fd'
down_revision = '06bb3c26076f'
branch_labels = None
depends_on = None


def upgrade() -> None:
pass


def downgrade() -> None:
pass

0 comments on commit 9fb7613

Please sign in to comment.