Asterisk - The Open Source Telephony Project  18.5.0
b83645976fdd_add_dtls_fingerprint_to_ps_endpoints.py
Go to the documentation of this file.
1 """add dtls_fingerprint to ps_endpoints
2 
3 Revision ID: b83645976fdd
4 Revises: f3d1c5d38b56
5 Create Date: 2017-08-03 09:01:49.558111
6 
7 """
8 
9 # revision identifiers, used by Alembic.
10 revision = 'b83645976fdd'
11 down_revision = 'f3d1c5d38b56'
12 
13 from alembic import op
14 import sqlalchemy as sa
15 from sqlalchemy.dialects.postgresql import ENUM
16 
17 SHA_HASH_NAME = 'sha_hash_values'
18 SHA_HASH_VALUES = ['SHA-1', 'SHA-256']
19 
20 def upgrade():
21  context = op.get_context()
22 
23  if context.bind.dialect.name == 'postgresql':
24  enum = ENUM(*SHA_HASH_VALUES, name=SHA_HASH_NAME)
25  enum.create(op.get_bind(), checkfirst=False)
26 
27  op.add_column('ps_endpoints',
28  sa.Column('dtls_fingerprint', ENUM(*SHA_HASH_VALUES,
29  name=SHA_HASH_NAME, create_type=False)))
30 
31 def downgrade():
32  context = op.get_context()
33 
34  if context.bind.dialect.name == 'mssql':
35  op.drop_constraint('ck_ps_endpoints_dtls_fingerprint_sha_hash_values', 'ps_endpoints')
36  op.drop_column('ps_endpoints', 'dtls_fingerprint')
37 
38  if context.bind.dialect.name == 'postgresql':
39  enum = ENUM(*SHA_HASH_VALUES, name=SHA_HASH_NAME)
40  enum.drop(op.get_bind(), checkfirst=False)