20 lines
459 B
Python
20 lines
459 B
Python
"""add helper function to handle fruit update logic
|
|
Revision ID: 8e7d9b6b9c21
|
|
Revises: 1ad6a8ecd0d7
|
|
Create Date: 2023-05-25 12:34:56.789012
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic
|
|
revision = '8e7d9b6b9c21'
|
|
down_revision = '1ad6a8ecd0d7'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
def upgrade():
|
|
# No database changes needed for adding a helper function
|
|
pass
|
|
|
|
def downgrade():
|
|
# No database changes needed for removing a helper function
|
|
pass |