mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 19:28:53 +00:00
Revert "res_pjsip_endpoint_identifier_ip: Add endpoint identifier transport address."
This reverts PR #602 Resolves: #GHSA-qqxj-v78h-hrf9
This commit is contained in:
committed by
asterisk-org-access-app[bot]
parent
115d7c01e3
commit
85241bd229
@@ -0,0 +1,22 @@
|
||||
"""Revert d5122576cca8 add transport attribute to identify
|
||||
|
||||
Revision ID: bd9c5159c7ea
|
||||
Revises: 6c475a93f48a
|
||||
Create Date: 2024-05-17 08:30:58.299083
|
||||
|
||||
"""
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'bd9c5159c7ea'
|
||||
down_revision = '6c475a93f48a'
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
def upgrade():
|
||||
op.drop_column('ps_endpoint_id_ips', 'transport')
|
||||
|
||||
|
||||
def downgrade():
|
||||
op.add_column('ps_endpoint_id_ips', sa.Column('transport', sa.String(128)))
|
Reference in New Issue
Block a user