remove unicode from code

Change-Id: I8bea8e24aa5c12fe08d3705f042bc6dea8695403
This commit is contained in:
Q.hongtao 2021-01-03 10:52:17 +08:00 committed by Renat Akhmerov
parent 421f84334b
commit de4d0277e0
4 changed files with 6 additions and 6 deletions

View File

@ -128,10 +128,10 @@ def upgrade():
'workflow_execution_id', sa.String(length=36), nullable=True
),
sa.ForeignKeyConstraint(
['task_execution_id'], [u'executions_v2.id'],
['task_execution_id'], ['executions_v2.id'],
),
sa.ForeignKeyConstraint(
['workflow_execution_id'], [u'executions_v2.id'],
['workflow_execution_id'], ['executions_v2.id'],
),
sa.PrimaryKeyConstraint('id')
)
@ -218,7 +218,7 @@ def upgrade():
sa.Column('workflow_input_hash', sa.CHAR(length=64), nullable=True),
sa.Column('trust_id', sa.String(length=80), nullable=True),
sa.ForeignKeyConstraint(
['workflow_id'], [u'workflow_definitions_v2.id'],
['workflow_id'], ['workflow_definitions_v2.id'],
),
sa.PrimaryKeyConstraint('id'),
sa.UniqueConstraint('name', 'project_id'),

View File

@ -50,7 +50,7 @@ def upgrade():
sa.ForeignKeyConstraint(
['workflow_id'],
[u'workflow_definitions_v2.id'],
['workflow_definitions_v2.id'],
),
sa.PrimaryKeyConstraint('id'),
sa.UniqueConstraint(

View File

@ -168,7 +168,7 @@ def upgrade():
),
sa.ForeignKeyConstraint(
['workflow_execution_id'],
[u'workflow_executions_v2.id'],
['workflow_executions_v2.id'],
ondelete='CASCADE'
),
)

View File

@ -69,7 +69,7 @@ def upgrade():
sa.PrimaryKeyConstraint('id'),
sa.ForeignKeyConstraint(
['code_source_id'],
[u'code_sources.id'],
['code_sources.id'],
ondelete='CASCADE'
),