forked from kompetenzinventar/ki-backend
fix column type
This commit is contained in:
parent
39f014db86
commit
2d49c70f0f
@ -188,7 +188,7 @@ class ProfileLanguage(db.Model):
|
||||
__tablename__ = "profile_language"
|
||||
|
||||
profile_id = Column(Integer, ForeignKey("profile.id"), primary_key=True)
|
||||
language_id = Column(Integer, ForeignKey("language.id"), primary_key=True)
|
||||
language_id = Column(String(2), ForeignKey("language.id"), primary_key=True)
|
||||
level = Column(SmallInteger, nullable=False)
|
||||
|
||||
profile = relationship("Profile", back_populates="languages")
|
||||
|
@ -1,8 +1,8 @@
|
||||
"""Initial migration.
|
||||
|
||||
Revision ID: 44b45a772abd
|
||||
Revision ID: 6269064f6b51
|
||||
Revises:
|
||||
Create Date: 2021-07-06 21:19:44.217722
|
||||
Create Date: 2021-08-02 21:28:50.484098
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
@ -10,7 +10,7 @@ import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '44b45a772abd'
|
||||
revision = '6269064f6b51'
|
||||
down_revision = None
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
@ -71,7 +71,7 @@ def upgrade():
|
||||
)
|
||||
op.create_table('profile_language',
|
||||
sa.Column('profile_id', sa.Integer(), nullable=False),
|
||||
sa.Column('language_id', sa.Integer(), nullable=False),
|
||||
sa.Column('language_id', sa.String(length=2), nullable=False),
|
||||
sa.Column('level', sa.SmallInteger(), nullable=False),
|
||||
sa.ForeignKeyConstraint(['language_id'], ['language.id'], ),
|
||||
sa.ForeignKeyConstraint(['profile_id'], ['profile.id'], ),
|
Loading…
Reference in New Issue
Block a user