Skip to content

Commit a0ca13e

Browse files
fix
1 parent af56c24 commit a0ca13e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ def upgrade():
2525
op.execute(
2626
sa.DDL(
2727
"""
28-
UPDATE project_tags
28+
UPDATE projects_tags
2929
SET project_uuid_for_rut = project.uuid
3030
FROM project
31-
WHERE project_tags.project_id = project.id;
31+
WHERE projects_tags.project_id = project.id;
3232
"""
3333
)
3434
)

0 commit comments

Comments
 (0)