CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
-CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
-
-- Start picking up call number label prefixes and suffixes
-- from asset.copy_location
ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
ALTER TABLE acq.provider_contact
ALTER COLUMN name SET NOT NULL;
+ALTER TABLE actor.stat_cat
+ ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
+
COMMIT;
-- Some operations go outside of the transaction, because they may
CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
+CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
+
\qecho if the following CREATE INDEX fails, It will be necessary to do some
\qecho data cleanup as described in the comments.