Skip to content

ShortCut 4602: Fix import dependency issue #1589

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

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- Adds a FK dependency on t_program_type. This should cause Postgres to dump
-- and subsequently import the t_program_type table before the t_program table
-- and fix an ordering with computing program references.

ALTER TABLE t_program
ADD CONSTRAINT t_program_c_program_type_fkey
FOREIGN KEY (c_program_type)
REFERENCES t_program_type (c_type);
Loading