diff --git a/contrib/ast-db-manage/config/versions/a062185f355c_add_stir_shaken_profile_to_ps_endpoint.py b/contrib/ast-db-manage/config/versions/a062185f355c_add_stir_shaken_profile_to_ps_endpoint.py new file mode 100644 index 0000000000..bf625649ee --- /dev/null +++ b/contrib/ast-db-manage/config/versions/a062185f355c_add_stir_shaken_profile_to_ps_endpoint.py @@ -0,0 +1,22 @@ +"""Add Stir Shaken Profile to ps endpoint + +Revision ID: a062185f355c +Revises: 7197536bb68d +Create Date: 2022-08-17 13:03:50.149536 + +""" + +# revision identifiers, used by Alembic. +revision = 'a062185f355c' +down_revision = '7197536bb68d' + +from alembic import op +import sqlalchemy as sa + + +def upgrade(): + op.add_column('ps_endpoints', sa.Column('stir_shaken_profile', sa.String(80))) + + +def downgrade(): + op.drop_column('ps_endpoints', 'stir_shaken_profile')