Merge pull request #3284 from quay/switch-tag-basic-to-ascii
Switch Tag name field back to ASCII
This commit is contained in:
commit
417b3f9fc2
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ def upgrade(tables, tester):
|
|||
op.create_index('manifestchild_repository_id_manifest_id_child_manifest_id', 'manifestchild', ['repository_id', 'manifest_id', 'child_manifest_id'], unique=False)
|
||||
op.create_table('tag',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('name', UTF8CharField(length=255), nullable=False),
|
||||
sa.Column('name', sa.String(length=255), nullable=False),
|
||||
sa.Column('repository_id', sa.Integer(), nullable=False),
|
||||
sa.Column('manifest_id', sa.Integer(), nullable=True),
|
||||
sa.Column('lifetime_start_ms', sa.BigInteger(), nullable=False),
|
||||
|
|
Reference in a new issue