Advertisement
minafaw3

missing tables

Oct 15th, 2019
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. CREATE TABLE migration.mig_entity_merged_map (
  2. entity_id int8 NULL,
  3. merged_entity_id int8 NULL
  4. );
  5.  
  6.  
  7. create table agent_carrier_in_agency
  8. (
  9. agency_id bigint not null
  10. constraint agent_in_agency_agency_id_fkey
  11. references agency,
  12. agent_carrier_id bigint
  13. constraint agent_carrier_in_agency_agent_carrier_id_fkey
  14. references agent_carrier
  15. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement