Skip to content
Snippets Groups Projects
Commit e31d4dda authored by Jenkins2's avatar Jenkins2 Committed by Gerrit Code Review
Browse files

Merge "alembic: Add dtls_fingerprint column in ps_endpoints table"

parents 179524c2 2ee644aa
No related branches found
No related tags found
No related merge requests found
"""add dtls_fingerprint to ps_endpoints
Revision ID: b83645976fdd
Revises: f3d1c5d38b56
Create Date: 2017-08-03 09:01:49.558111
"""
# revision identifiers, used by Alembic.
revision = 'b83645976fdd'
down_revision = 'f3d1c5d38b56'
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects.postgresql import ENUM
SHA_HASH_VALUES = ['SHA-1', 'SHA-256']
def upgrade():
op.add_column('ps_endpoints', sa.Column('dtls_fingerprint', sa.Enum(*SHA_HASH_VALUES, name='sha_hash_values')))
def downgrade():
op.drop_column('ps_endpoints', 'dtls_fingerprint')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment