aledejesus / item_catalog

Udacity Full Stack Web Developer Nanodegree Project 2: Item Catalog
0 stars 0 forks source link

Alembic migrations incomplete #45

Open joostsijm opened 6 years ago

joostsijm commented 6 years ago

Revision 0ac4d2ac297e is incomplete because it tries to create a foreign key relationship to the category table that does not exist.

    sa.Column('category_id', sa.Integer(), nullable=False),
    sa.ForeignKeyConstraint(['category_id'], ['category.id'], ),

I was able to bypass the problem by deleting the existing migrations and regenerating.