I've tried simply removing the unique=True
constraint and running
flask db migrate
flask db upgrade
in the command line but when I run my flask app I'm still getting a (sqlite3.IntegrityError) UNIQUE constraint failed
error.
Is there a simple way to do this with flask-migrate or should I switch to alembic (which I know flask-migrate is just wrapped around)? I would prefer not to drop the entire table. Thanks for any help!