26 lines
457 B
Python
26 lines
457 B
Python
|
"""add-velero-as-app
|
||
|
|
||
|
Revision ID: 3fa0c38ea1ac
|
||
|
Revises: e08df0bef76f
|
||
|
Create Date: 2022-10-13 09:40:44.290319
|
||
|
|
||
|
"""
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '3fa0c38ea1ac'
|
||
|
down_revision = 'e08df0bef76f'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# Add monitoring app
|
||
|
op.execute(f'INSERT IGNORE INTO app (`name`, `slug`) VALUES ("Velero","velero")')
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
pass
|