Files
bakery-ia/services/forecasting/migrations/versions/001_initial_tables.py

29 lines
751 B
Python
Raw Normal View History

2025-09-29 19:16:34 +02:00
"""Initial forecasting service tables
2025-07-21 19:48:56 +02:00
2025-09-29 19:16:34 +02:00
Revision ID: 001_initial_forecasting
Create Date: 2024-01-01 12:00:00.000000
2025-07-21 19:48:56 +02:00
"""
2025-09-29 19:16:34 +02:00
from typing import Sequence, Union
2025-07-21 19:48:56 +02:00
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql
2025-09-29 19:16:34 +02:00
# revision identifiers, used by Alembic.
revision: str = '001_initial_forecasting'
down_revision: Union[str, None] = None
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
# TODO: Add table creation statements for forecasting service
# This is a placeholder migration - replace with actual table definitions
pass
2025-07-21 19:48:56 +02:00
2025-09-29 19:16:34 +02:00
def downgrade() -> None:
# TODO: Add table drop statements for forecasting service
pass