Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: delete org and user workflows #1326

Merged
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
862d419
delete graphs before deleting org
thisisnithin Nov 5, 2024
e82373d
update migrations
thisisnithin Nov 5, 2024
31f0750
fix imports
thisisnithin Nov 6, 2024
5d1e0f3
fix tests
thisisnithin Nov 6, 2024
04288c8
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 7, 2024
4280bdc
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 7, 2024
006512c
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 8, 2024
87e8326
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 8, 2024
8beaec0
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 19, 2024
76379ca
improve user and org deletion
thisisnithin Nov 19, 2024
fc5a6f4
delete targets in one go
thisisnithin Nov 19, 2024
65b8de7
add comment
thisisnithin Nov 19, 2024
40e19dd
cleanup
thisisnithin Nov 20, 2024
3612182
fix and add test
thisisnithin Nov 20, 2024
1e9966c
fix test
thisisnithin Nov 20, 2024
7ffcafd
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 20, 2024
35c9aa6
use queues
thisisnithin Nov 21, 2024
cfd4b92
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 21, 2024
57291ff
fix lint
thisisnithin Nov 21, 2024
90c6554
address feedback
thisisnithin Nov 21, 2024
a96b9a0
fix tests
thisisnithin Nov 21, 2024
3f9f423
await webhook, add meail to queue
thisisnithin Nov 22, 2024
01348ef
Merge branch 'main' into nithin/eng-5878-fix-federated-graph-schema-v…
thisisnithin Nov 22, 2024
9704b35
helm docs
thisisnithin Nov 22, 2024
9a459ce
update helm
thisisnithin Nov 22, 2024
0d32968
deplay to max 1 hour
thisisnithin Nov 22, 2024
bd549e5
revert for readme worker
thisisnithin Nov 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions controlplane/migrations/0108_dazzling_iron_lad.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
ALTER TABLE "subgraphs" DROP CONSTRAINT "subgraphs_schema_version_id_schema_versions_id_fk";
--> statement-breakpoint
DO $$ BEGIN
ALTER TABLE "subgraphs" ADD CONSTRAINT "subgraphs_schema_version_id_schema_versions_id_fk" FOREIGN KEY ("schema_version_id") REFERENCES "public"."schema_versions"("id") ON DELETE no action ON UPDATE no action;
EXCEPTION
WHEN duplicate_object THEN null;
END $$;
Loading
Loading