curate 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +14 -0
- data/app/controllers/application_controller.rb +69 -0
- data/app/controllers/catalog_controller.rb +336 -0
- data/app/controllers/classify_concerns_controller.rb +29 -0
- data/app/controllers/common_objects_controller.rb +27 -0
- data/app/controllers/curation_concern/base_controller.rb +26 -0
- data/app/controllers/curation_concern/generic_files_controller.rb +82 -0
- data/app/controllers/dashboard_controller.rb +85 -0
- data/app/controllers/downloads_controller.rb +22 -0
- data/app/controllers/errors_controller.rb +19 -0
- data/app/controllers/help_requests_controller.rb +38 -0
- data/app/controllers/terms_of_service_agreements_controller.rb +44 -0
- data/app/controllers/welcome_controller.rb +14 -0
- data/app/helpers/application_helper.rb +89 -0
- data/app/helpers/blacklight_helper.rb +19 -0
- data/app/helpers/common_objects_helper.rb +5 -0
- data/app/inputs/multi_value_input.rb +71 -0
- data/app/models/access_right.rb +53 -0
- data/app/models/classify_concern.rb +30 -0
- data/app/models/contributor_agreement.rb +58 -0
- data/app/models/digital_object_identifier.rb +83 -0
- data/app/models/doi_config.rb +26 -0
- data/app/models/help_request.rb +34 -0
- data/app/models/mint_doi.rb +51 -0
- data/app/models/mint_purl.rb +40 -0
- data/app/models/object_access.rb +17 -0
- data/app/models/purl.rb +18 -0
- data/app/models/purl_config.rb +10 -0
- data/app/models/repo_object.rb +24 -0
- data/app/models/solr_document.rb +35 -0
- data/app/repository_datastreams/file_content_datastream.rb +36 -0
- data/app/repository_models/curation_concern/embargoable.rb +43 -0
- data/app/repository_models/curation_concern/with_access_right.rb +31 -0
- data/app/repository_models/generic_file.rb +36 -0
- data/app/services/anti_virus_scanner.rb +28 -0
- data/app/services/curation_concern.rb +22 -0
- data/app/services/curation_concern/base_actor.rb +48 -0
- data/app/services/curation_concern/generic_file_actor.rb +38 -0
- data/app/validators/future_date_validator.rb +19 -0
- data/app/views/_footer.html.erb +19 -0
- data/app/views/_ga.html.erb +6 -0
- data/app/views/_logo.html.erb +34 -0
- data/app/views/_masthead.html.erb +34 -0
- data/app/views/catalog/_bookmark_control.html.erb +25 -0
- data/app/views/catalog/_bookmark_form.html.erb +8 -0
- data/app/views/catalog/_citation.html.erb +11 -0
- data/app/views/catalog/_constraints.html.erb +6 -0
- data/app/views/catalog/_constraints_element.html.erb +20 -0
- data/app/views/catalog/_delete_partials/_default.html.erb +29 -0
- data/app/views/catalog/_did_you_mean.html.erb +10 -0
- data/app/views/catalog/_document.html.erb +19 -0
- data/app/views/catalog/_document_list.html.erb +2 -0
- data/app/views/catalog/_edit_partials/_default.html.erb +58 -0
- data/app/views/catalog/_edit_partials/_default_details.html.erb +13 -0
- data/app/views/catalog/_email_form.html.erb +11 -0
- data/app/views/catalog/_facet_layout.html.erb +12 -0
- data/app/views/catalog/_facet_limit.html.erb +19 -0
- data/app/views/catalog/_facet_selected.html.erb +12 -0
- data/app/views/catalog/_facets.html.erb +5 -0
- data/app/views/catalog/_folder_control.html.erb +12 -0
- data/app/views/catalog/_home.html.erb +2 -0
- data/app/views/catalog/_home_text.html.erb +10 -0
- data/app/views/catalog/_index_default.html.erb +11 -0
- data/app/views/catalog/_index_partials/_default_group.html.erb +37 -0
- data/app/views/catalog/_marc_view.html.erb +33 -0
- data/app/views/catalog/_opensearch_response_metadata.html.erb +2 -0
- data/app/views/catalog/_previous_next_doc.html.erb +6 -0
- data/app/views/catalog/_refworks_form.html.erb +7 -0
- data/app/views/catalog/_results_pagination.html.erb +6 -0
- data/app/views/catalog/_search_form.html.erb +20 -0
- data/app/views/catalog/_show_default.html.erb +9 -0
- data/app/views/catalog/_show_partials/_default.html.erb +22 -0
- data/app/views/catalog/_show_partials/_default_details.html.erb +15 -0
- data/app/views/catalog/_show_partials/_facets.html.erb +52 -0
- data/app/views/catalog/_show_sidebar.html.erb +1 -0
- data/app/views/catalog/_show_tools.html.erb +46 -0
- data/app/views/catalog/_sms_form.html.erb +21 -0
- data/app/views/catalog/_sort_and_per_page.html.erb +38 -0
- data/app/views/catalog/_uva_tabs.html.erb +10 -0
- data/app/views/catalog/about.html.erb +0 -0
- data/app/views/catalog/citation.html.erb +1 -0
- data/app/views/catalog/email.erb +1 -0
- data/app/views/catalog/endnote.endnote.erb +1 -0
- data/app/views/catalog/index.atom.builder +109 -0
- data/app/views/catalog/index.html.erb +55 -0
- data/app/views/catalog/index.rss.builder +19 -0
- data/app/views/catalog/librarian_view.html.erb +3 -0
- data/app/views/catalog/opensearch.json.erb +0 -0
- data/app/views/catalog/opensearch.xml.builder +10 -0
- data/app/views/catalog/send_email_record.erb +0 -0
- data/app/views/catalog/show.endnote.erb +1 -0
- data/app/views/catalog/show.html.erb +40 -0
- data/app/views/catalog/show.refworks.erb +1 -0
- data/app/views/catalog/sms.erb +1 -0
- data/app/views/classify_concerns/new.html.erb +24 -0
- data/app/views/common_objects/_generic_file.html.erb +0 -0
- data/app/views/common_objects/_senior_thesis.html.erb +2 -0
- data/app/views/common_objects/show.html.erb +11 -0
- data/app/views/common_objects/show_stub_information.html.erb +13 -0
- data/app/views/curation_concern/_content_license.html.erb +16 -0
- data/app/views/curation_concern/_contributor_agreement.html.erb +27 -0
- data/app/views/curation_concern/_doi.html.erb +43 -0
- data/app/views/curation_concern/_media_display.html.erb +1 -0
- data/app/views/curation_concern/_permission.html.erb +39 -0
- data/app/views/curation_concern/_related_files.html.erb +46 -0
- data/app/views/curation_concern/generic_files/_attributes.html.erb +63 -0
- data/app/views/curation_concern/generic_files/_form.html.erb +57 -0
- data/app/views/curation_concern/generic_files/edit.html.erb +5 -0
- data/app/views/curation_concern/generic_files/new.html.erb +5 -0
- data/app/views/curation_concern/generic_files/show.html.erb +12 -0
- data/app/views/curation_concern/senior_theses/_attributes.html.erb +13 -0
- data/app/views/curation_concern/senior_theses/_form.html.erb +88 -0
- data/app/views/curation_concern/senior_theses/edit.html.erb +15 -0
- data/app/views/curation_concern/senior_theses/new.html.erb +14 -0
- data/app/views/curation_concern/senior_theses/show.html.erb +18 -0
- data/app/views/dashboard/_constraints.html.erb +22 -0
- data/app/views/dashboard/_did_you_mean.html.erb +26 -0
- data/app/views/dashboard/_document_list.html.erb +20 -0
- data/app/views/dashboard/_facet_layout.html.erb +27 -0
- data/app/views/dashboard/_facet_limit.html.erb +35 -0
- data/app/views/dashboard/_facet_pagination.html.erb +25 -0
- data/app/views/dashboard/_facet_selected.html.erb +28 -0
- data/app/views/dashboard/_facets.html.erb +22 -0
- data/app/views/dashboard/_index_partials/_default_group.html.erb +37 -0
- data/app/views/dashboard/_index_partials/_list_files.html.erb +66 -0
- data/app/views/dashboard/_index_partials/_thumbnail_display.html.erb +0 -0
- data/app/views/dashboard/_results_pagination.html.erb +22 -0
- data/app/views/dashboard/_search_form.html.erb +36 -0
- data/app/views/dashboard/_show_partials/_default.html.erb +38 -0
- data/app/views/dashboard/_show_partials/_default_details.html.erb +31 -0
- data/app/views/dashboard/_show_partials/_facets.html.erb +103 -0
- data/app/views/dashboard/_sort_and_per_page.html.erb +18 -0
- data/app/views/dashboard/facet.html.erb +38 -0
- data/app/views/dashboard/get_related_file.html.erb +4 -0
- data/app/views/dashboard/index.html.erb +60 -0
- data/app/views/errors/401.html.erb +5 -0
- data/app/views/errors/404.html.erb +16 -0
- data/app/views/errors/500.html.erb +10 -0
- data/app/views/help_requests/new.html.erb +60 -0
- data/app/views/layouts/application.html.erb +14 -0
- data/app/views/layouts/boilerplate.html.erb +28 -0
- data/app/views/layouts/common_objects.html.erb +45 -0
- data/app/views/layouts/curate_nd.html.erb +55 -0
- data/app/views/layouts/curate_nd/1_column.html.erb +22 -0
- data/app/views/layouts/curate_nd/2_column.html.erb +26 -0
- data/app/views/layouts/curate_nd/catalog.html.erb +22 -0
- data/app/views/layouts/curate_nd/dashboard.html.erb +22 -0
- data/app/views/layouts/hydra-head.html.erb +95 -0
- data/app/views/shared/_action_bar.html.erb +30 -0
- data/app/views/shared/_flash_message.html.erb +9 -0
- data/app/views/shared/_site_search.html.erb +18 -0
- data/app/views/terms_of_service_agreements/new.html.erb +136 -0
- data/app/views/welcome/index.html.erb +21 -0
- data/app/workers/characterize_job.rb +4 -0
- data/app/workers/doi_worker.rb +16 -0
- data/config/routes.rb +35 -0
- data/lib/curate.rb +6 -0
- data/lib/curate/engine.rb +46 -0
- data/lib/curate/version.rb +1 -1
- data/spec/abilities/generic_file_abilities_spec.rb +55 -0
- data/spec/controllers/application_controller_spec.rb +38 -0
- data/spec/controllers/classify_concerns_controller_spec.rb +36 -0
- data/spec/controllers/common_objects_controller_spec.rb +112 -0
- data/spec/controllers/curation_concern/base_controller_spec.rb +14 -0
- data/spec/controllers/curation_concern/generic_files_controller_spec.rb +156 -0
- data/spec/controllers/dashboard_controller_spec.rb +85 -0
- data/spec/controllers/downloads_controller_spec.rb +42 -0
- data/spec/controllers/help_requests_controller_spec.rb +42 -0
- data/spec/controllers/terms_of_service_agreements_controller_spec.rb +30 -0
- data/spec/controllers/welcome_controller_spec.rb +10 -0
- data/spec/dummy/app/models/solr_document.rb +4 -0
- data/spec/dummy/app/models/user.rb +13 -0
- data/spec/dummy/config/application.rb +8 -1
- data/spec/dummy/config/database.yml +21 -22
- data/spec/dummy/config/doi.yml +11 -0
- data/spec/dummy/config/fedora.yml +20 -0
- data/spec/dummy/config/initializers/devise.rb +232 -0
- data/spec/dummy/config/initializers/hydra_config.rb +41 -0
- data/spec/dummy/config/initializers/mailboxer.rb +17 -0
- data/spec/dummy/config/initializers/redis_config.rb +45 -0
- data/spec/dummy/config/initializers/sufia.rb +66 -0
- data/spec/dummy/config/purl.yml +15 -0
- data/spec/dummy/config/redis.yml +6 -0
- data/spec/dummy/config/role_map_ci.yml +15 -0
- data/spec/dummy/config/role_map_cucumber.yml +10 -0
- data/spec/dummy/config/role_map_development.yml +12 -0
- data/spec/dummy/config/role_map_pre_production.yml +2 -0
- data/spec/dummy/config/role_map_production.yml +2 -0
- data/spec/dummy/config/role_map_test.yml +15 -0
- data/spec/dummy/config/routes.rb +4 -55
- data/spec/dummy/config/solr.yml +17 -0
- data/spec/dummy/db/migrate/20130130142162_create_purl.rb +55 -0
- data/spec/dummy/db/migrate/20130312135359_create_help_requests.rb +22 -0
- data/spec/dummy/db/migrate/20130408165008_create_users.rb +11 -0
- data/spec/dummy/db/migrate/20130408165009_acts_as_follower_migration.rb +31 -0
- data/spec/dummy/db/migrate/20130408165010_add_social_to_users.rb +27 -0
- data/spec/dummy/db/migrate/20130408165011_create_single_use_links.rb +12 -0
- data/spec/dummy/db/migrate/20130408165012_add_ldap_attrs_to_user.rb +41 -0
- data/spec/dummy/db/migrate/20130408165013_add_avatars_to_users.rb +23 -0
- data/spec/dummy/db/migrate/20130408165014_create_checksum_audit_logs.rb +34 -0
- data/spec/dummy/db/migrate/20130408165015_create_version_committers.rb +29 -0
- data/spec/dummy/db/migrate/20130408165016_add_groups_to_users.rb +25 -0
- data/spec/dummy/db/migrate/20130408165017_create_local_authorities.rb +64 -0
- data/spec/dummy/db/migrate/20130408165018_create_trophies.rb +10 -0
- data/spec/dummy/db/migrate/20130408165022_create_mailboxer.mailboxer_engine.rb +62 -0
- data/spec/dummy/db/migrate/20130408165023_add_notified_object.mailboxer_engine.rb +18 -0
- data/spec/dummy/db/migrate/20130408165024_add_notification_code.mailboxer_engine.rb +14 -0
- data/spec/dummy/db/migrate/20130408165025_add_attachments.mailboxer_engine.rb +10 -0
- data/spec/dummy/db/migrate/20130408165026_rename_receipts_read.mailboxer_engine.rb +10 -0
- data/spec/dummy/db/schema.rb +197 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/fedora_conf/conf/development/fedora.fcfg +953 -0
- data/spec/dummy/fedora_conf/conf/test/fedora.fcfg +953 -0
- data/spec/dummy/log/development.log +1791 -0
- data/spec/dummy/log/test.log +176333 -0
- data/spec/dummy/solr_conf/conf/schema.xml +692 -0
- data/spec/dummy/solr_conf/conf/solrconfig.xml +299 -0
- data/spec/dummy/solr_conf/solr.xml +35 -0
- data/spec/factories/create_curation_concern.rb +11 -0
- data/spec/factories/create_generic_file.rb +36 -0
- data/spec/factories/help_requests.rb +10 -0
- data/spec/factories/mock_curation_concerns.rb +4 -0
- data/spec/factories/users.rb +8 -0
- data/spec/helpers/application_helper_spec.rb +139 -0
- data/spec/helpers/common_objects_helper_spec.rb +9 -0
- data/spec/models/access_right_spec.rb +47 -0
- data/spec/models/classify_concern_spec.rb +30 -0
- data/spec/models/contributor_agreement_spec.rb +45 -0
- data/spec/models/digital_object_identifier_spec.rb +50 -0
- data/spec/models/help_request_spec.rb +5 -0
- data/spec/models/mint_doi_spec.rb +79 -0
- data/spec/models/mint_purl_spec.rb +38 -0
- data/spec/models/object_access_spec.rb +24 -0
- data/spec/models/purl_spec.rb +22 -0
- data/spec/models/repo_object_spec.rb +39 -0
- data/spec/repository_models/curation_concern/embargoable_spec.rb +69 -0
- data/spec/repository_models/generic_file_spec.rb +38 -0
- data/spec/services/anti_virus_scanner_spec.rb +26 -0
- data/spec/services/curation_concern/base_actor_spec.rb +28 -0
- data/spec/services/curation_concern/generic_file_actor_spec.rb +75 -0
- data/spec/services/curation_concern_spec.rb +34 -0
- data/spec/spec_helper.rb +54 -1
- data/spec/support/environment_override.rb +17 -0
- data/spec/support/matchers/raise_rescue_response_type_matcher.rb +42 -0
- data/spec/support/mock_curation_concern.rb +61 -0
- data/spec/support/shared/shared_examples_is_embargoable.rb +9 -0
- data/spec/support/shared/shared_examples_with_access_rights.rb +33 -0
- data/spec/workers/characterize_job_spec.rb +26 -0
- metadata +686 -10
- data/MIT-LICENSE +0 -20
|
@@ -0,0 +1,1791 @@
|
|
|
1
|
+
Connecting to database specified by database.yml
|
|
2
|
+
Mysql2::Error: Table 'curate_development.local_authorities' doesn't exist: SHOW FULL FIELDS FROM `local_authorities`
|
|
3
|
+
Connecting to database specified by database.yml
|
|
4
|
+
Couldn't find SolrDocument
|
|
5
|
+
Connecting to database specified by database.yml
|
|
6
|
+
Couldn't find SolrDocument
|
|
7
|
+
Connecting to database specified by database.yml
|
|
8
|
+
Couldn't find SolrDocument
|
|
9
|
+
Connecting to database specified by database.yml
|
|
10
|
+
Couldn't find SolrDocument
|
|
11
|
+
Connecting to database specified by database.yml
|
|
12
|
+
Couldn't find SolrDocument
|
|
13
|
+
Connecting to database specified by database.yml
|
|
14
|
+
Couldn't find SolrDocument
|
|
15
|
+
Connecting to database specified by database.yml
|
|
16
|
+
Couldn't find SolrDocument
|
|
17
|
+
Connecting to database specified by database.yml
|
|
18
|
+
Mysql2::Error: Table 'curate_development.local_authorities' doesn't exist: SHOW FULL FIELDS FROM `local_authorities`
|
|
19
|
+
Connecting to database specified by database.yml
|
|
20
|
+
Couldn't find SolrDocument
|
|
21
|
+
[1m[36m (22.6ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
|
22
|
+
[1m[35m (21.7ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
|
23
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
24
|
+
Migrating to ActsAsFollowerMigration (20130408165009)
|
|
25
|
+
[1m[35m (10.7ms)[0m CREATE TABLE `follows` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `followable_id` int(11) NOT NULL, `followable_type` varchar(255) NOT NULL, `follower_id` int(11) NOT NULL, `follower_type` varchar(255) NOT NULL, `blocked` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
|
26
|
+
[1m[36m (18.5ms)[0m [1mCREATE INDEX `fk_follows` ON `follows` (`follower_id`, `follower_type`)[0m
|
|
27
|
+
[1m[35m (11.8ms)[0m CREATE INDEX `fk_followables` ON `follows` (`followable_id`, `followable_type`)
|
|
28
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165009')[0m
|
|
29
|
+
Migrating to AddSocialToUsers (20130408165010)
|
|
30
|
+
[1m[35m (0.2ms)[0m ALTER TABLE `users` ADD `facebook_handle` varchar(255)
|
|
31
|
+
Mysql2::Error: Table 'curate_development.users' doesn't exist: ALTER TABLE `users` ADD `facebook_handle` varchar(255)
|
|
32
|
+
Connecting to database specified by database.yml
|
|
33
|
+
Couldn't find SolrDocument
|
|
34
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
35
|
+
Migrating to CreateUsers (20130408165008)
|
|
36
|
+
[1m[35m (16.6ms)[0m CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
|
37
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165008')[0m
|
|
38
|
+
Migrating to ActsAsFollowerMigration (20130408165009)
|
|
39
|
+
Migrating to AddSocialToUsers (20130408165010)
|
|
40
|
+
[1m[35m (21.0ms)[0m ALTER TABLE `users` ADD `facebook_handle` varchar(255)
|
|
41
|
+
[1m[36m (12.4ms)[0m [1mALTER TABLE `users` ADD `twitter_handle` varchar(255)[0m
|
|
42
|
+
[1m[35m (15.1ms)[0m ALTER TABLE `users` ADD `googleplus_handle` varchar(255)
|
|
43
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165010')[0m
|
|
44
|
+
Migrating to CreateSingleUseLinks (20130408165011)
|
|
45
|
+
[1m[35m (20.8ms)[0m CREATE TABLE `single_use_links` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `downloadKey` varchar(255), `path` varchar(255), `itemId` varchar(255), `expires` datetime, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
|
46
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165011')[0m
|
|
47
|
+
Migrating to AddLdapAttrsToUser (20130408165012)
|
|
48
|
+
[1m[35m (14.9ms)[0m ALTER TABLE `users` ADD `display_name` varchar(255)
|
|
49
|
+
[1m[36m (15.0ms)[0m [1mALTER TABLE `users` ADD `address` varchar(255)[0m
|
|
50
|
+
[1m[35m (16.5ms)[0m ALTER TABLE `users` ADD `admin_area` varchar(255)
|
|
51
|
+
[1m[36m (17.0ms)[0m [1mALTER TABLE `users` ADD `department` varchar(255)[0m
|
|
52
|
+
[1m[35m (15.3ms)[0m ALTER TABLE `users` ADD `title` varchar(255)
|
|
53
|
+
[1m[36m (13.2ms)[0m [1mALTER TABLE `users` ADD `office` varchar(255)[0m
|
|
54
|
+
[1m[35m (15.7ms)[0m ALTER TABLE `users` ADD `chat_id` varchar(255)
|
|
55
|
+
[1m[36m (11.8ms)[0m [1mALTER TABLE `users` ADD `website` varchar(255)[0m
|
|
56
|
+
[1m[35m (13.8ms)[0m ALTER TABLE `users` ADD `affiliation` varchar(255)
|
|
57
|
+
[1m[36m (12.5ms)[0m [1mALTER TABLE `users` ADD `telephone` varchar(255)[0m
|
|
58
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165012')
|
|
59
|
+
Migrating to AddAvatarsToUsers (20130408165013)
|
|
60
|
+
[1m[36m (16.2ms)[0m [1mALTER TABLE `users` ADD `avatar_file_name` varchar(255)[0m
|
|
61
|
+
[1m[35m (15.0ms)[0m ALTER TABLE `users` ADD `avatar_content_type` varchar(255)
|
|
62
|
+
[1m[36m (19.5ms)[0m [1mALTER TABLE `users` ADD `avatar_file_size` int(11)[0m
|
|
63
|
+
[1m[35m (11.4ms)[0m ALTER TABLE `users` ADD `avatar_updated_at` datetime
|
|
64
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165013')[0m
|
|
65
|
+
Migrating to CreateChecksumAuditLogs (20130408165014)
|
|
66
|
+
[1m[35m (22.3ms)[0m CREATE TABLE `checksum_audit_logs` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `pid` varchar(255), `dsid` varchar(255), `version` varchar(255), `pass` int(11), `expected_result` varchar(255), `actual_result` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
|
67
|
+
[1m[36m (17.3ms)[0m [1mCREATE INDEX `by_pid_and_dsid` ON `checksum_audit_logs` (`pid`, `dsid`)[0m
|
|
68
|
+
[1m[35m (0.5ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165014')
|
|
69
|
+
Migrating to CreateVersionCommitters (20130408165015)
|
|
70
|
+
[1m[36m (12.4ms)[0m [1mCREATE TABLE `version_committers` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `obj_id` varchar(255), `datastream_id` varchar(255), `version_id` varchar(255), `committer_login` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
|
71
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165015')
|
|
72
|
+
Migrating to AddGroupsToUsers (20130408165016)
|
|
73
|
+
[1m[36m (21.1ms)[0m [1mALTER TABLE `users` ADD `group_list` text[0m
|
|
74
|
+
[1m[35m (10.8ms)[0m ALTER TABLE `users` ADD `groups_last_update` datetime
|
|
75
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165016')[0m
|
|
76
|
+
Migrating to CreateLocalAuthorities (20130408165017)
|
|
77
|
+
[1m[35m (15.5ms)[0m CREATE TABLE `local_authority_entries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `local_authority_id` int(11), `label` varchar(255), `uri` varchar(255)) ENGINE=InnoDB
|
|
78
|
+
[1m[36m (15.8ms)[0m [1mCREATE TABLE `local_authorities` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255)) ENGINE=InnoDB[0m
|
|
79
|
+
[1m[35m (11.0ms)[0m CREATE TABLE `domain_terms` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `model` varchar(255), `term` varchar(255)) ENGINE=InnoDB
|
|
80
|
+
[1m[36m (18.8ms)[0m [1mCREATE TABLE `domain_terms_local_authorities` (`domain_term_id` int(11), `local_authority_id` int(11)) ENGINE=InnoDB[0m
|
|
81
|
+
[1m[35m (13.6ms)[0m CREATE TABLE `subject_local_authority_entries` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `label` varchar(255), `lowerLabel` varchar(255), `url` varchar(255)) ENGINE=InnoDB
|
|
82
|
+
[1m[36m (20.4ms)[0m [1mCREATE INDEX `entries_by_term_and_label` ON `local_authority_entries` (`local_authority_id`, `label`)[0m
|
|
83
|
+
[1m[35m (20.9ms)[0m CREATE INDEX `entries_by_term_and_uri` ON `local_authority_entries` (`local_authority_id`, `uri`)
|
|
84
|
+
[1m[36m (22.5ms)[0m [1mCREATE INDEX `terms_by_model_and_term` ON `domain_terms` (`model`, `term`)[0m
|
|
85
|
+
[1m[35m (17.4ms)[0m CREATE INDEX `dtla_by_ids1` ON `domain_terms_local_authorities` (`local_authority_id`, `domain_term_id`)
|
|
86
|
+
[1m[36m (19.0ms)[0m [1mCREATE INDEX `dtla_by_ids2` ON `domain_terms_local_authorities` (`domain_term_id`, `local_authority_id`)[0m
|
|
87
|
+
[1m[35m (13.8ms)[0m CREATE INDEX `entries_by_lower_label` ON `subject_local_authority_entries` (`lowerLabel`)
|
|
88
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165017')[0m
|
|
89
|
+
Migrating to CreateTrophies (20130408165018)
|
|
90
|
+
[1m[35m (20.2ms)[0m CREATE TABLE `trophies` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `generic_file_id` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
|
91
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165018')[0m
|
|
92
|
+
Migrating to CreateMailboxer (20130408165022)
|
|
93
|
+
[1m[35m (12.4ms)[0m CREATE TABLE `conversations` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `subject` varchar(255) DEFAULT '', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
|
|
94
|
+
[1m[36m (19.5ms)[0m [1mCREATE TABLE `receipts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `receiver_id` int(11), `receiver_type` varchar(255), `notification_id` int(11) NOT NULL, `read` tinyint(1) DEFAULT 0, `trashed` tinyint(1) DEFAULT 0, `deleted` tinyint(1) DEFAULT 0, `mailbox_type` varchar(25), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
|
95
|
+
[1m[35m (8.3ms)[0m CREATE TABLE `notifications` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `type` varchar(255), `body` text, `subject` varchar(255) DEFAULT '', `sender_id` int(11), `sender_type` varchar(255), `object_id` int(11), `object_type` varchar(255), `conversation_id` int(11), `draft` tinyint(1) DEFAULT 0, `updated_at` datetime NOT NULL, `created_at` datetime NOT NULL) ENGINE=InnoDB
|
|
96
|
+
[1m[36m (11.5ms)[0m [1mCREATE INDEX `index_receipts_on_notification_id` ON `receipts` (`notification_id`)[0m
|
|
97
|
+
[1m[35m (18.1ms)[0m CREATE INDEX `index_notifications_on_conversation_id` ON `notifications` (`conversation_id`)
|
|
98
|
+
[1m[36m (12.8ms)[0m [1mALTER TABLE `receipts` ADD CONSTRAINT `receipts_on_notification_id` FOREIGN KEY (`notification_id`) REFERENCES `notifications`(id)[0m
|
|
99
|
+
[1m[35m (12.7ms)[0m ALTER TABLE `notifications` ADD CONSTRAINT `notifications_on_conversation_id` FOREIGN KEY (`conversation_id`) REFERENCES `conversations`(id)
|
|
100
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165022')[0m
|
|
101
|
+
Migrating to AddNotifiedObject (20130408165023)
|
|
102
|
+
[1m[35m (22.6ms)[0m ALTER TABLE `notifications` ADD `notified_object_id` int(11)
|
|
103
|
+
[1m[36m (12.7ms)[0m [1mALTER TABLE `notifications` ADD `notified_object_type` varchar(255)[0m
|
|
104
|
+
[1m[35m (17.3ms)[0m ALTER TABLE `notifications` DROP `object_id`
|
|
105
|
+
[1m[36m (12.4ms)[0m [1mALTER TABLE `notifications` DROP `object_type`[0m
|
|
106
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165023')
|
|
107
|
+
Migrating to AddNotificationCode (20130408165024)
|
|
108
|
+
[1m[36m (11.5ms)[0m [1mALTER TABLE `notifications` ADD `notification_code` varchar(255) DEFAULT NULL[0m
|
|
109
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165024')
|
|
110
|
+
Migrating to AddAttachments (20130408165025)
|
|
111
|
+
[1m[36m (10.2ms)[0m [1mALTER TABLE `notifications` ADD `attachment` varchar(255)[0m
|
|
112
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165025')
|
|
113
|
+
Migrating to RenameReceiptsRead (20130408165026)
|
|
114
|
+
[1m[36m (0.7ms)[0m [1mSHOW COLUMNS FROM `receipts` LIKE 'read'[0m
|
|
115
|
+
[1m[35m (14.2ms)[0m ALTER TABLE `receipts` CHANGE `read` `is_read` tinyint(1) DEFAULT 0
|
|
116
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20130408165026')[0m
|
|
117
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
118
|
+
[1m[36m (0.2ms)[0m [1m
|
|
119
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
120
|
+
,fk.referenced_column_name as 'primary_key'
|
|
121
|
+
,fk.column_name as 'column'
|
|
122
|
+
,fk.constraint_name as 'name'
|
|
123
|
+
FROM information_schema.key_column_usage fk
|
|
124
|
+
WHERE fk.referenced_column_name is not null
|
|
125
|
+
AND fk.table_schema = 'curate_development'
|
|
126
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
127
|
+
[0m
|
|
128
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `checksum_audit_logs`
|
|
129
|
+
[1m[36m (0.2ms)[0m [1m
|
|
130
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
131
|
+
,fk.referenced_column_name as 'primary_key'
|
|
132
|
+
,fk.column_name as 'column'
|
|
133
|
+
,fk.constraint_name as 'name'
|
|
134
|
+
FROM information_schema.key_column_usage fk
|
|
135
|
+
WHERE fk.referenced_column_name is not null
|
|
136
|
+
AND fk.table_schema = 'curate_development'
|
|
137
|
+
AND fk.table_name = 'conversations'
|
|
138
|
+
[0m
|
|
139
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `conversations`
|
|
140
|
+
[1m[36m (0.2ms)[0m [1m
|
|
141
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
142
|
+
,fk.referenced_column_name as 'primary_key'
|
|
143
|
+
,fk.column_name as 'column'
|
|
144
|
+
,fk.constraint_name as 'name'
|
|
145
|
+
FROM information_schema.key_column_usage fk
|
|
146
|
+
WHERE fk.referenced_column_name is not null
|
|
147
|
+
AND fk.table_schema = 'curate_development'
|
|
148
|
+
AND fk.table_name = 'domain_terms'
|
|
149
|
+
[0m
|
|
150
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `domain_terms`
|
|
151
|
+
[1m[36m (0.2ms)[0m [1m
|
|
152
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
153
|
+
,fk.referenced_column_name as 'primary_key'
|
|
154
|
+
,fk.column_name as 'column'
|
|
155
|
+
,fk.constraint_name as 'name'
|
|
156
|
+
FROM information_schema.key_column_usage fk
|
|
157
|
+
WHERE fk.referenced_column_name is not null
|
|
158
|
+
AND fk.table_schema = 'curate_development'
|
|
159
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
160
|
+
[0m
|
|
161
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `domain_terms_local_authorities`
|
|
162
|
+
[1m[36m (0.2ms)[0m [1m
|
|
163
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
164
|
+
,fk.referenced_column_name as 'primary_key'
|
|
165
|
+
,fk.column_name as 'column'
|
|
166
|
+
,fk.constraint_name as 'name'
|
|
167
|
+
FROM information_schema.key_column_usage fk
|
|
168
|
+
WHERE fk.referenced_column_name is not null
|
|
169
|
+
AND fk.table_schema = 'curate_development'
|
|
170
|
+
AND fk.table_name = 'follows'
|
|
171
|
+
[0m
|
|
172
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `follows`
|
|
173
|
+
[1m[36m (0.2ms)[0m [1m
|
|
174
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
175
|
+
,fk.referenced_column_name as 'primary_key'
|
|
176
|
+
,fk.column_name as 'column'
|
|
177
|
+
,fk.constraint_name as 'name'
|
|
178
|
+
FROM information_schema.key_column_usage fk
|
|
179
|
+
WHERE fk.referenced_column_name is not null
|
|
180
|
+
AND fk.table_schema = 'curate_development'
|
|
181
|
+
AND fk.table_name = 'local_authorities'
|
|
182
|
+
[0m
|
|
183
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `local_authorities`
|
|
184
|
+
[1m[36m (0.2ms)[0m [1m
|
|
185
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
186
|
+
,fk.referenced_column_name as 'primary_key'
|
|
187
|
+
,fk.column_name as 'column'
|
|
188
|
+
,fk.constraint_name as 'name'
|
|
189
|
+
FROM information_schema.key_column_usage fk
|
|
190
|
+
WHERE fk.referenced_column_name is not null
|
|
191
|
+
AND fk.table_schema = 'curate_development'
|
|
192
|
+
AND fk.table_name = 'local_authority_entries'
|
|
193
|
+
[0m
|
|
194
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `local_authority_entries`
|
|
195
|
+
[1m[36m (0.2ms)[0m [1m
|
|
196
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
197
|
+
,fk.referenced_column_name as 'primary_key'
|
|
198
|
+
,fk.column_name as 'column'
|
|
199
|
+
,fk.constraint_name as 'name'
|
|
200
|
+
FROM information_schema.key_column_usage fk
|
|
201
|
+
WHERE fk.referenced_column_name is not null
|
|
202
|
+
AND fk.table_schema = 'curate_development'
|
|
203
|
+
AND fk.table_name = 'notifications'
|
|
204
|
+
[0m
|
|
205
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `notifications`
|
|
206
|
+
[1m[36m (0.4ms)[0m [1m
|
|
207
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
208
|
+
,fk.referenced_column_name as 'primary_key'
|
|
209
|
+
,fk.column_name as 'column'
|
|
210
|
+
,fk.constraint_name as 'name'
|
|
211
|
+
FROM information_schema.key_column_usage fk
|
|
212
|
+
WHERE fk.referenced_column_name is not null
|
|
213
|
+
AND fk.table_schema = 'curate_development'
|
|
214
|
+
AND fk.table_name = 'receipts'
|
|
215
|
+
[0m
|
|
216
|
+
[1m[35m (0.2ms)[0m SHOW CREATE TABLE `receipts`
|
|
217
|
+
[1m[36m (0.3ms)[0m [1m
|
|
218
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
219
|
+
,fk.referenced_column_name as 'primary_key'
|
|
220
|
+
,fk.column_name as 'column'
|
|
221
|
+
,fk.constraint_name as 'name'
|
|
222
|
+
FROM information_schema.key_column_usage fk
|
|
223
|
+
WHERE fk.referenced_column_name is not null
|
|
224
|
+
AND fk.table_schema = 'curate_development'
|
|
225
|
+
AND fk.table_name = 'single_use_links'
|
|
226
|
+
[0m
|
|
227
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `single_use_links`
|
|
228
|
+
[1m[36m (0.2ms)[0m [1m
|
|
229
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
230
|
+
,fk.referenced_column_name as 'primary_key'
|
|
231
|
+
,fk.column_name as 'column'
|
|
232
|
+
,fk.constraint_name as 'name'
|
|
233
|
+
FROM information_schema.key_column_usage fk
|
|
234
|
+
WHERE fk.referenced_column_name is not null
|
|
235
|
+
AND fk.table_schema = 'curate_development'
|
|
236
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
237
|
+
[0m
|
|
238
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `subject_local_authority_entries`
|
|
239
|
+
[1m[36m (0.2ms)[0m [1m
|
|
240
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
241
|
+
,fk.referenced_column_name as 'primary_key'
|
|
242
|
+
,fk.column_name as 'column'
|
|
243
|
+
,fk.constraint_name as 'name'
|
|
244
|
+
FROM information_schema.key_column_usage fk
|
|
245
|
+
WHERE fk.referenced_column_name is not null
|
|
246
|
+
AND fk.table_schema = 'curate_development'
|
|
247
|
+
AND fk.table_name = 'trophies'
|
|
248
|
+
[0m
|
|
249
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `trophies`
|
|
250
|
+
[1m[36m (0.2ms)[0m [1m
|
|
251
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
252
|
+
,fk.referenced_column_name as 'primary_key'
|
|
253
|
+
,fk.column_name as 'column'
|
|
254
|
+
,fk.constraint_name as 'name'
|
|
255
|
+
FROM information_schema.key_column_usage fk
|
|
256
|
+
WHERE fk.referenced_column_name is not null
|
|
257
|
+
AND fk.table_schema = 'curate_development'
|
|
258
|
+
AND fk.table_name = 'users'
|
|
259
|
+
[0m
|
|
260
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `users`
|
|
261
|
+
[1m[36m (0.2ms)[0m [1m
|
|
262
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
263
|
+
,fk.referenced_column_name as 'primary_key'
|
|
264
|
+
,fk.column_name as 'column'
|
|
265
|
+
,fk.constraint_name as 'name'
|
|
266
|
+
FROM information_schema.key_column_usage fk
|
|
267
|
+
WHERE fk.referenced_column_name is not null
|
|
268
|
+
AND fk.table_schema = 'curate_development'
|
|
269
|
+
AND fk.table_name = 'version_committers'
|
|
270
|
+
[0m
|
|
271
|
+
[1m[35m (0.1ms)[0m SHOW CREATE TABLE `version_committers`
|
|
272
|
+
Connecting to database specified by database.yml
|
|
273
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
274
|
+
resetting mappings for Solrizer::FieldMapper
|
|
275
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
276
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
277
|
+
[1m[36mLocalAuthority Load (0.1ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
278
|
+
Couldn't find SolrDocument
|
|
279
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
280
|
+
[1m[36m (1.0ms)[0m [1mDROP TABLE `users`[0m
|
|
281
|
+
[1m[35m (0.4ms)[0m DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20130408165008'
|
|
282
|
+
[1m[36m (0.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
283
|
+
[1m[35m (0.2ms)[0m
|
|
284
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
285
|
+
,fk.referenced_column_name as 'primary_key'
|
|
286
|
+
,fk.column_name as 'column'
|
|
287
|
+
,fk.constraint_name as 'name'
|
|
288
|
+
FROM information_schema.key_column_usage fk
|
|
289
|
+
WHERE fk.referenced_column_name is not null
|
|
290
|
+
AND fk.table_schema = 'curate_development'
|
|
291
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
292
|
+
|
|
293
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `checksum_audit_logs`[0m
|
|
294
|
+
[1m[35m (0.2ms)[0m
|
|
295
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
296
|
+
,fk.referenced_column_name as 'primary_key'
|
|
297
|
+
,fk.column_name as 'column'
|
|
298
|
+
,fk.constraint_name as 'name'
|
|
299
|
+
FROM information_schema.key_column_usage fk
|
|
300
|
+
WHERE fk.referenced_column_name is not null
|
|
301
|
+
AND fk.table_schema = 'curate_development'
|
|
302
|
+
AND fk.table_name = 'conversations'
|
|
303
|
+
|
|
304
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `conversations`[0m
|
|
305
|
+
[1m[35m (0.2ms)[0m
|
|
306
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
307
|
+
,fk.referenced_column_name as 'primary_key'
|
|
308
|
+
,fk.column_name as 'column'
|
|
309
|
+
,fk.constraint_name as 'name'
|
|
310
|
+
FROM information_schema.key_column_usage fk
|
|
311
|
+
WHERE fk.referenced_column_name is not null
|
|
312
|
+
AND fk.table_schema = 'curate_development'
|
|
313
|
+
AND fk.table_name = 'domain_terms'
|
|
314
|
+
|
|
315
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms`[0m
|
|
316
|
+
[1m[35m (0.1ms)[0m
|
|
317
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
318
|
+
,fk.referenced_column_name as 'primary_key'
|
|
319
|
+
,fk.column_name as 'column'
|
|
320
|
+
,fk.constraint_name as 'name'
|
|
321
|
+
FROM information_schema.key_column_usage fk
|
|
322
|
+
WHERE fk.referenced_column_name is not null
|
|
323
|
+
AND fk.table_schema = 'curate_development'
|
|
324
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
325
|
+
|
|
326
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms_local_authorities`[0m
|
|
327
|
+
[1m[35m (0.1ms)[0m
|
|
328
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
329
|
+
,fk.referenced_column_name as 'primary_key'
|
|
330
|
+
,fk.column_name as 'column'
|
|
331
|
+
,fk.constraint_name as 'name'
|
|
332
|
+
FROM information_schema.key_column_usage fk
|
|
333
|
+
WHERE fk.referenced_column_name is not null
|
|
334
|
+
AND fk.table_schema = 'curate_development'
|
|
335
|
+
AND fk.table_name = 'follows'
|
|
336
|
+
|
|
337
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `follows`[0m
|
|
338
|
+
[1m[35m (0.1ms)[0m
|
|
339
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
340
|
+
,fk.referenced_column_name as 'primary_key'
|
|
341
|
+
,fk.column_name as 'column'
|
|
342
|
+
,fk.constraint_name as 'name'
|
|
343
|
+
FROM information_schema.key_column_usage fk
|
|
344
|
+
WHERE fk.referenced_column_name is not null
|
|
345
|
+
AND fk.table_schema = 'curate_development'
|
|
346
|
+
AND fk.table_name = 'local_authorities'
|
|
347
|
+
|
|
348
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authorities`[0m
|
|
349
|
+
[1m[35m (0.1ms)[0m
|
|
350
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
351
|
+
,fk.referenced_column_name as 'primary_key'
|
|
352
|
+
,fk.column_name as 'column'
|
|
353
|
+
,fk.constraint_name as 'name'
|
|
354
|
+
FROM information_schema.key_column_usage fk
|
|
355
|
+
WHERE fk.referenced_column_name is not null
|
|
356
|
+
AND fk.table_schema = 'curate_development'
|
|
357
|
+
AND fk.table_name = 'local_authority_entries'
|
|
358
|
+
|
|
359
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authority_entries`[0m
|
|
360
|
+
[1m[35m (0.2ms)[0m
|
|
361
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
362
|
+
,fk.referenced_column_name as 'primary_key'
|
|
363
|
+
,fk.column_name as 'column'
|
|
364
|
+
,fk.constraint_name as 'name'
|
|
365
|
+
FROM information_schema.key_column_usage fk
|
|
366
|
+
WHERE fk.referenced_column_name is not null
|
|
367
|
+
AND fk.table_schema = 'curate_development'
|
|
368
|
+
AND fk.table_name = 'notifications'
|
|
369
|
+
|
|
370
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `notifications`[0m
|
|
371
|
+
[1m[35m (0.3ms)[0m
|
|
372
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
373
|
+
,fk.referenced_column_name as 'primary_key'
|
|
374
|
+
,fk.column_name as 'column'
|
|
375
|
+
,fk.constraint_name as 'name'
|
|
376
|
+
FROM information_schema.key_column_usage fk
|
|
377
|
+
WHERE fk.referenced_column_name is not null
|
|
378
|
+
AND fk.table_schema = 'curate_development'
|
|
379
|
+
AND fk.table_name = 'receipts'
|
|
380
|
+
|
|
381
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `receipts`[0m
|
|
382
|
+
[1m[35m (0.2ms)[0m
|
|
383
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
384
|
+
,fk.referenced_column_name as 'primary_key'
|
|
385
|
+
,fk.column_name as 'column'
|
|
386
|
+
,fk.constraint_name as 'name'
|
|
387
|
+
FROM information_schema.key_column_usage fk
|
|
388
|
+
WHERE fk.referenced_column_name is not null
|
|
389
|
+
AND fk.table_schema = 'curate_development'
|
|
390
|
+
AND fk.table_name = 'single_use_links'
|
|
391
|
+
|
|
392
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `single_use_links`[0m
|
|
393
|
+
[1m[35m (0.2ms)[0m
|
|
394
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
395
|
+
,fk.referenced_column_name as 'primary_key'
|
|
396
|
+
,fk.column_name as 'column'
|
|
397
|
+
,fk.constraint_name as 'name'
|
|
398
|
+
FROM information_schema.key_column_usage fk
|
|
399
|
+
WHERE fk.referenced_column_name is not null
|
|
400
|
+
AND fk.table_schema = 'curate_development'
|
|
401
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
402
|
+
|
|
403
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `subject_local_authority_entries`[0m
|
|
404
|
+
[1m[35m (0.1ms)[0m
|
|
405
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
406
|
+
,fk.referenced_column_name as 'primary_key'
|
|
407
|
+
,fk.column_name as 'column'
|
|
408
|
+
,fk.constraint_name as 'name'
|
|
409
|
+
FROM information_schema.key_column_usage fk
|
|
410
|
+
WHERE fk.referenced_column_name is not null
|
|
411
|
+
AND fk.table_schema = 'curate_development'
|
|
412
|
+
AND fk.table_name = 'trophies'
|
|
413
|
+
|
|
414
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `trophies`[0m
|
|
415
|
+
[1m[35m (0.1ms)[0m
|
|
416
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
417
|
+
,fk.referenced_column_name as 'primary_key'
|
|
418
|
+
,fk.column_name as 'column'
|
|
419
|
+
,fk.constraint_name as 'name'
|
|
420
|
+
FROM information_schema.key_column_usage fk
|
|
421
|
+
WHERE fk.referenced_column_name is not null
|
|
422
|
+
AND fk.table_schema = 'curate_development'
|
|
423
|
+
AND fk.table_name = 'version_committers'
|
|
424
|
+
|
|
425
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `version_committers`[0m
|
|
426
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
427
|
+
[1m[36m (23.8ms)[0m [1mCREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `email` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
|
428
|
+
[1m[35m (0.5ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165008')
|
|
429
|
+
[1m[36m (47.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
430
|
+
[1m[35m (0.2ms)[0m
|
|
431
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
432
|
+
,fk.referenced_column_name as 'primary_key'
|
|
433
|
+
,fk.column_name as 'column'
|
|
434
|
+
,fk.constraint_name as 'name'
|
|
435
|
+
FROM information_schema.key_column_usage fk
|
|
436
|
+
WHERE fk.referenced_column_name is not null
|
|
437
|
+
AND fk.table_schema = 'curate_development'
|
|
438
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
439
|
+
|
|
440
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `checksum_audit_logs`[0m
|
|
441
|
+
[1m[35m (0.2ms)[0m
|
|
442
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
443
|
+
,fk.referenced_column_name as 'primary_key'
|
|
444
|
+
,fk.column_name as 'column'
|
|
445
|
+
,fk.constraint_name as 'name'
|
|
446
|
+
FROM information_schema.key_column_usage fk
|
|
447
|
+
WHERE fk.referenced_column_name is not null
|
|
448
|
+
AND fk.table_schema = 'curate_development'
|
|
449
|
+
AND fk.table_name = 'conversations'
|
|
450
|
+
|
|
451
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `conversations`[0m
|
|
452
|
+
[1m[35m (0.2ms)[0m
|
|
453
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
454
|
+
,fk.referenced_column_name as 'primary_key'
|
|
455
|
+
,fk.column_name as 'column'
|
|
456
|
+
,fk.constraint_name as 'name'
|
|
457
|
+
FROM information_schema.key_column_usage fk
|
|
458
|
+
WHERE fk.referenced_column_name is not null
|
|
459
|
+
AND fk.table_schema = 'curate_development'
|
|
460
|
+
AND fk.table_name = 'domain_terms'
|
|
461
|
+
|
|
462
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms`[0m
|
|
463
|
+
[1m[35m (0.1ms)[0m
|
|
464
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
465
|
+
,fk.referenced_column_name as 'primary_key'
|
|
466
|
+
,fk.column_name as 'column'
|
|
467
|
+
,fk.constraint_name as 'name'
|
|
468
|
+
FROM information_schema.key_column_usage fk
|
|
469
|
+
WHERE fk.referenced_column_name is not null
|
|
470
|
+
AND fk.table_schema = 'curate_development'
|
|
471
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
472
|
+
|
|
473
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms_local_authorities`[0m
|
|
474
|
+
[1m[35m (0.2ms)[0m
|
|
475
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
476
|
+
,fk.referenced_column_name as 'primary_key'
|
|
477
|
+
,fk.column_name as 'column'
|
|
478
|
+
,fk.constraint_name as 'name'
|
|
479
|
+
FROM information_schema.key_column_usage fk
|
|
480
|
+
WHERE fk.referenced_column_name is not null
|
|
481
|
+
AND fk.table_schema = 'curate_development'
|
|
482
|
+
AND fk.table_name = 'follows'
|
|
483
|
+
|
|
484
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `follows`[0m
|
|
485
|
+
[1m[35m (0.1ms)[0m
|
|
486
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
487
|
+
,fk.referenced_column_name as 'primary_key'
|
|
488
|
+
,fk.column_name as 'column'
|
|
489
|
+
,fk.constraint_name as 'name'
|
|
490
|
+
FROM information_schema.key_column_usage fk
|
|
491
|
+
WHERE fk.referenced_column_name is not null
|
|
492
|
+
AND fk.table_schema = 'curate_development'
|
|
493
|
+
AND fk.table_name = 'local_authorities'
|
|
494
|
+
|
|
495
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authorities`[0m
|
|
496
|
+
[1m[35m (0.2ms)[0m
|
|
497
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
498
|
+
,fk.referenced_column_name as 'primary_key'
|
|
499
|
+
,fk.column_name as 'column'
|
|
500
|
+
,fk.constraint_name as 'name'
|
|
501
|
+
FROM information_schema.key_column_usage fk
|
|
502
|
+
WHERE fk.referenced_column_name is not null
|
|
503
|
+
AND fk.table_schema = 'curate_development'
|
|
504
|
+
AND fk.table_name = 'local_authority_entries'
|
|
505
|
+
|
|
506
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authority_entries`[0m
|
|
507
|
+
[1m[35m (0.2ms)[0m
|
|
508
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
509
|
+
,fk.referenced_column_name as 'primary_key'
|
|
510
|
+
,fk.column_name as 'column'
|
|
511
|
+
,fk.constraint_name as 'name'
|
|
512
|
+
FROM information_schema.key_column_usage fk
|
|
513
|
+
WHERE fk.referenced_column_name is not null
|
|
514
|
+
AND fk.table_schema = 'curate_development'
|
|
515
|
+
AND fk.table_name = 'notifications'
|
|
516
|
+
|
|
517
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `notifications`[0m
|
|
518
|
+
[1m[35m (0.2ms)[0m
|
|
519
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
520
|
+
,fk.referenced_column_name as 'primary_key'
|
|
521
|
+
,fk.column_name as 'column'
|
|
522
|
+
,fk.constraint_name as 'name'
|
|
523
|
+
FROM information_schema.key_column_usage fk
|
|
524
|
+
WHERE fk.referenced_column_name is not null
|
|
525
|
+
AND fk.table_schema = 'curate_development'
|
|
526
|
+
AND fk.table_name = 'receipts'
|
|
527
|
+
|
|
528
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `receipts`[0m
|
|
529
|
+
[1m[35m (0.1ms)[0m
|
|
530
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
531
|
+
,fk.referenced_column_name as 'primary_key'
|
|
532
|
+
,fk.column_name as 'column'
|
|
533
|
+
,fk.constraint_name as 'name'
|
|
534
|
+
FROM information_schema.key_column_usage fk
|
|
535
|
+
WHERE fk.referenced_column_name is not null
|
|
536
|
+
AND fk.table_schema = 'curate_development'
|
|
537
|
+
AND fk.table_name = 'single_use_links'
|
|
538
|
+
|
|
539
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `single_use_links`[0m
|
|
540
|
+
[1m[35m (0.1ms)[0m
|
|
541
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
542
|
+
,fk.referenced_column_name as 'primary_key'
|
|
543
|
+
,fk.column_name as 'column'
|
|
544
|
+
,fk.constraint_name as 'name'
|
|
545
|
+
FROM information_schema.key_column_usage fk
|
|
546
|
+
WHERE fk.referenced_column_name is not null
|
|
547
|
+
AND fk.table_schema = 'curate_development'
|
|
548
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
549
|
+
|
|
550
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `subject_local_authority_entries`[0m
|
|
551
|
+
[1m[35m (0.1ms)[0m
|
|
552
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
553
|
+
,fk.referenced_column_name as 'primary_key'
|
|
554
|
+
,fk.column_name as 'column'
|
|
555
|
+
,fk.constraint_name as 'name'
|
|
556
|
+
FROM information_schema.key_column_usage fk
|
|
557
|
+
WHERE fk.referenced_column_name is not null
|
|
558
|
+
AND fk.table_schema = 'curate_development'
|
|
559
|
+
AND fk.table_name = 'trophies'
|
|
560
|
+
|
|
561
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `trophies`[0m
|
|
562
|
+
[1m[35m (0.1ms)[0m
|
|
563
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
564
|
+
,fk.referenced_column_name as 'primary_key'
|
|
565
|
+
,fk.column_name as 'column'
|
|
566
|
+
,fk.constraint_name as 'name'
|
|
567
|
+
FROM information_schema.key_column_usage fk
|
|
568
|
+
WHERE fk.referenced_column_name is not null
|
|
569
|
+
AND fk.table_schema = 'curate_development'
|
|
570
|
+
AND fk.table_name = 'users'
|
|
571
|
+
|
|
572
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `users`[0m
|
|
573
|
+
[1m[35m (0.1ms)[0m
|
|
574
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
575
|
+
,fk.referenced_column_name as 'primary_key'
|
|
576
|
+
,fk.column_name as 'column'
|
|
577
|
+
,fk.constraint_name as 'name'
|
|
578
|
+
FROM information_schema.key_column_usage fk
|
|
579
|
+
WHERE fk.referenced_column_name is not null
|
|
580
|
+
AND fk.table_schema = 'curate_development'
|
|
581
|
+
AND fk.table_name = 'version_committers'
|
|
582
|
+
|
|
583
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `version_committers`[0m
|
|
584
|
+
Connecting to database specified by database.yml
|
|
585
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
586
|
+
resetting mappings for Solrizer::FieldMapper
|
|
587
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
588
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
589
|
+
[1m[36mLocalAuthority Load (0.1ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
590
|
+
Couldn't find SolrDocument
|
|
591
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
592
|
+
Migrating to CreatePurl (20130130142162)
|
|
593
|
+
[1m[36m (12.0ms)[0m [1mCREATE TABLE `repo_object` (`repo_object_id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `filename` varchar(255), `url` varchar(255), `date_added` datetime, `add_source_ip` varchar(255), `date_modified` datetime, `information` varchar(255)) ENGINE=InnoDB[0m
|
|
594
|
+
[1m[35m (19.9ms)[0m CREATE TABLE `purl` (`purl_id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `repo_object_id` int(11), `access_count` varchar(255), `last_accessed` datetime, `source_app` varchar(255), `date_created` datetime) ENGINE=InnoDB
|
|
595
|
+
[1m[36m (13.7ms)[0m [1mCREATE TABLE `object_access` (`access_id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `date_accessed` datetime, `ip_address` varchar(255), `host_name` varchar(255), `user_agent` varchar(255), `request_method` varchar(255), `path_info` varchar(255), `repo_object_id` int(11), `purl_id` int(11)) ENGINE=InnoDB[0m
|
|
596
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130130142162')
|
|
597
|
+
Migrating to CreateHelpRequests (20130312135359)
|
|
598
|
+
[1m[36m (18.5ms)[0m [1mCREATE TABLE `help_requests` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `view_port` varchar(255), `current_url` text, `user_agent` varchar(255), `resolution` varchar(255), `how_can_we_help_you` text, `javascript_enabled` tinyint(1), `release_version` varchar(255), `user_id` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
|
599
|
+
[1m[35m (18.4ms)[0m CREATE INDEX `index_help_requests_on_user_id` ON `help_requests` (`user_id`)
|
|
600
|
+
[1m[36m (13.9ms)[0m [1mCREATE INDEX `index_help_requests_on_created_at` ON `help_requests` (`created_at`)[0m
|
|
601
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130312135359')
|
|
602
|
+
Migrating to CreateUsers (20130408165008)
|
|
603
|
+
Migrating to ActsAsFollowerMigration (20130408165009)
|
|
604
|
+
Migrating to AddSocialToUsers (20130408165010)
|
|
605
|
+
Migrating to CreateSingleUseLinks (20130408165011)
|
|
606
|
+
Migrating to AddLdapAttrsToUser (20130408165012)
|
|
607
|
+
Migrating to AddAvatarsToUsers (20130408165013)
|
|
608
|
+
Migrating to CreateChecksumAuditLogs (20130408165014)
|
|
609
|
+
Migrating to CreateVersionCommitters (20130408165015)
|
|
610
|
+
Migrating to AddGroupsToUsers (20130408165016)
|
|
611
|
+
Migrating to CreateLocalAuthorities (20130408165017)
|
|
612
|
+
Migrating to CreateTrophies (20130408165018)
|
|
613
|
+
Migrating to CreateMailboxer (20130408165022)
|
|
614
|
+
Migrating to AddNotifiedObject (20130408165023)
|
|
615
|
+
Migrating to AddNotificationCode (20130408165024)
|
|
616
|
+
Migrating to AddAttachments (20130408165025)
|
|
617
|
+
Migrating to RenameReceiptsRead (20130408165026)
|
|
618
|
+
[1m[36m (0.2ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
619
|
+
[1m[35m (0.3ms)[0m
|
|
620
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
621
|
+
,fk.referenced_column_name as 'primary_key'
|
|
622
|
+
,fk.column_name as 'column'
|
|
623
|
+
,fk.constraint_name as 'name'
|
|
624
|
+
FROM information_schema.key_column_usage fk
|
|
625
|
+
WHERE fk.referenced_column_name is not null
|
|
626
|
+
AND fk.table_schema = 'curate_development'
|
|
627
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
628
|
+
|
|
629
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `checksum_audit_logs`[0m
|
|
630
|
+
[1m[35m (0.2ms)[0m
|
|
631
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
632
|
+
,fk.referenced_column_name as 'primary_key'
|
|
633
|
+
,fk.column_name as 'column'
|
|
634
|
+
,fk.constraint_name as 'name'
|
|
635
|
+
FROM information_schema.key_column_usage fk
|
|
636
|
+
WHERE fk.referenced_column_name is not null
|
|
637
|
+
AND fk.table_schema = 'curate_development'
|
|
638
|
+
AND fk.table_name = 'conversations'
|
|
639
|
+
|
|
640
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `conversations`[0m
|
|
641
|
+
[1m[35m (0.2ms)[0m
|
|
642
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
643
|
+
,fk.referenced_column_name as 'primary_key'
|
|
644
|
+
,fk.column_name as 'column'
|
|
645
|
+
,fk.constraint_name as 'name'
|
|
646
|
+
FROM information_schema.key_column_usage fk
|
|
647
|
+
WHERE fk.referenced_column_name is not null
|
|
648
|
+
AND fk.table_schema = 'curate_development'
|
|
649
|
+
AND fk.table_name = 'domain_terms'
|
|
650
|
+
|
|
651
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms`[0m
|
|
652
|
+
[1m[35m (0.2ms)[0m
|
|
653
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
654
|
+
,fk.referenced_column_name as 'primary_key'
|
|
655
|
+
,fk.column_name as 'column'
|
|
656
|
+
,fk.constraint_name as 'name'
|
|
657
|
+
FROM information_schema.key_column_usage fk
|
|
658
|
+
WHERE fk.referenced_column_name is not null
|
|
659
|
+
AND fk.table_schema = 'curate_development'
|
|
660
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
661
|
+
|
|
662
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms_local_authorities`[0m
|
|
663
|
+
[1m[35m (0.2ms)[0m
|
|
664
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
665
|
+
,fk.referenced_column_name as 'primary_key'
|
|
666
|
+
,fk.column_name as 'column'
|
|
667
|
+
,fk.constraint_name as 'name'
|
|
668
|
+
FROM information_schema.key_column_usage fk
|
|
669
|
+
WHERE fk.referenced_column_name is not null
|
|
670
|
+
AND fk.table_schema = 'curate_development'
|
|
671
|
+
AND fk.table_name = 'follows'
|
|
672
|
+
|
|
673
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `follows`[0m
|
|
674
|
+
[1m[35m (0.2ms)[0m
|
|
675
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
676
|
+
,fk.referenced_column_name as 'primary_key'
|
|
677
|
+
,fk.column_name as 'column'
|
|
678
|
+
,fk.constraint_name as 'name'
|
|
679
|
+
FROM information_schema.key_column_usage fk
|
|
680
|
+
WHERE fk.referenced_column_name is not null
|
|
681
|
+
AND fk.table_schema = 'curate_development'
|
|
682
|
+
AND fk.table_name = 'help_requests'
|
|
683
|
+
|
|
684
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `help_requests`[0m
|
|
685
|
+
[1m[35m (0.2ms)[0m
|
|
686
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
687
|
+
,fk.referenced_column_name as 'primary_key'
|
|
688
|
+
,fk.column_name as 'column'
|
|
689
|
+
,fk.constraint_name as 'name'
|
|
690
|
+
FROM information_schema.key_column_usage fk
|
|
691
|
+
WHERE fk.referenced_column_name is not null
|
|
692
|
+
AND fk.table_schema = 'curate_development'
|
|
693
|
+
AND fk.table_name = 'local_authorities'
|
|
694
|
+
|
|
695
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authorities`[0m
|
|
696
|
+
[1m[35m (0.2ms)[0m
|
|
697
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
698
|
+
,fk.referenced_column_name as 'primary_key'
|
|
699
|
+
,fk.column_name as 'column'
|
|
700
|
+
,fk.constraint_name as 'name'
|
|
701
|
+
FROM information_schema.key_column_usage fk
|
|
702
|
+
WHERE fk.referenced_column_name is not null
|
|
703
|
+
AND fk.table_schema = 'curate_development'
|
|
704
|
+
AND fk.table_name = 'local_authority_entries'
|
|
705
|
+
|
|
706
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authority_entries`[0m
|
|
707
|
+
[1m[35m (0.2ms)[0m
|
|
708
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
709
|
+
,fk.referenced_column_name as 'primary_key'
|
|
710
|
+
,fk.column_name as 'column'
|
|
711
|
+
,fk.constraint_name as 'name'
|
|
712
|
+
FROM information_schema.key_column_usage fk
|
|
713
|
+
WHERE fk.referenced_column_name is not null
|
|
714
|
+
AND fk.table_schema = 'curate_development'
|
|
715
|
+
AND fk.table_name = 'notifications'
|
|
716
|
+
|
|
717
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `notifications`[0m
|
|
718
|
+
[1m[35m (0.3ms)[0m
|
|
719
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
720
|
+
,fk.referenced_column_name as 'primary_key'
|
|
721
|
+
,fk.column_name as 'column'
|
|
722
|
+
,fk.constraint_name as 'name'
|
|
723
|
+
FROM information_schema.key_column_usage fk
|
|
724
|
+
WHERE fk.referenced_column_name is not null
|
|
725
|
+
AND fk.table_schema = 'curate_development'
|
|
726
|
+
AND fk.table_name = 'object_access'
|
|
727
|
+
|
|
728
|
+
[1m[36m (0.2ms)[0m [1mSHOW CREATE TABLE `object_access`[0m
|
|
729
|
+
[1m[35m (0.2ms)[0m
|
|
730
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
731
|
+
,fk.referenced_column_name as 'primary_key'
|
|
732
|
+
,fk.column_name as 'column'
|
|
733
|
+
,fk.constraint_name as 'name'
|
|
734
|
+
FROM information_schema.key_column_usage fk
|
|
735
|
+
WHERE fk.referenced_column_name is not null
|
|
736
|
+
AND fk.table_schema = 'curate_development'
|
|
737
|
+
AND fk.table_name = 'purl'
|
|
738
|
+
|
|
739
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `purl`[0m
|
|
740
|
+
[1m[35m (0.2ms)[0m
|
|
741
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
742
|
+
,fk.referenced_column_name as 'primary_key'
|
|
743
|
+
,fk.column_name as 'column'
|
|
744
|
+
,fk.constraint_name as 'name'
|
|
745
|
+
FROM information_schema.key_column_usage fk
|
|
746
|
+
WHERE fk.referenced_column_name is not null
|
|
747
|
+
AND fk.table_schema = 'curate_development'
|
|
748
|
+
AND fk.table_name = 'receipts'
|
|
749
|
+
|
|
750
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `receipts`[0m
|
|
751
|
+
[1m[35m (0.2ms)[0m
|
|
752
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
753
|
+
,fk.referenced_column_name as 'primary_key'
|
|
754
|
+
,fk.column_name as 'column'
|
|
755
|
+
,fk.constraint_name as 'name'
|
|
756
|
+
FROM information_schema.key_column_usage fk
|
|
757
|
+
WHERE fk.referenced_column_name is not null
|
|
758
|
+
AND fk.table_schema = 'curate_development'
|
|
759
|
+
AND fk.table_name = 'repo_object'
|
|
760
|
+
|
|
761
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `repo_object`[0m
|
|
762
|
+
[1m[35m (0.1ms)[0m
|
|
763
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
764
|
+
,fk.referenced_column_name as 'primary_key'
|
|
765
|
+
,fk.column_name as 'column'
|
|
766
|
+
,fk.constraint_name as 'name'
|
|
767
|
+
FROM information_schema.key_column_usage fk
|
|
768
|
+
WHERE fk.referenced_column_name is not null
|
|
769
|
+
AND fk.table_schema = 'curate_development'
|
|
770
|
+
AND fk.table_name = 'single_use_links'
|
|
771
|
+
|
|
772
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `single_use_links`[0m
|
|
773
|
+
[1m[35m (0.1ms)[0m
|
|
774
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
775
|
+
,fk.referenced_column_name as 'primary_key'
|
|
776
|
+
,fk.column_name as 'column'
|
|
777
|
+
,fk.constraint_name as 'name'
|
|
778
|
+
FROM information_schema.key_column_usage fk
|
|
779
|
+
WHERE fk.referenced_column_name is not null
|
|
780
|
+
AND fk.table_schema = 'curate_development'
|
|
781
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
782
|
+
|
|
783
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `subject_local_authority_entries`[0m
|
|
784
|
+
[1m[35m (0.1ms)[0m
|
|
785
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
786
|
+
,fk.referenced_column_name as 'primary_key'
|
|
787
|
+
,fk.column_name as 'column'
|
|
788
|
+
,fk.constraint_name as 'name'
|
|
789
|
+
FROM information_schema.key_column_usage fk
|
|
790
|
+
WHERE fk.referenced_column_name is not null
|
|
791
|
+
AND fk.table_schema = 'curate_development'
|
|
792
|
+
AND fk.table_name = 'trophies'
|
|
793
|
+
|
|
794
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `trophies`[0m
|
|
795
|
+
[1m[35m (0.1ms)[0m
|
|
796
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
797
|
+
,fk.referenced_column_name as 'primary_key'
|
|
798
|
+
,fk.column_name as 'column'
|
|
799
|
+
,fk.constraint_name as 'name'
|
|
800
|
+
FROM information_schema.key_column_usage fk
|
|
801
|
+
WHERE fk.referenced_column_name is not null
|
|
802
|
+
AND fk.table_schema = 'curate_development'
|
|
803
|
+
AND fk.table_name = 'users'
|
|
804
|
+
|
|
805
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `users`[0m
|
|
806
|
+
[1m[35m (0.1ms)[0m
|
|
807
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
808
|
+
,fk.referenced_column_name as 'primary_key'
|
|
809
|
+
,fk.column_name as 'column'
|
|
810
|
+
,fk.constraint_name as 'name'
|
|
811
|
+
FROM information_schema.key_column_usage fk
|
|
812
|
+
WHERE fk.referenced_column_name is not null
|
|
813
|
+
AND fk.table_schema = 'curate_development'
|
|
814
|
+
AND fk.table_name = 'version_committers'
|
|
815
|
+
|
|
816
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `version_committers`[0m
|
|
817
|
+
Connecting to database specified by database.yml
|
|
818
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
819
|
+
resetting mappings for Solrizer::FieldMapper
|
|
820
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
821
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
822
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
823
|
+
Couldn't find SolrDocument
|
|
824
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
825
|
+
Connecting to database specified by database.yml
|
|
826
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
827
|
+
resetting mappings for Solrizer::FieldMapper
|
|
828
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
829
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
830
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
831
|
+
Couldn't find SolrDocument
|
|
832
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
833
|
+
[1m[36m (1.0ms)[0m [1mDROP TABLE `users`[0m
|
|
834
|
+
[1m[35m (0.4ms)[0m DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20130408165008'
|
|
835
|
+
[1m[36m (0.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
836
|
+
[1m[35m (0.3ms)[0m
|
|
837
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
838
|
+
,fk.referenced_column_name as 'primary_key'
|
|
839
|
+
,fk.column_name as 'column'
|
|
840
|
+
,fk.constraint_name as 'name'
|
|
841
|
+
FROM information_schema.key_column_usage fk
|
|
842
|
+
WHERE fk.referenced_column_name is not null
|
|
843
|
+
AND fk.table_schema = 'curate_development'
|
|
844
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
845
|
+
|
|
846
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `checksum_audit_logs`[0m
|
|
847
|
+
[1m[35m (0.2ms)[0m
|
|
848
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
849
|
+
,fk.referenced_column_name as 'primary_key'
|
|
850
|
+
,fk.column_name as 'column'
|
|
851
|
+
,fk.constraint_name as 'name'
|
|
852
|
+
FROM information_schema.key_column_usage fk
|
|
853
|
+
WHERE fk.referenced_column_name is not null
|
|
854
|
+
AND fk.table_schema = 'curate_development'
|
|
855
|
+
AND fk.table_name = 'conversations'
|
|
856
|
+
|
|
857
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `conversations`[0m
|
|
858
|
+
[1m[35m (0.2ms)[0m
|
|
859
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
860
|
+
,fk.referenced_column_name as 'primary_key'
|
|
861
|
+
,fk.column_name as 'column'
|
|
862
|
+
,fk.constraint_name as 'name'
|
|
863
|
+
FROM information_schema.key_column_usage fk
|
|
864
|
+
WHERE fk.referenced_column_name is not null
|
|
865
|
+
AND fk.table_schema = 'curate_development'
|
|
866
|
+
AND fk.table_name = 'domain_terms'
|
|
867
|
+
|
|
868
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms`[0m
|
|
869
|
+
[1m[35m (0.2ms)[0m
|
|
870
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
871
|
+
,fk.referenced_column_name as 'primary_key'
|
|
872
|
+
,fk.column_name as 'column'
|
|
873
|
+
,fk.constraint_name as 'name'
|
|
874
|
+
FROM information_schema.key_column_usage fk
|
|
875
|
+
WHERE fk.referenced_column_name is not null
|
|
876
|
+
AND fk.table_schema = 'curate_development'
|
|
877
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
878
|
+
|
|
879
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms_local_authorities`[0m
|
|
880
|
+
[1m[35m (0.2ms)[0m
|
|
881
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
882
|
+
,fk.referenced_column_name as 'primary_key'
|
|
883
|
+
,fk.column_name as 'column'
|
|
884
|
+
,fk.constraint_name as 'name'
|
|
885
|
+
FROM information_schema.key_column_usage fk
|
|
886
|
+
WHERE fk.referenced_column_name is not null
|
|
887
|
+
AND fk.table_schema = 'curate_development'
|
|
888
|
+
AND fk.table_name = 'follows'
|
|
889
|
+
|
|
890
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `follows`[0m
|
|
891
|
+
[1m[35m (0.2ms)[0m
|
|
892
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
893
|
+
,fk.referenced_column_name as 'primary_key'
|
|
894
|
+
,fk.column_name as 'column'
|
|
895
|
+
,fk.constraint_name as 'name'
|
|
896
|
+
FROM information_schema.key_column_usage fk
|
|
897
|
+
WHERE fk.referenced_column_name is not null
|
|
898
|
+
AND fk.table_schema = 'curate_development'
|
|
899
|
+
AND fk.table_name = 'help_requests'
|
|
900
|
+
|
|
901
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `help_requests`[0m
|
|
902
|
+
[1m[35m (0.2ms)[0m
|
|
903
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
904
|
+
,fk.referenced_column_name as 'primary_key'
|
|
905
|
+
,fk.column_name as 'column'
|
|
906
|
+
,fk.constraint_name as 'name'
|
|
907
|
+
FROM information_schema.key_column_usage fk
|
|
908
|
+
WHERE fk.referenced_column_name is not null
|
|
909
|
+
AND fk.table_schema = 'curate_development'
|
|
910
|
+
AND fk.table_name = 'local_authorities'
|
|
911
|
+
|
|
912
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authorities`[0m
|
|
913
|
+
[1m[35m (0.2ms)[0m
|
|
914
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
915
|
+
,fk.referenced_column_name as 'primary_key'
|
|
916
|
+
,fk.column_name as 'column'
|
|
917
|
+
,fk.constraint_name as 'name'
|
|
918
|
+
FROM information_schema.key_column_usage fk
|
|
919
|
+
WHERE fk.referenced_column_name is not null
|
|
920
|
+
AND fk.table_schema = 'curate_development'
|
|
921
|
+
AND fk.table_name = 'local_authority_entries'
|
|
922
|
+
|
|
923
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authority_entries`[0m
|
|
924
|
+
[1m[35m (0.2ms)[0m
|
|
925
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
926
|
+
,fk.referenced_column_name as 'primary_key'
|
|
927
|
+
,fk.column_name as 'column'
|
|
928
|
+
,fk.constraint_name as 'name'
|
|
929
|
+
FROM information_schema.key_column_usage fk
|
|
930
|
+
WHERE fk.referenced_column_name is not null
|
|
931
|
+
AND fk.table_schema = 'curate_development'
|
|
932
|
+
AND fk.table_name = 'notifications'
|
|
933
|
+
|
|
934
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `notifications`[0m
|
|
935
|
+
[1m[35m (0.3ms)[0m
|
|
936
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
937
|
+
,fk.referenced_column_name as 'primary_key'
|
|
938
|
+
,fk.column_name as 'column'
|
|
939
|
+
,fk.constraint_name as 'name'
|
|
940
|
+
FROM information_schema.key_column_usage fk
|
|
941
|
+
WHERE fk.referenced_column_name is not null
|
|
942
|
+
AND fk.table_schema = 'curate_development'
|
|
943
|
+
AND fk.table_name = 'object_access'
|
|
944
|
+
|
|
945
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `object_access`[0m
|
|
946
|
+
[1m[35m (0.2ms)[0m
|
|
947
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
948
|
+
,fk.referenced_column_name as 'primary_key'
|
|
949
|
+
,fk.column_name as 'column'
|
|
950
|
+
,fk.constraint_name as 'name'
|
|
951
|
+
FROM information_schema.key_column_usage fk
|
|
952
|
+
WHERE fk.referenced_column_name is not null
|
|
953
|
+
AND fk.table_schema = 'curate_development'
|
|
954
|
+
AND fk.table_name = 'purl'
|
|
955
|
+
|
|
956
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `purl`[0m
|
|
957
|
+
[1m[35m (0.2ms)[0m
|
|
958
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
959
|
+
,fk.referenced_column_name as 'primary_key'
|
|
960
|
+
,fk.column_name as 'column'
|
|
961
|
+
,fk.constraint_name as 'name'
|
|
962
|
+
FROM information_schema.key_column_usage fk
|
|
963
|
+
WHERE fk.referenced_column_name is not null
|
|
964
|
+
AND fk.table_schema = 'curate_development'
|
|
965
|
+
AND fk.table_name = 'receipts'
|
|
966
|
+
|
|
967
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `receipts`[0m
|
|
968
|
+
[1m[35m (0.2ms)[0m
|
|
969
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
970
|
+
,fk.referenced_column_name as 'primary_key'
|
|
971
|
+
,fk.column_name as 'column'
|
|
972
|
+
,fk.constraint_name as 'name'
|
|
973
|
+
FROM information_schema.key_column_usage fk
|
|
974
|
+
WHERE fk.referenced_column_name is not null
|
|
975
|
+
AND fk.table_schema = 'curate_development'
|
|
976
|
+
AND fk.table_name = 'repo_object'
|
|
977
|
+
|
|
978
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `repo_object`[0m
|
|
979
|
+
[1m[35m (0.2ms)[0m
|
|
980
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
981
|
+
,fk.referenced_column_name as 'primary_key'
|
|
982
|
+
,fk.column_name as 'column'
|
|
983
|
+
,fk.constraint_name as 'name'
|
|
984
|
+
FROM information_schema.key_column_usage fk
|
|
985
|
+
WHERE fk.referenced_column_name is not null
|
|
986
|
+
AND fk.table_schema = 'curate_development'
|
|
987
|
+
AND fk.table_name = 'single_use_links'
|
|
988
|
+
|
|
989
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `single_use_links`[0m
|
|
990
|
+
[1m[35m (0.2ms)[0m
|
|
991
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
992
|
+
,fk.referenced_column_name as 'primary_key'
|
|
993
|
+
,fk.column_name as 'column'
|
|
994
|
+
,fk.constraint_name as 'name'
|
|
995
|
+
FROM information_schema.key_column_usage fk
|
|
996
|
+
WHERE fk.referenced_column_name is not null
|
|
997
|
+
AND fk.table_schema = 'curate_development'
|
|
998
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
999
|
+
|
|
1000
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `subject_local_authority_entries`[0m
|
|
1001
|
+
[1m[35m (0.2ms)[0m
|
|
1002
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1003
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1004
|
+
,fk.column_name as 'column'
|
|
1005
|
+
,fk.constraint_name as 'name'
|
|
1006
|
+
FROM information_schema.key_column_usage fk
|
|
1007
|
+
WHERE fk.referenced_column_name is not null
|
|
1008
|
+
AND fk.table_schema = 'curate_development'
|
|
1009
|
+
AND fk.table_name = 'trophies'
|
|
1010
|
+
|
|
1011
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `trophies`[0m
|
|
1012
|
+
[1m[35m (0.2ms)[0m
|
|
1013
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1014
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1015
|
+
,fk.column_name as 'column'
|
|
1016
|
+
,fk.constraint_name as 'name'
|
|
1017
|
+
FROM information_schema.key_column_usage fk
|
|
1018
|
+
WHERE fk.referenced_column_name is not null
|
|
1019
|
+
AND fk.table_schema = 'curate_development'
|
|
1020
|
+
AND fk.table_name = 'version_committers'
|
|
1021
|
+
|
|
1022
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `version_committers`[0m
|
|
1023
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
1024
|
+
[1m[36m (18.4ms)[0m [1mCREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `email` varchar(255), `agreed_to_terms_of_service` tinyint(1), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
|
1025
|
+
[1m[35m (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165008')
|
|
1026
|
+
[1m[36m (0.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
1027
|
+
[1m[35m (0.2ms)[0m
|
|
1028
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1029
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1030
|
+
,fk.column_name as 'column'
|
|
1031
|
+
,fk.constraint_name as 'name'
|
|
1032
|
+
FROM information_schema.key_column_usage fk
|
|
1033
|
+
WHERE fk.referenced_column_name is not null
|
|
1034
|
+
AND fk.table_schema = 'curate_development'
|
|
1035
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
1036
|
+
|
|
1037
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `checksum_audit_logs`[0m
|
|
1038
|
+
[1m[35m (0.2ms)[0m
|
|
1039
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1040
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1041
|
+
,fk.column_name as 'column'
|
|
1042
|
+
,fk.constraint_name as 'name'
|
|
1043
|
+
FROM information_schema.key_column_usage fk
|
|
1044
|
+
WHERE fk.referenced_column_name is not null
|
|
1045
|
+
AND fk.table_schema = 'curate_development'
|
|
1046
|
+
AND fk.table_name = 'conversations'
|
|
1047
|
+
|
|
1048
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `conversations`[0m
|
|
1049
|
+
[1m[35m (0.2ms)[0m
|
|
1050
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1051
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1052
|
+
,fk.column_name as 'column'
|
|
1053
|
+
,fk.constraint_name as 'name'
|
|
1054
|
+
FROM information_schema.key_column_usage fk
|
|
1055
|
+
WHERE fk.referenced_column_name is not null
|
|
1056
|
+
AND fk.table_schema = 'curate_development'
|
|
1057
|
+
AND fk.table_name = 'domain_terms'
|
|
1058
|
+
|
|
1059
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms`[0m
|
|
1060
|
+
[1m[35m (0.2ms)[0m
|
|
1061
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1062
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1063
|
+
,fk.column_name as 'column'
|
|
1064
|
+
,fk.constraint_name as 'name'
|
|
1065
|
+
FROM information_schema.key_column_usage fk
|
|
1066
|
+
WHERE fk.referenced_column_name is not null
|
|
1067
|
+
AND fk.table_schema = 'curate_development'
|
|
1068
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
1069
|
+
|
|
1070
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms_local_authorities`[0m
|
|
1071
|
+
[1m[35m (0.2ms)[0m
|
|
1072
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1073
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1074
|
+
,fk.column_name as 'column'
|
|
1075
|
+
,fk.constraint_name as 'name'
|
|
1076
|
+
FROM information_schema.key_column_usage fk
|
|
1077
|
+
WHERE fk.referenced_column_name is not null
|
|
1078
|
+
AND fk.table_schema = 'curate_development'
|
|
1079
|
+
AND fk.table_name = 'follows'
|
|
1080
|
+
|
|
1081
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `follows`[0m
|
|
1082
|
+
[1m[35m (0.2ms)[0m
|
|
1083
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1084
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1085
|
+
,fk.column_name as 'column'
|
|
1086
|
+
,fk.constraint_name as 'name'
|
|
1087
|
+
FROM information_schema.key_column_usage fk
|
|
1088
|
+
WHERE fk.referenced_column_name is not null
|
|
1089
|
+
AND fk.table_schema = 'curate_development'
|
|
1090
|
+
AND fk.table_name = 'help_requests'
|
|
1091
|
+
|
|
1092
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `help_requests`[0m
|
|
1093
|
+
[1m[35m (0.1ms)[0m
|
|
1094
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1095
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1096
|
+
,fk.column_name as 'column'
|
|
1097
|
+
,fk.constraint_name as 'name'
|
|
1098
|
+
FROM information_schema.key_column_usage fk
|
|
1099
|
+
WHERE fk.referenced_column_name is not null
|
|
1100
|
+
AND fk.table_schema = 'curate_development'
|
|
1101
|
+
AND fk.table_name = 'local_authorities'
|
|
1102
|
+
|
|
1103
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authorities`[0m
|
|
1104
|
+
[1m[35m (0.2ms)[0m
|
|
1105
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1106
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1107
|
+
,fk.column_name as 'column'
|
|
1108
|
+
,fk.constraint_name as 'name'
|
|
1109
|
+
FROM information_schema.key_column_usage fk
|
|
1110
|
+
WHERE fk.referenced_column_name is not null
|
|
1111
|
+
AND fk.table_schema = 'curate_development'
|
|
1112
|
+
AND fk.table_name = 'local_authority_entries'
|
|
1113
|
+
|
|
1114
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authority_entries`[0m
|
|
1115
|
+
[1m[35m (0.2ms)[0m
|
|
1116
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1117
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1118
|
+
,fk.column_name as 'column'
|
|
1119
|
+
,fk.constraint_name as 'name'
|
|
1120
|
+
FROM information_schema.key_column_usage fk
|
|
1121
|
+
WHERE fk.referenced_column_name is not null
|
|
1122
|
+
AND fk.table_schema = 'curate_development'
|
|
1123
|
+
AND fk.table_name = 'notifications'
|
|
1124
|
+
|
|
1125
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `notifications`[0m
|
|
1126
|
+
[1m[35m (0.1ms)[0m
|
|
1127
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1128
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1129
|
+
,fk.column_name as 'column'
|
|
1130
|
+
,fk.constraint_name as 'name'
|
|
1131
|
+
FROM information_schema.key_column_usage fk
|
|
1132
|
+
WHERE fk.referenced_column_name is not null
|
|
1133
|
+
AND fk.table_schema = 'curate_development'
|
|
1134
|
+
AND fk.table_name = 'object_access'
|
|
1135
|
+
|
|
1136
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `object_access`[0m
|
|
1137
|
+
[1m[35m (0.1ms)[0m
|
|
1138
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1139
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1140
|
+
,fk.column_name as 'column'
|
|
1141
|
+
,fk.constraint_name as 'name'
|
|
1142
|
+
FROM information_schema.key_column_usage fk
|
|
1143
|
+
WHERE fk.referenced_column_name is not null
|
|
1144
|
+
AND fk.table_schema = 'curate_development'
|
|
1145
|
+
AND fk.table_name = 'purl'
|
|
1146
|
+
|
|
1147
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `purl`[0m
|
|
1148
|
+
[1m[35m (0.2ms)[0m
|
|
1149
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1150
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1151
|
+
,fk.column_name as 'column'
|
|
1152
|
+
,fk.constraint_name as 'name'
|
|
1153
|
+
FROM information_schema.key_column_usage fk
|
|
1154
|
+
WHERE fk.referenced_column_name is not null
|
|
1155
|
+
AND fk.table_schema = 'curate_development'
|
|
1156
|
+
AND fk.table_name = 'receipts'
|
|
1157
|
+
|
|
1158
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `receipts`[0m
|
|
1159
|
+
[1m[35m (0.2ms)[0m
|
|
1160
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1161
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1162
|
+
,fk.column_name as 'column'
|
|
1163
|
+
,fk.constraint_name as 'name'
|
|
1164
|
+
FROM information_schema.key_column_usage fk
|
|
1165
|
+
WHERE fk.referenced_column_name is not null
|
|
1166
|
+
AND fk.table_schema = 'curate_development'
|
|
1167
|
+
AND fk.table_name = 'repo_object'
|
|
1168
|
+
|
|
1169
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `repo_object`[0m
|
|
1170
|
+
[1m[35m (0.2ms)[0m
|
|
1171
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1172
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1173
|
+
,fk.column_name as 'column'
|
|
1174
|
+
,fk.constraint_name as 'name'
|
|
1175
|
+
FROM information_schema.key_column_usage fk
|
|
1176
|
+
WHERE fk.referenced_column_name is not null
|
|
1177
|
+
AND fk.table_schema = 'curate_development'
|
|
1178
|
+
AND fk.table_name = 'single_use_links'
|
|
1179
|
+
|
|
1180
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `single_use_links`[0m
|
|
1181
|
+
[1m[35m (0.1ms)[0m
|
|
1182
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1183
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1184
|
+
,fk.column_name as 'column'
|
|
1185
|
+
,fk.constraint_name as 'name'
|
|
1186
|
+
FROM information_schema.key_column_usage fk
|
|
1187
|
+
WHERE fk.referenced_column_name is not null
|
|
1188
|
+
AND fk.table_schema = 'curate_development'
|
|
1189
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
1190
|
+
|
|
1191
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `subject_local_authority_entries`[0m
|
|
1192
|
+
[1m[35m (0.1ms)[0m
|
|
1193
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1194
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1195
|
+
,fk.column_name as 'column'
|
|
1196
|
+
,fk.constraint_name as 'name'
|
|
1197
|
+
FROM information_schema.key_column_usage fk
|
|
1198
|
+
WHERE fk.referenced_column_name is not null
|
|
1199
|
+
AND fk.table_schema = 'curate_development'
|
|
1200
|
+
AND fk.table_name = 'trophies'
|
|
1201
|
+
|
|
1202
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `trophies`[0m
|
|
1203
|
+
[1m[35m (0.1ms)[0m
|
|
1204
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1205
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1206
|
+
,fk.column_name as 'column'
|
|
1207
|
+
,fk.constraint_name as 'name'
|
|
1208
|
+
FROM information_schema.key_column_usage fk
|
|
1209
|
+
WHERE fk.referenced_column_name is not null
|
|
1210
|
+
AND fk.table_schema = 'curate_development'
|
|
1211
|
+
AND fk.table_name = 'users'
|
|
1212
|
+
|
|
1213
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `users`[0m
|
|
1214
|
+
[1m[35m (0.1ms)[0m
|
|
1215
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1216
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1217
|
+
,fk.column_name as 'column'
|
|
1218
|
+
,fk.constraint_name as 'name'
|
|
1219
|
+
FROM information_schema.key_column_usage fk
|
|
1220
|
+
WHERE fk.referenced_column_name is not null
|
|
1221
|
+
AND fk.table_schema = 'curate_development'
|
|
1222
|
+
AND fk.table_name = 'version_committers'
|
|
1223
|
+
|
|
1224
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `version_committers`[0m
|
|
1225
|
+
Connecting to database specified by database.yml
|
|
1226
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1227
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1228
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1229
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1230
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1231
|
+
Couldn't find SolrDocument
|
|
1232
|
+
Connecting to database specified by database.yml
|
|
1233
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1234
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1235
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1236
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1237
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1238
|
+
Couldn't find SolrDocument
|
|
1239
|
+
Connecting to database specified by database.yml
|
|
1240
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1241
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1242
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1243
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1244
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1245
|
+
Couldn't find SolrDocument
|
|
1246
|
+
Connecting to database specified by database.yml
|
|
1247
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1248
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1249
|
+
[1m[36mLocalAuthority Load (0.5ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1250
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1251
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1252
|
+
Couldn't find SolrDocument
|
|
1253
|
+
Connecting to database specified by database.yml
|
|
1254
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1255
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1256
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1257
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1258
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1259
|
+
Couldn't find SolrDocument
|
|
1260
|
+
Connecting to database specified by database.yml
|
|
1261
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1262
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1263
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1264
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1265
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1266
|
+
Couldn't find SolrDocument
|
|
1267
|
+
Connecting to database specified by database.yml
|
|
1268
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1269
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1270
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1271
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1272
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1273
|
+
Couldn't find SolrDocument
|
|
1274
|
+
Connecting to database specified by database.yml
|
|
1275
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1276
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1277
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1278
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1279
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1280
|
+
Couldn't find SolrDocument
|
|
1281
|
+
Connecting to database specified by database.yml
|
|
1282
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1283
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1284
|
+
[1m[36mLocalAuthority Load (0.4ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1285
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1286
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1287
|
+
Couldn't find SolrDocument
|
|
1288
|
+
Connecting to database specified by database.yml
|
|
1289
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1290
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1291
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1292
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1293
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1294
|
+
Couldn't find SolrDocument
|
|
1295
|
+
Connecting to database specified by database.yml
|
|
1296
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1297
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1298
|
+
[1m[36mLocalAuthority Load (0.6ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1299
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1300
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1301
|
+
Couldn't find SolrDocument
|
|
1302
|
+
Connecting to database specified by database.yml
|
|
1303
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1304
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1305
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1306
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1307
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1308
|
+
Couldn't find SolrDocument
|
|
1309
|
+
Connecting to database specified by database.yml
|
|
1310
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1311
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1312
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1313
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1314
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1315
|
+
Couldn't find SolrDocument
|
|
1316
|
+
Connecting to database specified by database.yml
|
|
1317
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1318
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1319
|
+
[1m[36mLocalAuthority Load (0.5ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1320
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1321
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1322
|
+
Couldn't find SolrDocument
|
|
1323
|
+
Connecting to database specified by database.yml
|
|
1324
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1325
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1326
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1327
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1328
|
+
[1m[36mLocalAuthority Load (0.1ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1329
|
+
Couldn't find SolrDocument
|
|
1330
|
+
Connecting to database specified by database.yml
|
|
1331
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1332
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1333
|
+
[1m[36mLocalAuthority Load (0.4ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1334
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1335
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1336
|
+
Couldn't find SolrDocument
|
|
1337
|
+
Connecting to database specified by database.yml
|
|
1338
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1339
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1340
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1341
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1342
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1343
|
+
Couldn't find SolrDocument
|
|
1344
|
+
Connecting to database specified by database.yml
|
|
1345
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1346
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1347
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1348
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1349
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1350
|
+
Couldn't find SolrDocument
|
|
1351
|
+
Connecting to database specified by database.yml
|
|
1352
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1353
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1354
|
+
[1m[36mLocalAuthority Load (0.6ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1355
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1356
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1357
|
+
Couldn't find SolrDocument
|
|
1358
|
+
Connecting to database specified by database.yml
|
|
1359
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1360
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1361
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1362
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1363
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1364
|
+
Couldn't find SolrDocument
|
|
1365
|
+
Connecting to database specified by database.yml
|
|
1366
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1367
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1368
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1369
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1370
|
+
[1m[36mLocalAuthority Load (0.1ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1371
|
+
Couldn't find SolrDocument
|
|
1372
|
+
Connecting to database specified by database.yml
|
|
1373
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1374
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1375
|
+
[1m[36mLocalAuthority Load (0.8ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1376
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1377
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1378
|
+
Couldn't find SolrDocument
|
|
1379
|
+
Connecting to database specified by database.yml
|
|
1380
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1381
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1382
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1383
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1384
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1385
|
+
Couldn't find SolrDocument
|
|
1386
|
+
Connecting to database specified by database.yml
|
|
1387
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1388
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1389
|
+
[1m[36mLocalAuthority Load (0.6ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1390
|
+
[1m[35mLocalAuthority Load (0.3ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1391
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1392
|
+
[1m[35m (0.4ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
1393
|
+
Connecting to database specified by database.yml
|
|
1394
|
+
SOLRIZER: loading field name mappings from /Users/jfriesen/.rvm/gems/ruby-2.0.0-p0@curate/gems/solrizer-2.1.0/config/solr_mappings.yml
|
|
1395
|
+
resetting mappings for Solrizer::FieldMapper
|
|
1396
|
+
[1m[36mLocalAuthority Load (0.3ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_subjects' LIMIT 1[0m
|
|
1397
|
+
[1m[35mLocalAuthority Load (0.2ms)[0m SELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lexvo_languages' LIMIT 1
|
|
1398
|
+
[1m[36mLocalAuthority Load (0.2ms)[0m [1mSELECT `local_authorities`.* FROM `local_authorities` WHERE `local_authorities`.`name` = 'lc_genres' LIMIT 1[0m
|
|
1399
|
+
[1m[35m (0.3ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
1400
|
+
[1m[36m (1.3ms)[0m [1mDROP TABLE `users`[0m
|
|
1401
|
+
[1m[35m (0.4ms)[0m DELETE FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20130408165008'
|
|
1402
|
+
[1m[36m (0.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
1403
|
+
[1m[35m (0.3ms)[0m
|
|
1404
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1405
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1406
|
+
,fk.column_name as 'column'
|
|
1407
|
+
,fk.constraint_name as 'name'
|
|
1408
|
+
FROM information_schema.key_column_usage fk
|
|
1409
|
+
WHERE fk.referenced_column_name is not null
|
|
1410
|
+
AND fk.table_schema = 'curate_development'
|
|
1411
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
1412
|
+
|
|
1413
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `checksum_audit_logs`[0m
|
|
1414
|
+
[1m[35m (0.2ms)[0m
|
|
1415
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1416
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1417
|
+
,fk.column_name as 'column'
|
|
1418
|
+
,fk.constraint_name as 'name'
|
|
1419
|
+
FROM information_schema.key_column_usage fk
|
|
1420
|
+
WHERE fk.referenced_column_name is not null
|
|
1421
|
+
AND fk.table_schema = 'curate_development'
|
|
1422
|
+
AND fk.table_name = 'conversations'
|
|
1423
|
+
|
|
1424
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `conversations`[0m
|
|
1425
|
+
[1m[35m (0.2ms)[0m
|
|
1426
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1427
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1428
|
+
,fk.column_name as 'column'
|
|
1429
|
+
,fk.constraint_name as 'name'
|
|
1430
|
+
FROM information_schema.key_column_usage fk
|
|
1431
|
+
WHERE fk.referenced_column_name is not null
|
|
1432
|
+
AND fk.table_schema = 'curate_development'
|
|
1433
|
+
AND fk.table_name = 'domain_terms'
|
|
1434
|
+
|
|
1435
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms`[0m
|
|
1436
|
+
[1m[35m (0.2ms)[0m
|
|
1437
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1438
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1439
|
+
,fk.column_name as 'column'
|
|
1440
|
+
,fk.constraint_name as 'name'
|
|
1441
|
+
FROM information_schema.key_column_usage fk
|
|
1442
|
+
WHERE fk.referenced_column_name is not null
|
|
1443
|
+
AND fk.table_schema = 'curate_development'
|
|
1444
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
1445
|
+
|
|
1446
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms_local_authorities`[0m
|
|
1447
|
+
[1m[35m (0.2ms)[0m
|
|
1448
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1449
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1450
|
+
,fk.column_name as 'column'
|
|
1451
|
+
,fk.constraint_name as 'name'
|
|
1452
|
+
FROM information_schema.key_column_usage fk
|
|
1453
|
+
WHERE fk.referenced_column_name is not null
|
|
1454
|
+
AND fk.table_schema = 'curate_development'
|
|
1455
|
+
AND fk.table_name = 'follows'
|
|
1456
|
+
|
|
1457
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `follows`[0m
|
|
1458
|
+
[1m[35m (0.2ms)[0m
|
|
1459
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1460
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1461
|
+
,fk.column_name as 'column'
|
|
1462
|
+
,fk.constraint_name as 'name'
|
|
1463
|
+
FROM information_schema.key_column_usage fk
|
|
1464
|
+
WHERE fk.referenced_column_name is not null
|
|
1465
|
+
AND fk.table_schema = 'curate_development'
|
|
1466
|
+
AND fk.table_name = 'help_requests'
|
|
1467
|
+
|
|
1468
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `help_requests`[0m
|
|
1469
|
+
[1m[35m (0.2ms)[0m
|
|
1470
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1471
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1472
|
+
,fk.column_name as 'column'
|
|
1473
|
+
,fk.constraint_name as 'name'
|
|
1474
|
+
FROM information_schema.key_column_usage fk
|
|
1475
|
+
WHERE fk.referenced_column_name is not null
|
|
1476
|
+
AND fk.table_schema = 'curate_development'
|
|
1477
|
+
AND fk.table_name = 'local_authorities'
|
|
1478
|
+
|
|
1479
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authorities`[0m
|
|
1480
|
+
[1m[35m (0.2ms)[0m
|
|
1481
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1482
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1483
|
+
,fk.column_name as 'column'
|
|
1484
|
+
,fk.constraint_name as 'name'
|
|
1485
|
+
FROM information_schema.key_column_usage fk
|
|
1486
|
+
WHERE fk.referenced_column_name is not null
|
|
1487
|
+
AND fk.table_schema = 'curate_development'
|
|
1488
|
+
AND fk.table_name = 'local_authority_entries'
|
|
1489
|
+
|
|
1490
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authority_entries`[0m
|
|
1491
|
+
[1m[35m (0.2ms)[0m
|
|
1492
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1493
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1494
|
+
,fk.column_name as 'column'
|
|
1495
|
+
,fk.constraint_name as 'name'
|
|
1496
|
+
FROM information_schema.key_column_usage fk
|
|
1497
|
+
WHERE fk.referenced_column_name is not null
|
|
1498
|
+
AND fk.table_schema = 'curate_development'
|
|
1499
|
+
AND fk.table_name = 'notifications'
|
|
1500
|
+
|
|
1501
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `notifications`[0m
|
|
1502
|
+
[1m[35m (0.4ms)[0m
|
|
1503
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1504
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1505
|
+
,fk.column_name as 'column'
|
|
1506
|
+
,fk.constraint_name as 'name'
|
|
1507
|
+
FROM information_schema.key_column_usage fk
|
|
1508
|
+
WHERE fk.referenced_column_name is not null
|
|
1509
|
+
AND fk.table_schema = 'curate_development'
|
|
1510
|
+
AND fk.table_name = 'object_access'
|
|
1511
|
+
|
|
1512
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `object_access`[0m
|
|
1513
|
+
[1m[35m (0.2ms)[0m
|
|
1514
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1515
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1516
|
+
,fk.column_name as 'column'
|
|
1517
|
+
,fk.constraint_name as 'name'
|
|
1518
|
+
FROM information_schema.key_column_usage fk
|
|
1519
|
+
WHERE fk.referenced_column_name is not null
|
|
1520
|
+
AND fk.table_schema = 'curate_development'
|
|
1521
|
+
AND fk.table_name = 'purl'
|
|
1522
|
+
|
|
1523
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `purl`[0m
|
|
1524
|
+
[1m[35m (0.2ms)[0m
|
|
1525
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1526
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1527
|
+
,fk.column_name as 'column'
|
|
1528
|
+
,fk.constraint_name as 'name'
|
|
1529
|
+
FROM information_schema.key_column_usage fk
|
|
1530
|
+
WHERE fk.referenced_column_name is not null
|
|
1531
|
+
AND fk.table_schema = 'curate_development'
|
|
1532
|
+
AND fk.table_name = 'receipts'
|
|
1533
|
+
|
|
1534
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `receipts`[0m
|
|
1535
|
+
[1m[35m (0.2ms)[0m
|
|
1536
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1537
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1538
|
+
,fk.column_name as 'column'
|
|
1539
|
+
,fk.constraint_name as 'name'
|
|
1540
|
+
FROM information_schema.key_column_usage fk
|
|
1541
|
+
WHERE fk.referenced_column_name is not null
|
|
1542
|
+
AND fk.table_schema = 'curate_development'
|
|
1543
|
+
AND fk.table_name = 'repo_object'
|
|
1544
|
+
|
|
1545
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `repo_object`[0m
|
|
1546
|
+
[1m[35m (0.2ms)[0m
|
|
1547
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1548
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1549
|
+
,fk.column_name as 'column'
|
|
1550
|
+
,fk.constraint_name as 'name'
|
|
1551
|
+
FROM information_schema.key_column_usage fk
|
|
1552
|
+
WHERE fk.referenced_column_name is not null
|
|
1553
|
+
AND fk.table_schema = 'curate_development'
|
|
1554
|
+
AND fk.table_name = 'single_use_links'
|
|
1555
|
+
|
|
1556
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `single_use_links`[0m
|
|
1557
|
+
[1m[35m (0.2ms)[0m
|
|
1558
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1559
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1560
|
+
,fk.column_name as 'column'
|
|
1561
|
+
,fk.constraint_name as 'name'
|
|
1562
|
+
FROM information_schema.key_column_usage fk
|
|
1563
|
+
WHERE fk.referenced_column_name is not null
|
|
1564
|
+
AND fk.table_schema = 'curate_development'
|
|
1565
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
1566
|
+
|
|
1567
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `subject_local_authority_entries`[0m
|
|
1568
|
+
[1m[35m (0.1ms)[0m
|
|
1569
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1570
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1571
|
+
,fk.column_name as 'column'
|
|
1572
|
+
,fk.constraint_name as 'name'
|
|
1573
|
+
FROM information_schema.key_column_usage fk
|
|
1574
|
+
WHERE fk.referenced_column_name is not null
|
|
1575
|
+
AND fk.table_schema = 'curate_development'
|
|
1576
|
+
AND fk.table_name = 'trophies'
|
|
1577
|
+
|
|
1578
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `trophies`[0m
|
|
1579
|
+
[1m[35m (0.1ms)[0m
|
|
1580
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1581
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1582
|
+
,fk.column_name as 'column'
|
|
1583
|
+
,fk.constraint_name as 'name'
|
|
1584
|
+
FROM information_schema.key_column_usage fk
|
|
1585
|
+
WHERE fk.referenced_column_name is not null
|
|
1586
|
+
AND fk.table_schema = 'curate_development'
|
|
1587
|
+
AND fk.table_name = 'version_committers'
|
|
1588
|
+
|
|
1589
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `version_committers`[0m
|
|
1590
|
+
[1m[35m (0.2ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
|
1591
|
+
[1m[36m (22.7ms)[0m [1mCREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `email` varchar(255), `agreed_to_terms_of_service` tinyint(1), `encrypted_password` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB[0m
|
|
1592
|
+
[1m[35m (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20130408165008')
|
|
1593
|
+
[1m[36m (0.1ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
1594
|
+
[1m[35m (0.2ms)[0m
|
|
1595
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1596
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1597
|
+
,fk.column_name as 'column'
|
|
1598
|
+
,fk.constraint_name as 'name'
|
|
1599
|
+
FROM information_schema.key_column_usage fk
|
|
1600
|
+
WHERE fk.referenced_column_name is not null
|
|
1601
|
+
AND fk.table_schema = 'curate_development'
|
|
1602
|
+
AND fk.table_name = 'checksum_audit_logs'
|
|
1603
|
+
|
|
1604
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `checksum_audit_logs`[0m
|
|
1605
|
+
[1m[35m (0.2ms)[0m
|
|
1606
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1607
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1608
|
+
,fk.column_name as 'column'
|
|
1609
|
+
,fk.constraint_name as 'name'
|
|
1610
|
+
FROM information_schema.key_column_usage fk
|
|
1611
|
+
WHERE fk.referenced_column_name is not null
|
|
1612
|
+
AND fk.table_schema = 'curate_development'
|
|
1613
|
+
AND fk.table_name = 'conversations'
|
|
1614
|
+
|
|
1615
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `conversations`[0m
|
|
1616
|
+
[1m[35m (0.2ms)[0m
|
|
1617
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1618
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1619
|
+
,fk.column_name as 'column'
|
|
1620
|
+
,fk.constraint_name as 'name'
|
|
1621
|
+
FROM information_schema.key_column_usage fk
|
|
1622
|
+
WHERE fk.referenced_column_name is not null
|
|
1623
|
+
AND fk.table_schema = 'curate_development'
|
|
1624
|
+
AND fk.table_name = 'domain_terms'
|
|
1625
|
+
|
|
1626
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms`[0m
|
|
1627
|
+
[1m[35m (0.2ms)[0m
|
|
1628
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1629
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1630
|
+
,fk.column_name as 'column'
|
|
1631
|
+
,fk.constraint_name as 'name'
|
|
1632
|
+
FROM information_schema.key_column_usage fk
|
|
1633
|
+
WHERE fk.referenced_column_name is not null
|
|
1634
|
+
AND fk.table_schema = 'curate_development'
|
|
1635
|
+
AND fk.table_name = 'domain_terms_local_authorities'
|
|
1636
|
+
|
|
1637
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `domain_terms_local_authorities`[0m
|
|
1638
|
+
[1m[35m (0.2ms)[0m
|
|
1639
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1640
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1641
|
+
,fk.column_name as 'column'
|
|
1642
|
+
,fk.constraint_name as 'name'
|
|
1643
|
+
FROM information_schema.key_column_usage fk
|
|
1644
|
+
WHERE fk.referenced_column_name is not null
|
|
1645
|
+
AND fk.table_schema = 'curate_development'
|
|
1646
|
+
AND fk.table_name = 'follows'
|
|
1647
|
+
|
|
1648
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `follows`[0m
|
|
1649
|
+
[1m[35m (0.2ms)[0m
|
|
1650
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1651
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1652
|
+
,fk.column_name as 'column'
|
|
1653
|
+
,fk.constraint_name as 'name'
|
|
1654
|
+
FROM information_schema.key_column_usage fk
|
|
1655
|
+
WHERE fk.referenced_column_name is not null
|
|
1656
|
+
AND fk.table_schema = 'curate_development'
|
|
1657
|
+
AND fk.table_name = 'help_requests'
|
|
1658
|
+
|
|
1659
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `help_requests`[0m
|
|
1660
|
+
[1m[35m (0.1ms)[0m
|
|
1661
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1662
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1663
|
+
,fk.column_name as 'column'
|
|
1664
|
+
,fk.constraint_name as 'name'
|
|
1665
|
+
FROM information_schema.key_column_usage fk
|
|
1666
|
+
WHERE fk.referenced_column_name is not null
|
|
1667
|
+
AND fk.table_schema = 'curate_development'
|
|
1668
|
+
AND fk.table_name = 'local_authorities'
|
|
1669
|
+
|
|
1670
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authorities`[0m
|
|
1671
|
+
[1m[35m (0.2ms)[0m
|
|
1672
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1673
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1674
|
+
,fk.column_name as 'column'
|
|
1675
|
+
,fk.constraint_name as 'name'
|
|
1676
|
+
FROM information_schema.key_column_usage fk
|
|
1677
|
+
WHERE fk.referenced_column_name is not null
|
|
1678
|
+
AND fk.table_schema = 'curate_development'
|
|
1679
|
+
AND fk.table_name = 'local_authority_entries'
|
|
1680
|
+
|
|
1681
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `local_authority_entries`[0m
|
|
1682
|
+
[1m[35m (0.2ms)[0m
|
|
1683
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1684
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1685
|
+
,fk.column_name as 'column'
|
|
1686
|
+
,fk.constraint_name as 'name'
|
|
1687
|
+
FROM information_schema.key_column_usage fk
|
|
1688
|
+
WHERE fk.referenced_column_name is not null
|
|
1689
|
+
AND fk.table_schema = 'curate_development'
|
|
1690
|
+
AND fk.table_name = 'notifications'
|
|
1691
|
+
|
|
1692
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `notifications`[0m
|
|
1693
|
+
[1m[35m (0.2ms)[0m
|
|
1694
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1695
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1696
|
+
,fk.column_name as 'column'
|
|
1697
|
+
,fk.constraint_name as 'name'
|
|
1698
|
+
FROM information_schema.key_column_usage fk
|
|
1699
|
+
WHERE fk.referenced_column_name is not null
|
|
1700
|
+
AND fk.table_schema = 'curate_development'
|
|
1701
|
+
AND fk.table_name = 'object_access'
|
|
1702
|
+
|
|
1703
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `object_access`[0m
|
|
1704
|
+
[1m[35m (0.1ms)[0m
|
|
1705
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1706
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1707
|
+
,fk.column_name as 'column'
|
|
1708
|
+
,fk.constraint_name as 'name'
|
|
1709
|
+
FROM information_schema.key_column_usage fk
|
|
1710
|
+
WHERE fk.referenced_column_name is not null
|
|
1711
|
+
AND fk.table_schema = 'curate_development'
|
|
1712
|
+
AND fk.table_name = 'purl'
|
|
1713
|
+
|
|
1714
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `purl`[0m
|
|
1715
|
+
[1m[35m (0.2ms)[0m
|
|
1716
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1717
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1718
|
+
,fk.column_name as 'column'
|
|
1719
|
+
,fk.constraint_name as 'name'
|
|
1720
|
+
FROM information_schema.key_column_usage fk
|
|
1721
|
+
WHERE fk.referenced_column_name is not null
|
|
1722
|
+
AND fk.table_schema = 'curate_development'
|
|
1723
|
+
AND fk.table_name = 'receipts'
|
|
1724
|
+
|
|
1725
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `receipts`[0m
|
|
1726
|
+
[1m[35m (0.1ms)[0m
|
|
1727
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1728
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1729
|
+
,fk.column_name as 'column'
|
|
1730
|
+
,fk.constraint_name as 'name'
|
|
1731
|
+
FROM information_schema.key_column_usage fk
|
|
1732
|
+
WHERE fk.referenced_column_name is not null
|
|
1733
|
+
AND fk.table_schema = 'curate_development'
|
|
1734
|
+
AND fk.table_name = 'repo_object'
|
|
1735
|
+
|
|
1736
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `repo_object`[0m
|
|
1737
|
+
[1m[35m (0.1ms)[0m
|
|
1738
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1739
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1740
|
+
,fk.column_name as 'column'
|
|
1741
|
+
,fk.constraint_name as 'name'
|
|
1742
|
+
FROM information_schema.key_column_usage fk
|
|
1743
|
+
WHERE fk.referenced_column_name is not null
|
|
1744
|
+
AND fk.table_schema = 'curate_development'
|
|
1745
|
+
AND fk.table_name = 'single_use_links'
|
|
1746
|
+
|
|
1747
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `single_use_links`[0m
|
|
1748
|
+
[1m[35m (0.1ms)[0m
|
|
1749
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1750
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1751
|
+
,fk.column_name as 'column'
|
|
1752
|
+
,fk.constraint_name as 'name'
|
|
1753
|
+
FROM information_schema.key_column_usage fk
|
|
1754
|
+
WHERE fk.referenced_column_name is not null
|
|
1755
|
+
AND fk.table_schema = 'curate_development'
|
|
1756
|
+
AND fk.table_name = 'subject_local_authority_entries'
|
|
1757
|
+
|
|
1758
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `subject_local_authority_entries`[0m
|
|
1759
|
+
[1m[35m (0.2ms)[0m
|
|
1760
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1761
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1762
|
+
,fk.column_name as 'column'
|
|
1763
|
+
,fk.constraint_name as 'name'
|
|
1764
|
+
FROM information_schema.key_column_usage fk
|
|
1765
|
+
WHERE fk.referenced_column_name is not null
|
|
1766
|
+
AND fk.table_schema = 'curate_development'
|
|
1767
|
+
AND fk.table_name = 'trophies'
|
|
1768
|
+
|
|
1769
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `trophies`[0m
|
|
1770
|
+
[1m[35m (0.1ms)[0m
|
|
1771
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1772
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1773
|
+
,fk.column_name as 'column'
|
|
1774
|
+
,fk.constraint_name as 'name'
|
|
1775
|
+
FROM information_schema.key_column_usage fk
|
|
1776
|
+
WHERE fk.referenced_column_name is not null
|
|
1777
|
+
AND fk.table_schema = 'curate_development'
|
|
1778
|
+
AND fk.table_name = 'users'
|
|
1779
|
+
|
|
1780
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `users`[0m
|
|
1781
|
+
[1m[35m (0.1ms)[0m
|
|
1782
|
+
SELECT fk.referenced_table_name as 'to_table'
|
|
1783
|
+
,fk.referenced_column_name as 'primary_key'
|
|
1784
|
+
,fk.column_name as 'column'
|
|
1785
|
+
,fk.constraint_name as 'name'
|
|
1786
|
+
FROM information_schema.key_column_usage fk
|
|
1787
|
+
WHERE fk.referenced_column_name is not null
|
|
1788
|
+
AND fk.table_schema = 'curate_development'
|
|
1789
|
+
AND fk.table_name = 'version_committers'
|
|
1790
|
+
|
|
1791
|
+
[1m[36m (0.1ms)[0m [1mSHOW CREATE TABLE `version_committers`[0m
|