17 lines
464 B
Python
17 lines
464 B
Python
"""add new helper function to create a new fruit in the database
|
|
Revision ID: 1ad6a8ecd0d7
|
|
Revises: 2c9a83e4f6b3
|
|
Create Date: 2023-05-25 12:45:32.770309
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '1ad6a8ecd0d7'
|
|
down_revision = '2c9a83e4f6b3'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
def upgrade():
|
|
pass # No database changes required for the new helper function
|
|
|
|
def downgrade():
|
|
pass # No database changes required for the new helper function |