parent
ecf00fe9d6
commit
914de78576
|
@ -15,16 +15,12 @@ import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
def upgrade():
|
def upgrade():
|
||||||
### commands auto generated by Alembic - please adjust! ###
|
|
||||||
op.add_column('endpoints', sa.Column('sensitive', sa.Boolean(), nullable=True))
|
op.add_column('endpoints', sa.Column('sensitive', sa.Boolean(), nullable=True))
|
||||||
op.add_column('endpoints', sa.Column('source_id', sa.Integer(), nullable=True))
|
op.add_column('endpoints', sa.Column('source_id', sa.Integer(), nullable=True))
|
||||||
op.create_foreign_key(None, 'endpoints', 'sources', ['source_id'], ['id'])
|
op.create_foreign_key(None, 'endpoints', 'sources', ['source_id'], ['id'])
|
||||||
### end Alembic commands ###
|
|
||||||
|
|
||||||
|
|
||||||
def downgrade():
|
def downgrade():
|
||||||
### commands auto generated by Alembic - please adjust! ###
|
|
||||||
op.drop_constraint(None, 'endpoints', type_='foreignkey')
|
op.drop_constraint(None, 'endpoints', type_='foreignkey')
|
||||||
op.drop_column('endpoints', 'source_id')
|
op.drop_column('endpoints', 'source_id')
|
||||||
op.drop_column('endpoints', 'sensitive')
|
op.drop_column('endpoints', 'sensitive')
|
||||||
### end Alembic commands ###
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
"""Modifies the unique index for the certificate replacements
|
||||||
|
|
||||||
|
Revision ID: 8ae67285ff14
|
||||||
|
Revises: 5e680529b666
|
||||||
|
Create Date: 2017-05-10 11:56:13.999332
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
# revision identifiers, used by Alembic.
|
||||||
|
revision = '8ae67285ff14'
|
||||||
|
down_revision = '5e680529b666'
|
||||||
|
|
||||||
|
from alembic import op
|
||||||
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
||||||
|
def upgrade():
|
||||||
|
op.drop_index('certificate_replacement_associations_ix')
|
||||||
|
op.create_index('certificate_replacement_associations_ix', 'certificate_replacement_associations', ['replaced_certificate_id', 'certificate_id'], unique=True)
|
||||||
|
|
||||||
|
|
||||||
|
def downgrade():
|
||||||
|
op.drop_index('certificate_replacement_associations_ix')
|
||||||
|
op.create_index('certificate_replacement_associations_ix', 'certificate_replacement_associations', ['certificate_id', 'certificate_id'], unique=True)
|
|
@ -53,7 +53,7 @@ certificate_replacement_associations = db.Table('certificate_replacement_associa
|
||||||
ForeignKey('certificates.id', ondelete='cascade'))
|
ForeignKey('certificates.id', ondelete='cascade'))
|
||||||
)
|
)
|
||||||
|
|
||||||
Index('certificate_replacement_associations_ix', certificate_replacement_associations.c.certificate_id, certificate_replacement_associations.c.certificate_id)
|
Index('certificate_replacement_associations_ix', certificate_replacement_associations.c.replaced_certificate_id, certificate_replacement_associations.c.certificate_id)
|
||||||
|
|
||||||
roles_authorities = db.Table('roles_authorities',
|
roles_authorities = db.Table('roles_authorities',
|
||||||
Column('authority_id', Integer, ForeignKey('authorities.id')),
|
Column('authority_id', Integer, ForeignKey('authorities.id')),
|
||||||
|
|
Loading…
Reference in New Issue