
Will be used to check people into workshops and meals to track event attendance over time, could be used to generate a dynamic schedule Signed-Off-By: Cara Salter <cara@devcara.com>
24 lines
356 B
Python
24 lines
356 B
Python
"""create event table
|
|
|
|
Revision ID: d6917765911f
|
|
Revises: 261c004968a4
|
|
Create Date: 2023-12-01 13:22:41.055221
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'd6917765911f'
|
|
down_revision = '261c004968a4'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass
|