mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
app_voicemail: add NoOp alembic script to maintain sync
Adding a NoOp alembic script for the voicemail database to maintain
version sync with other branches.
Fixes: #527
(cherry picked from commit f5d622413a
)
This commit is contained in:
committed by
Asterisk Development Team
parent
e17c4e172f
commit
9652a215e8
@@ -0,0 +1,20 @@
|
|||||||
|
"""Macrocontext NoOp for sync
|
||||||
|
Revision ID: 1c55c341360f
|
||||||
|
Revises: 39428242f7f5
|
||||||
|
Create Date: 2024-01-09 15:01:39.698918
|
||||||
|
"""
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '1c55c341360f'
|
||||||
|
down_revision = '39428242f7f5'
|
||||||
|
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
pass
|
Reference in New Issue
Block a user