Rectify our prod database, previous migrations, and database definition files.
This commit is contained in:
parent
f4daa5e97b
commit
fe59ad4fb5
3 changed files with 2 additions and 14 deletions
|
@ -378,7 +378,7 @@ def upgrade(tables):
|
|||
)
|
||||
op.create_index('image_ancestors', 'image', ['ancestors'], unique=False)
|
||||
op.create_index('image_repository_id', 'image', ['repository_id'], unique=False)
|
||||
op.create_index('image_repository_id_docker_image_id', 'image', ['repository_id', 'docker_image_id'], unique=False)
|
||||
op.create_index('image_repository_id_docker_image_id', 'image', ['repository_id', 'docker_image_id'], unique=True)
|
||||
op.create_index('image_storage_id', 'image', ['storage_id'], unique=False)
|
||||
op.create_table('permissionprototype',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
|
|
Reference in a new issue