Skip to content

Commit

Permalink
Fix import dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
swalker2m committed Jan 24, 2025
1 parent 5012832 commit c76752d
Showing 1 changed file with 8 additions and 0 deletions.
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);

0 comments on commit c76752d

Please sign in to comment.