mirror of https://github.com/stijndcl/didier
37 lines
999 B
Python
37 lines
999 B
Python
|
"""Add events table
|
||
|
|
||
|
Revision ID: 954ad804f057
|
||
|
Revises: 9fb84b4d9f0b
|
||
|
Create Date: 2023-02-02 22:20:23.107931
|
||
|
|
||
|
"""
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
from alembic import op
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = "954ad804f057"
|
||
|
down_revision = "9fb84b4d9f0b"
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade() -> None:
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.create_table(
|
||
|
"events",
|
||
|
sa.Column("event_id", sa.Integer(), nullable=False),
|
||
|
sa.Column("name", sa.Text(), nullable=False),
|
||
|
sa.Column("description", sa.Text(), nullable=True),
|
||
|
sa.Column("notification_channel", sa.BigInteger(), nullable=False),
|
||
|
sa.Column("timestamp", sa.DateTime(timezone=True), nullable=False),
|
||
|
sa.PrimaryKeyConstraint("event_id"),
|
||
|
)
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade() -> None:
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_table("events")
|
||
|
# ### end Alembic commands ###
|