Skip to content

Commit

Permalink
fix: rebase migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
zurdi15 committed Jan 31, 2025
1 parent 9d96501 commit 3a4c06f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion backend/alembic/versions/0030_screenscraper_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""screenscraper
Revision ID: bb063fb5083d
Revision ID: 0030_screenscraper_data
Revises: 0029_platforms_custom_name
Create Date: 2025-01-02 18:58:55.557123
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
"""Change empty string in users.email to NULL.
Revision ID: 951473b0c581
Revises: 0029_platforms_custom_name
Revision ID: 0031_user_email_null
Revises: 0030_screenscraper_data
Create Date: 2025-01-14 01:30:39.696257
"""

from alembic import op

# revision identifiers, used by Alembic.
revision = "0030_user_email_null"
down_revision = "0029_platforms_custom_name"
revision = "0031_user_email_null"
down_revision = "0030_screenscraper_data"
branch_labels = None
depends_on = None

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""empty message
Revision ID: 0031_datetime_to_timestamp
Revises: 0030_user_email_null
Revision ID: 0032_datetime_to_timestamp
Revises: 0031_user_email_null
Create Date: 2025-01-14 04:13:33.209508
"""
Expand All @@ -11,8 +11,8 @@
from sqlalchemy.dialects import mysql

# revision identifiers, used by Alembic.
revision = "0031_datetime_to_timestamp"
down_revision = "0030_user_email_null"
revision = "0032_datetime_to_timestamp"
down_revision = "0031_user_email_null"
branch_labels = None
depends_on = None

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""empty message
Revision ID: 0032_longer_fs_fields
Revises: 0031_datetime_to_timestamp
Revision ID: 0033_longer_fs_fields
Revises: 0032_datetime_to_timestamp
Create Date: 2025-01-24 02:18:30.069263
"""
Expand All @@ -11,8 +11,8 @@
from sqlalchemy.dialects import mysql

# revision identifiers, used by Alembic.
revision = "0032_longer_fs_fields"
down_revision = "0031_datetime_to_timestamp"
revision = "0033_longer_fs_fields"
down_revision = "0032_datetime_to_timestamp"
branch_labels = None
depends_on = None

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""empty message
Revision ID: 0033_rom_file_and_hashes
Revises: 0032_longer_fs_fields
Revision ID: 0034_rom_file_and_hashes
Revises: 0033_longer_fs_fields
Create Date: 2024-12-19 23:16:11.053536
"""
Expand All @@ -15,8 +15,8 @@
from sqlalchemy.dialects import mysql

# revision identifiers, used by Alembic.
revision = "0033_rom_file_and_hashes"
down_revision = "0032_longer_fs_fields"
revision = "0034_rom_file_and_hashes"
down_revision = "0033_longer_fs_fields"
branch_labels = None
depends_on = None

Expand Down

0 comments on commit 3a4c06f

Please sign in to comment.