Skip to content

Commit 0b701a7

Browse files
fix sql
1 parent 49415a5 commit 0b701a7

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/876bae5ff8da_move_projects_workbench.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def upgrade():
5151
outpuy_nodes = subquery.output_nodes::jsonb,
5252
outputs = subquery.outputs::jsonb,
5353
run_hash = subquery.run_hash,
54-
state = subquery.state::jsonb
54+
state = subquery.state::jsonb,
5555
parent = subquery.parent,
5656
boot_options = subquery.boot_options::jsonb
5757
FROM (
@@ -70,7 +70,7 @@ def upgrade():
7070
js.value::jsonb ->> 'outputNodes' AS output_nodes,
7171
js.value::jsonb ->> 'outputs' AS outputs,
7272
js.value::jsonb ->> 'runHash' AS run_hash,
73-
js.value::jsonb ->> 'state' AS state
73+
js.value::jsonb ->> 'state' AS state,
7474
js.value::jsonb ->> 'parent' AS parent,
7575
js.value::jsonb ->> 'bootOptions' AS boot_options
7676
FROM projects,

0 commit comments

Comments
 (0)