Files
social-app/backend/alembic/versions/20260205_create_profiles_table.py
T

46 lines
1.5 KiB
Python
Raw Normal View History

from __future__ import annotations
import sqlalchemy as sa
from alembic import op
from sqlalchemy.dialects import postgresql
revision = "20260205_create_profiles_table"
down_revision = None
branch_labels = None
depends_on = None
def upgrade() -> None:
op.create_table(
"profiles",
sa.Column("id", postgresql.UUID(as_uuid=True), nullable=False),
sa.Column("username", sa.String(length=30), nullable=False),
sa.Column("display_name", sa.String(length=50), nullable=True),
sa.Column("avatar_url", sa.Text(), nullable=True),
sa.Column("bio", sa.String(length=200), nullable=True),
sa.Column(
"created_at",
sa.DateTime(timezone=True),
server_default=sa.text("now()"),
nullable=False,
),
sa.Column(
"updated_at",
sa.DateTime(timezone=True),
server_default=sa.text("now()"),
nullable=False,
),
sa.Column("deleted_at", sa.DateTime(timezone=True), nullable=True),
sa.PrimaryKeyConstraint("id", name="pk_profiles"),
sa.UniqueConstraint("username", name="uq_profiles_username"),
)
op.create_index("ix_profiles_username", "profiles", ["username"])
op.create_index("ix_profiles_deleted_at", "profiles", ["deleted_at"])
def downgrade() -> None:
op.drop_index("ix_profiles_deleted_at", table_name="profiles")
op.drop_index("ix_profiles_username", table_name="profiles")
op.drop_table("profiles")