README: Add System Settings API endpoints; describe new tabbed Settings layout with role gating; add Vite dev proxy tip to use relative /api paths. Copilot instructions: Note SystemSetting key–value store in data model; document system_settings.py (CRUD + supplement-table convenience endpoint); reference apiSystemSettings.ts; note defaults seeding via init_defaults.py. Program Info: Bump version to 2025.1.0-alpha.11; changelog explicitly tied to the Settings page (Events tab: supplement-table URL moved; Academic Calendar: set active period; proxy note); README docs mention. No functional changes to API or UI code in this commit; documentation and program info only.
38 lines
1005 B
Python
38 lines
1005 B
Python
"""add_system_settings_table
|
|
|
|
Revision ID: 045626c9719a
|
|
Revises: 488ce87c28ae
|
|
Create Date: 2025-10-16 18:38:47.415244
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '045626c9719a'
|
|
down_revision: Union[str, None] = '488ce87c28ae'
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
"""Upgrade schema."""
|
|
op.create_table(
|
|
'system_settings',
|
|
sa.Column('key', sa.String(100), nullable=False),
|
|
sa.Column('value', sa.Text(), nullable=True),
|
|
sa.Column('description', sa.String(255), nullable=True),
|
|
sa.Column('updated_at', sa.TIMESTAMP(timezone=True),
|
|
server_default=sa.func.current_timestamp(),
|
|
nullable=True),
|
|
sa.PrimaryKeyConstraint('key')
|
|
)
|
|
|
|
|
|
def downgrade() -> None:
|
|
"""Downgrade schema."""
|
|
op.drop_table('system_settings')
|