Advertisement
chrissharp123

Untitled

Mar 18th, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. evergreen=# \d asset.copy_location
  2. Table "asset.copy_location"
  3. Column | Type | Collation | Nullable | Default
  4. ---------------+---------+-----------+----------+-------------------------------------------------
  5. id | integer | | not null | nextval('asset.copy_location_id_seq'::regclass)
  6. name | text | | not null |
  7. owning_lib | integer | | not null |
  8. holdable | boolean | | not null | true
  9. opac_visible | boolean | | not null | true
  10. circulate | boolean | | not null | true
  11. hold_verify | boolean | | not null | false
  12. label_prefix | text | | |
  13. label_suffix | text | | |
  14. checkin_alert | boolean | | not null | false
  15. deleted | boolean | | not null | false
  16. url | text | | |
  17. Indexes:
  18. "copy_location_pkey" PRIMARY KEY, btree (id)
  19. "acl_name_once_per_lib" UNIQUE, btree (name, owning_lib) WHERE deleted = false OR deleted IS FALSE
  20. Foreign-key constraints:
  21. "copy_location_owning_lib_fkey" FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id)
  22. Referenced by:
  23. TABLE "config.circ_limit_set_copy_loc_map" CONSTRAINT "circ_limit_set_copy_loc_map_copy_loc_fkey" FOREIGN KEY (copy_loc) REFERENCES asset.copy_location(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
  24. TABLE "config.circ_matrix_matchpoint" CONSTRAINT "circ_matrix_matchpoint_copy_location_fkey" FOREIGN KEY (copy_location) REFERENCES asset.copy_location(id) DEFERRABLE INITIALLY DEFERRED
  25. TABLE "action.circulation" CONSTRAINT "circulation_copy_location_fkey" FOREIGN KEY (copy_location) REFERENCES asset.copy_location(id) DEFERRABLE INITIALLY DEFERRED
  26. TABLE "asset.copy" CONSTRAINT "copy_location_fkey" FOREIGN KEY (location) REFERENCES asset.copy_location(id) DEFERRABLE INITIALLY DEFERRED
  27. TABLE "asset.copy_location_group_map" CONSTRAINT "copy_location_group_map_location_fkey" FOREIGN KEY (location) REFERENCES asset.copy_location(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
  28. TABLE "asset.copy_location_order" CONSTRAINT "copy_location_order_location_fkey" FOREIGN KEY (location) REFERENCES asset.copy_location(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
  29. TABLE "asset.copy_template" CONSTRAINT "copy_template_location_fkey" FOREIGN KEY (location) REFERENCES asset.copy_location(id) DEFERRABLE INITIALLY DEFERRED
  30. TABLE "asset.course_module_course_materials" CONSTRAINT "course_module_course_materials_original_location_fkey" FOREIGN KEY (original_location) REFERENCES asset.copy_location(id)
  31. TABLE "acq.distribution_formula_entry" CONSTRAINT "distribution_formula_entry_location_fkey" FOREIGN KEY (location) REFERENCES asset.copy_location(id)
  32. TABLE "acq.lineitem_detail" CONSTRAINT "lineitem_detail_location_fkey" FOREIGN KEY (location) REFERENCES asset.copy_location(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED
  33. TABLE "actor.org_unit_proximity_adjustment" CONSTRAINT "org_unit_proximity_adjustment_copy_location_fkey" FOREIGN KEY (copy_location) REFERENCES asset.copy_location(id)
  34. Rules:
  35. protect_copy_location_delete AS
  36. ON DELETE TO asset.copy_location DO INSTEAD ( SELECT asset.check_delete_copy_location(old.id) AS check_delete_copy_location;
  37. UPDATE asset.copy_location SET deleted = true
  38. WHERE old.id = copy_location.id;
  39. UPDATE acq.lineitem_detail SET location = NULL::integer
  40. WHERE lineitem_detail.location = old.id;
  41. DELETE FROM asset.copy_location_order
  42. WHERE copy_location_order.location = old.id;
  43. DELETE FROM asset.copy_location_group_map
  44. WHERE copy_location_group_map.location = old.id;
  45. DELETE FROM config.circ_limit_set_copy_loc_map
  46. WHERE circ_limit_set_copy_loc_map.copy_loc = old.id;
  47. )
  48. Triggers:
  49. acpl_validate_edit BEFORE UPDATE ON asset.copy_location FOR EACH ROW EXECUTE PROCEDURE asset.copy_location_validate_edit()
  50. audit_asset_copy_location_update_trigger AFTER DELETE OR UPDATE ON asset.copy_location FOR EACH ROW EXECUTE PROCEDURE auditor.audit_asset_copy_location_func()
  51.  
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement