eventcally/migrations/versions/c5fbefbe9881_.py
2021-12-30 14:55:26 +01:00

56 lines
1.6 KiB
Python

"""empty message
Revision ID: c5fbefbe9881
Revises: eba21922b9b7
Create Date: 2021-12-29 22:35:29.300556
"""
import sqlalchemy as sa
import sqlalchemy_utils
from alembic import op
from sqlalchemy.dialects import postgresql
from project import dbtypes
# revision identifiers, used by Alembic.
revision = "c5fbefbe9881"
down_revision = "eba21922b9b7"
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.create_table(
"customwidget",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("widget_type", sa.Unicode(length=255), nullable=False),
sa.Column("name", sa.Unicode(length=255), nullable=False),
sa.Column("admin_unit_id", sa.Integer(), nullable=False),
sa.Column("settings", postgresql.JSONB(astext_type=sa.Text()), nullable=True),
sa.Column("created_at", sa.DateTime(), nullable=True),
sa.Column("updated_at", sa.DateTime(), nullable=True),
sa.Column("created_by_id", sa.Integer(), nullable=True),
sa.Column("updated_by_id", sa.Integer(), nullable=True),
sa.ForeignKeyConstraint(
["admin_unit_id"],
["adminunit.id"],
),
sa.ForeignKeyConstraint(
["created_by_id"],
["user.id"],
),
sa.ForeignKeyConstraint(
["updated_by_id"],
["user.id"],
),
sa.PrimaryKeyConstraint("id"),
)
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table("customwidget")
# ### end Alembic commands ###