extend language name
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
weeman 2021-08-02 21:44:38 +02:00
parent 2d49c70f0f
commit 4e67b8a966
Signed by: weeman
GPG Key ID: 34F0524D4DA694A1
2 changed files with 5 additions and 5 deletions

View File

@ -176,7 +176,7 @@ class Language(db.Model):
__tablename__ = "language"
id = Column(String(2), primary_key=True)
name = Column(String(25), nullable=False)
name = Column(String(100), nullable=False)
profiles = relationship("ProfileLanguage", back_populates="language")

View File

@ -1,8 +1,8 @@
"""Initial migration.
Revision ID: 6269064f6b51
Revision ID: 07fb02e49575
Revises:
Create Date: 2021-08-02 21:28:50.484098
Create Date: 2021-08-02 21:43:42.035286
"""
from alembic import op
@ -10,7 +10,7 @@ import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '6269064f6b51'
revision = '07fb02e49575'
down_revision = None
branch_labels = None
depends_on = None
@ -25,7 +25,7 @@ def upgrade():
)
op.create_table('language',
sa.Column('id', sa.String(length=2), nullable=False),
sa.Column('name', sa.String(length=25), nullable=False),
sa.Column('name', sa.String(length=100), nullable=False),
sa.PrimaryKeyConstraint('id')
)
op.create_table('profile',