-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70e7cbf
commit 4fa8c05
Showing
4 changed files
with
116 additions
and
328 deletions.
There are no files selected for viewing
85 changes: 0 additions & 85 deletions
85
apps/data_handler/migrations/versions/163f616930fb_migration_for_.py
This file was deleted.
Oops, something went wrong.
243 changes: 0 additions & 243 deletions
243
apps/data_handler/migrations/versions/80e10a0a5974_interest_rate_and_bearing_mint.py
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
apps/data_handler/migrations/versions/a863d4cbc069_nostra_events.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"""nostra events | ||
Revision ID: a863d4cbc069 | ||
Revises: d3691f6e8c5a | ||
Create Date: 2024-11-27 11:47:08.452320 | ||
""" | ||
from typing import Sequence, Union | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision: str = 'a863d4cbc069' | ||
down_revision: Union[str, None] = 'd3691f6e8c5a' | ||
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 ### |
Oops, something went wrong.