Skip to content

Commit ec96bcc

Browse files
fix
1 parent a0ca13e commit ec96bcc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/postgres-database/src/simcore_postgres_database/migration/versions/8e1f83486be7_enhance_projects_tags_for_rut.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def upgrade():
2626
sa.DDL(
2727
"""
2828
UPDATE projects_tags
29-
SET project_uuid_for_rut = project.uuid
30-
FROM project
31-
WHERE projects_tags.project_id = project.id;
29+
SET project_uuid_for_rut = projects.uuid
30+
FROM projects
31+
WHERE projects_tags.project_id = projects.id;
3232
"""
3333
)
3434
)

0 commit comments

Comments
 (0)