From: Mike Bradeen Date: Wed, 17 Jan 2024 16:21:13 +0000 (-0700) Subject: app_voicemail: add NoOp alembic script to maintain sync X-Git-Tag: 20.7.0-rc1~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9652a215e84b3f80230f8004ffd992b49d456efd;p=thirdparty%2Fasterisk.git 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 f5d622413aa5d4c3577929277641747792e2f295) --- diff --git a/contrib/ast-db-manage/voicemail/versions/1c55c341360f_macrocontext_NoOp.py b/contrib/ast-db-manage/voicemail/versions/1c55c341360f_macrocontext_NoOp.py new file mode 100644 index 0000000000..5f6421eba4 --- /dev/null +++ b/contrib/ast-db-manage/voicemail/versions/1c55c341360f_macrocontext_NoOp.py @@ -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 \ No newline at end of file