Skip to content

Commit

Permalink
Add migration for content_hash field
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Sep 10, 2024
1 parent 26be8e6 commit b5164f4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions alembic/versions/a192a8d3282c_add_content_hash.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
"""
Add content_hash field to messages model
Revision ID: a192a8d3282c
Revises: 01b101590e74
Create Date: 2024-09-10 16:32:46.593911
"""
import sqlalchemy as sa

from alembic import op

# revision identifiers, used by Alembic.
revision = "a192a8d3282c"
down_revision = "01b101590e74"
branch_labels = None
depends_on = None


def upgrade() -> None:
"""Apply the current migration."""
op.add_column("messages", sa.Column("content_hash", sa.String(), nullable=True))


def downgrade() -> None:
"""Revert the current migration."""
op.drop_column("messages", "content_hash")

0 comments on commit b5164f4

Please sign in to comment.