mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 23:02:13 -05:00
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
"""
|
|
|
|
Revision ID: 0196_complaints_table
|
|
Revises: 0195_ft_notification_timestamps
|
|
Create Date: 2018-05-31 14:31:36.649544
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
revision = "0196_complaints_table"
|
|
down_revision = "0195_ft_notification_timestamps"
|
|
|
|
|
|
def upgrade():
|
|
op.create_table(
|
|
"complaints",
|
|
sa.Column("id", postgresql.UUID(as_uuid=True), nullable=False),
|
|
sa.Column("notification_id", postgresql.UUID(as_uuid=True), nullable=False),
|
|
sa.Column("service_id", postgresql.UUID(as_uuid=True), nullable=False),
|
|
sa.Column("ses_feedback_id", sa.Text(), nullable=True),
|
|
sa.Column("complaint_type", sa.Text(), nullable=True),
|
|
sa.Column("complaint_date", sa.DateTime(), nullable=True),
|
|
sa.Column("created_at", sa.DateTime(), nullable=False),
|
|
sa.ForeignKeyConstraint(
|
|
["notification_id"],
|
|
["notification_history.id"],
|
|
),
|
|
sa.ForeignKeyConstraint(
|
|
["service_id"],
|
|
["services.id"],
|
|
),
|
|
sa.PrimaryKeyConstraint("id"),
|
|
)
|
|
op.create_index(
|
|
op.f("ix_complaints_notification_id"),
|
|
"complaints",
|
|
["notification_id"],
|
|
unique=False,
|
|
)
|
|
op.create_index(
|
|
op.f("ix_complaints_service_id"), "complaints", ["service_id"], unique=False
|
|
)
|
|
|
|
|
|
def downgrade():
|
|
op.drop_index(op.f("ix_complaints_service_id"), table_name="complaints")
|
|
op.drop_index(op.f("ix_complaints_notification_id"), table_name="complaints")
|
|
op.drop_table("complaints")
|