Skip to content

Commit 7765b77

Browse files
committed
store: Fix namespace issue in down migration
1 parent 94fb3f2 commit 7765b77

File tree

1 file changed

+3
-3
lines changed
  • store/postgres/migrations/2025-05-13-173523_split_subgraph_deployment

1 file changed

+3
-3
lines changed

store/postgres/migrations/2025-05-13-173523_split_subgraph_deployment/down.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ select ds.id AS schema_id,
9999
d.failed,
100100
d.synced_at
101101
from deployment_schemas ds,
102-
subgraph_deployment d,
103-
subgraph_version v,
104-
subgraph s
102+
subgraphs.subgraph_deployment d,
103+
subgraphs.subgraph_version v,
104+
subgraphs.subgraph s
105105
where d.id = ds.id
106106
and v.deployment = d.deployment
107107
and v.subgraph = s.id;

0 commit comments

Comments
 (0)