mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 11:06:31 +00:00
alembic: Drop redundant voicemail_messages index.
The `voicemail_messages_dir` index is a left prefix of the table's
primary key and therefore unnecessary.
(cherry picked from commit f97ad807ff
)
This commit is contained in:
committed by
Asterisk Development Team
parent
5152a05416
commit
6d86566ee8
@@ -0,0 +1,24 @@
|
||||
"""Drop redundant index
|
||||
|
||||
Revision ID: 64fae6bbe7fb
|
||||
Revises: 1c55c341360f
|
||||
Create Date: 2024-09-26 16:17:12.732445
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '64fae6bbe7fb'
|
||||
down_revision = '1c55c341360f'
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
def upgrade():
|
||||
with op.batch_alter_table('voicemail_messages') as batch_op:
|
||||
batch_op.drop_index('voicemail_messages_dir')
|
||||
|
||||
|
||||
def downgrade():
|
||||
with op.batch_alter_table('voicemail_messages') as batch_op:
|
||||
batch_op.create_index('voicemail_messages_dir', ['dir'])
|
Reference in New Issue
Block a user