I have a table which i created as shown below
op.create_table('test',
sa.Column('userid', sa.String(length=60), nullable=False),
sa.Column('page_id', sa.Integer(), nullable=False),
sa.ForeignKeyConstraint(['userid'], ['map.userid']),
)
I want add a ondelete="CASCADE" constraint on the foreign key. I understand we need to do drop_contraint and create_foreign_key. But how do i drop_contraint foreign key which has no Name in alembic?