Skip to content

Commit

Permalink
alembic added
Browse files Browse the repository at this point in the history
  • Loading branch information
DRIESASTER authored and xerbalind committed Mar 11, 2024
1 parent c5bd3b5 commit 6cee923
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions backend/alembic/versions/3756e9987aa1_recreate_tables.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"""Recreate tables
Revision ID: 3756e9987aa1
Revises: 2cc559f8470c
Create Date: 2024-03-11 16:40:14.053191
"""
from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision: str = '3756e9987aa1'
down_revision: Union[str, None] = '2cc559f8470c'
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! ###
pass
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###

0 comments on commit 6cee923

Please sign in to comment.