File tree 1 file changed +9
-9
lines changed
services/apps/script_executor_worker/src/activities/fix-foreign-keys
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,17 @@ interface MergedOrganization {
11
11
12
12
async function getMergedOrganizations ( pgQx : QueryExecutor ) : Promise < MergedOrganization [ ] > {
13
13
return pgQx . select ( `
14
- SELECT ma. "secondaryId", ma. "primaryId"
14
+ SELECT "secondaryId", "primaryId"
15
15
FROM (
16
- SELECT DISTINCT ON ("secondaryId") "secondaryId", "primaryId", "createdAt "
17
- FROM "mergeActions"
18
- WHERE type = 'organization ' AND state = 'merged'
19
- ORDER BY "secondaryId", "createdAt" DESC
20
- ) ma
16
+ SELECT DISTINCT ON ("secondaryId") "secondaryId", "primaryId"
17
+ FROM "mergeActions"
18
+ WHERE type = 'org ' AND state = 'merged'
19
+ ORDER BY "secondaryId", "createdAt" DESC
20
+ ) latest_merges
21
21
WHERE NOT EXISTS (
22
- SELECT 1
23
- FROM organizations
24
- WHERE organizations.id = ma ."secondaryId"
22
+ SELECT 1
23
+ FROM organizations
24
+ WHERE organizations.id = latest_merges ."secondaryId"
25
25
);
26
26
` )
27
27
}
You can’t perform that action at this time.
0 commit comments