git add .

git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
This commit is contained in:
2026-05-30 14:20:20 +03:30
parent ed82bf7f1f
commit b0ff339525
27 changed files with 1241 additions and 140 deletions

View File

@@ -0,0 +1,28 @@
"""add prize column
Revision ID: b55808a86947
Revises: ab09ab5070f7
Create Date: 2026-05-29 19:32:41.615653
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = 'b55808a86947'
down_revision: Union[str, Sequence[str], None] = 'ab09ab5070f7'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
pass
def downgrade() -> None:
"""Downgrade schema."""
pass