- Fork elmeg-demo codebase for multi-band support - Add data importer infrastructure with base class - Create band-specific importers: - phish.py: Phish.net API v5 - grateful_dead.py: Grateful Stats API - setlistfm.py: Dead & Company, Billy Strings (Setlist.fm) - Add spec-kit configuration for Gemini - Update README with supported bands and architecture
57 lines
2 KiB
Python
57 lines
2 KiB
Python
"""add_notifications
|
|
|
|
Revision ID: a526deda28e0
|
|
Revises: 1305863562e7
|
|
Create Date: 2025-12-03 15:40:20.810781
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
import sqlmodel
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = 'a526deda28e0'
|
|
down_revision: Union[str, Sequence[str], None] = '1305863562e7'
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
"""Upgrade schema."""
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('notification',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('user_id', sa.Integer(), nullable=False),
|
|
sa.Column('type', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
|
|
sa.Column('title', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
|
|
sa.Column('message', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
|
|
sa.Column('link', sqlmodel.sql.sqltypes.AutoString(), nullable=True),
|
|
sa.Column('is_read', sa.Boolean(), nullable=False),
|
|
sa.Column('created_at', sa.DateTime(), nullable=False),
|
|
sa.ForeignKeyConstraint(['user_id'], ['user.id'], ),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
with op.batch_alter_table('notification', schema=None) as batch_op:
|
|
batch_op.create_index(batch_op.f('ix_notification_user_id'), ['user_id'], unique=False)
|
|
|
|
with op.batch_alter_table('review', schema=None) as batch_op:
|
|
# batch_op.drop_column('created_at')
|
|
pass
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
"""Downgrade schema."""
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('review', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('created_at', sa.DATETIME(), nullable=False))
|
|
|
|
with op.batch_alter_table('notification', schema=None) as batch_op:
|
|
batch_op.drop_index(batch_op.f('ix_notification_user_id'))
|
|
|
|
op.drop_table('notification')
|
|
# ### end Alembic commands ###
|