Fix a last typo in the migration script, fixes #17

This commit is contained in:
Pierre Jaury
2016-06-25 14:17:45 +02:00
parent cc013560d9
commit ec12ee9703

View File

@@ -73,7 +73,7 @@ def upgrade():
sa.ForeignKeyConstraint(['user_email'], ['user.email'], ),
sa.PrimaryKeyConstraint('id')
)
op.create_table('manager',
op.create_table('manager',
sa.Column('domain_name', sa.String(length=80), nullable=True),
sa.Column('user_email', sa.String(length=255), nullable=True),
sa.ForeignKeyConstraint(['domain_name'], ['domain.name'], ),