works_cited 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d22e9e813f2ed85a5c0ecabcc06e1411e2b6e97116248350ba06c9218a18ea07
4
- data.tar.gz: 24ca2f85317106c2b50b9ec55fa0c8dbda2672a2c08706a0734c167bd8c819a3
3
+ metadata.gz: 6b6430ed9d0d1f18dc7bd27c9710815e90813925f19c88eebaf91e54509cef1f
4
+ data.tar.gz: 49fdafa4cb232c583ebe917ba1eb8bf33a007cf4cd66ef42734b91c0f03c0f34
5
5
  SHA512:
6
- metadata.gz: abb7bceac63dd7459cff1a57f95af8ce8ee422df04a0142388c80cbc3ee53178a2f0b71d69ea61b8967cea8b46a096310594e44cbc6c713b7b5502c19c931a45
7
- data.tar.gz: 73c1d8a2dd0c497113e4c0cfa6a01d21c8595f8b04875ecdd3f0ddc5314d1b8d2c4b6141a3a6e33e397b5ef28ccf6c80f760671f4747e888994f9faded4f14e9
6
+ metadata.gz: 9c9ec53fc50ad5051abddc755a06c20260cf72b8534039699bbcb68e1a586f5d348dd54b0126a3a4e717fd0a31f9f09edafa5cdc943035cd7f56611737220918
7
+ data.tar.gz: 817041e6aff351dadc58f1ba2cc0b21a7b12e691e2b811268a5f17e1dee493b4fc6c555bb42e739a6274e27663ab079265f5cd3646defb1f552f3314ed804e1c
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.10
1
+ 0.1.11
@@ -8,7 +8,7 @@ module WorksCited
8
8
 
9
9
  # GET /citations
10
10
  def index
11
- @citations = @citations.page(params[:page])
11
+ @citations = @citations.ordered_by_author.page(params[:page])
12
12
  end
13
13
 
14
14
  # GET /citations/1
@@ -4,7 +4,7 @@ module WorksCited
4
4
  # Application Helper
5
5
  module ApplicationHelper
6
6
  def works_cited_list(record, title = 'Works Cited')
7
- citations = record.works_cited_citations.accessible_by(current_ability, :list)
7
+ citations = record.works_cited_citations.ordered_by_author.accessible_by(current_ability, :list)
8
8
  render 'works_cited/citations/list', citations: citations, title: title
9
9
  end
10
10
 
@@ -17,10 +17,19 @@ module WorksCited
17
17
 
18
18
  # Relationships
19
19
  belongs_to :record, polymorphic: true
20
- has_many :works_cited_contributors, inverse_of: :works_cited_citation, class_name: 'WorksCited::Contributor',
21
- foreign_key: :works_cited_citation_id
20
+ has_many :works_cited_contributors, -> { order(:last, :first, :middle, :suffix, :handle) }, inverse_of: :works_cited_citation, class_name: 'WorksCited::Contributor',
21
+ foreign_key: :works_cited_citation_id
22
+ has_many :works_cited_authors, -> { authors.order(:last, :first, :middle, :suffix, :handle) }, inverse_of: :works_cited_citation, class_name: 'WorksCited::Contributor',
23
+ foreign_key: :works_cited_citation_id
22
24
  accepts_nested_attributes_for :works_cited_contributors, allow_destroy: true
23
25
 
26
+ # Scopes
27
+ scope :ordered_by_author, (lambda do
28
+ joins(:works_cited_authors)
29
+ .order('MIN(works_cited_contributors.last) ASC')
30
+ .group(:id)
31
+ end)
32
+
24
33
  # Dynamic stuff (from configuration)
25
34
  # Creates scopes such as .books and methods such as #book?
26
35
  WorksCited.configuration.valid_citation_types.each do |given_type|
@@ -78,7 +87,8 @@ module WorksCited
78
87
  end
79
88
  include_all_fields
80
89
  field :media
81
- field :record do # Can't remove this using :inverse_of because it's polymorphic
90
+ field :record do
91
+ # Can't remove this using :inverse_of because it's polymorphic
82
92
  visible false
83
93
  end
84
94
  end
@@ -5,7 +5,10 @@
5
5
  container_parts << citation.published_at.mla_datetime if citation.published_at.present?
6
6
  container_parts << link_to(citation.url.gsub(%r{https?://}, ''), citation.url).html_safe if citation.url.present?
7
7
  - if contributors.authors.any?
8
- = "@#{contributors.authors.first.handle}."
8
+ - if contributors.authors.first.handle.present?
9
+ = "@#{contributors.authors.first.handle}."
10
+ - else
11
+ = contributors.authors.first.full_name
9
12
  - if citation.container_title.present?
10
13
  = succeed '"' do
11
14
  = succeed citation.title do
Binary file
@@ -140999,3 +140999,2759 @@ Processing by WorksCited::CitationsController#destroy as HTML
140999
140999
  Redirected to http://www.example.com/works_cited/citations
141000
141000
  Completed 302 Found in 6ms (ActiveRecord: 0.8ms | Allocations: 859)
141001
141001
  TRANSACTION (0.3ms) rollback transaction
141002
+  (2.4ms) SELECT sqlite_version(*)
141003
+  (0.1ms) PRAGMA foreign_keys
141004
+  (0.1ms) PRAGMA defer_foreign_keys
141005
+  (0.1ms) PRAGMA defer_foreign_keys = ON
141006
+  (0.1ms) PRAGMA foreign_keys = OFF
141007
+  (5.5ms) DELETE FROM "doodads";
141008
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
141009
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'doodads';
141010
+  (4.4ms) DELETE FROM "things";
141011
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
141012
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'things';
141013
+  (4.7ms) DELETE FROM "users";
141014
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
141015
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
141016
+  (4.8ms) DELETE FROM "works_cited_citations";
141017
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
141018
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'works_cited_citations';
141019
+  (4.7ms) DELETE FROM "works_cited_contributors";
141020
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
141021
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'works_cited_contributors';
141022
+  (0.1ms) PRAGMA defer_foreign_keys = 0
141023
+  (0.1ms) PRAGMA foreign_keys = 1
141024
+  (0.2ms) SELECT sqlite_version(*)
141025
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
141026
+  (0.1ms) SELECT sqlite_version(*)
141027
+ TRANSACTION (0.1ms) begin transaction
141028
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141029
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Error"], ["description", "Libero hic voluptatum. Natus ab harum. Deserunt ut voluptatibus."], ["created_at", "2021-09-14 16:26:18.980637"], ["updated_at", "2021-09-14 16:26:18.980637"]]
141030
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141031
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141032
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Number the Stars"], ["container_title", "Beneath the Bleeding"], ["publisher", "Cisco Press"], ["city", "North Darius"], ["year", "1964"], ["pages", "pp. 145-6"], ["url", "http://orn.info/ray_waelchi"], ["published_at", "2020-09-14 16:26:19.029637"], ["accessed_at", "2021-08-14 16:26:19.029741"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.060237"], ["updated_at", "2021-09-14 16:26:19.060237"]]
141033
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Delisa"], ["middle", ""], ["last", "Parker"], ["suffix", "JD"], ["created_at", "2021-09-14 16:26:19.062998"], ["updated_at", "2021-09-14 16:26:19.062998"]]
141034
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Cornelia"], ["middle", "Sporer"], ["last", "Pagac"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:26:19.064227"], ["updated_at", "2021-09-14 16:26:19.064227"]]
141035
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141036
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141037
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Edna O'Brien"], ["container_title", "Cover Her Face"], ["publisher", "Harvill Press at Random House"], ["city", "New Frederick"], ["year", "1924"], ["pages", "pp. 145-6"], ["url", "http://white.io/nick"], ["published_at", "2020-09-14 16:26:19.069348"], ["accessed_at", "2021-08-14 16:26:19.069446"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.074653"], ["updated_at", "2021-09-14 16:26:19.074653"]]
141038
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 2], ["contributor_role", "author"], ["first", "Brad"], ["middle", ""], ["last", "Wolf"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.076861"], ["updated_at", "2021-09-14 16:26:19.076861"]]
141039
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 2], ["contributor_role", "translator"], ["first", "Sidney"], ["middle", "Willms"], ["last", "Dare"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.077950"], ["updated_at", "2021-09-14 16:26:19.077950"]]
141040
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141041
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141042
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "The Man Within"], ["container_title", "Precious Bane"], ["publisher", "Ballantine Books"], ["city", "Lake Arron"], ["year", "2010"], ["pages", "pp. 145-6"], ["url", "http://ritchie.info/whitley_funk"], ["published_at", "2020-09-14 16:26:19.083198"], ["accessed_at", "2021-08-14 16:26:19.083303"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.087389"], ["updated_at", "2021-09-14 16:26:19.087389"]]
141043
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 3], ["contributor_role", "author"], ["first", "Lilli"], ["middle", "Strosin"], ["last", "Rolfson"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.090347"], ["updated_at", "2021-09-14 16:26:19.090347"]]
141044
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 3], ["contributor_role", "editor"], ["first", "Faustino"], ["middle", ""], ["last", "Mraz"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.091713"], ["updated_at", "2021-09-14 16:26:19.091713"]]
141045
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141046
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141047
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "After Many a Summer Dies the Swan"], ["container_title", "The Way Through the Woods"], ["publisher", "Earthscan"], ["city", "Jenebury"], ["year", "2000"], ["pages", "pp. 145-6"], ["url", "http://stanton-prosacco.co/keneth.sporer"], ["published_at", "2020-09-14 16:26:19.096829"], ["accessed_at", "2021-08-14 16:26:19.096927"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.101480"], ["updated_at", "2021-09-14 16:26:19.101480"]]
141048
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 4], ["contributor_role", "compiler"], ["first", "Israel"], ["middle", "Brown"], ["last", "Gerhold"], ["suffix", "IV"], ["created_at", "2021-09-14 16:26:19.103898"], ["updated_at", "2021-09-14 16:26:19.103898"]]
141049
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 4], ["contributor_role", "editor"], ["first", "Frederick"], ["middle", "Kuphal"], ["last", "Ferry"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.106037"], ["updated_at", "2021-09-14 16:26:19.106037"]]
141050
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141051
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141052
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Nectar in a Sieve"], ["container_title", "Tender Is the Night"], ["publisher", "Velazquez Press"], ["city", "East Jacquesburgh"], ["year", "2016"], ["pages", "pp. 145-6"], ["url", "http://wehner-stanton.io/esteban"], ["published_at", "2020-09-14 16:26:19.111725"], ["accessed_at", "2021-08-14 16:26:19.111820"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.115985"], ["updated_at", "2021-09-14 16:26:19.115985"]]
141053
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 5], ["contributor_role", "translator"], ["first", "Kitty"], ["middle", "Koss"], ["last", "Blanda"], ["suffix", "Ret."], ["created_at", "2021-09-14 16:26:19.118307"], ["updated_at", "2021-09-14 16:26:19.118307"]]
141054
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 5], ["contributor_role", "translator"], ["first", "Buford"], ["middle", ""], ["last", "Runolfsdottir"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.119450"], ["updated_at", "2021-09-14 16:26:19.119450"]]
141055
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141056
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141057
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "A Passage to India"], ["container_title", "The Sun Also Rises"], ["publisher", "Belknap Press"], ["city", "Champlinmouth"], ["year", "1943"], ["pages", "pp. 145-6"], ["url", "http://cremin.co/shantell"], ["published_at", "2020-09-14 16:26:19.125426"], ["accessed_at", "2021-08-14 16:26:19.125663"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.129803"], ["updated_at", "2021-09-14 16:26:19.129803"]]
141058
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 6], ["contributor_role", "author"], ["first", "Delmar"], ["middle", ""], ["last", "Toy"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.132176"], ["updated_at", "2021-09-14 16:26:19.132176"]]
141059
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 6], ["contributor_role", "author"], ["first", "Marquerite"], ["middle", ""], ["last", "Jacobi"], ["suffix", "DO"], ["created_at", "2021-09-14 16:26:19.133494"], ["updated_at", "2021-09-14 16:26:19.133494"]]
141060
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141061
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141062
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "The Yellow Meads of Asphodel"], ["container_title", "The Millstone"], ["publisher", "Mark Batty Publisher"], ["city", "New Elvin"], ["year", "2003"], ["pages", "pp. 145-6"], ["url", "http://doyle.io/tameka_hagenes"], ["published_at", "2020-09-14 16:26:19.140431"], ["accessed_at", "2021-08-14 16:26:19.140722"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.148033"], ["updated_at", "2021-09-14 16:26:19.148033"]]
141063
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 7], ["contributor_role", "compiler"], ["first", "Whitley"], ["middle", "Ankunding"], ["last", "Koss"], ["suffix", "DDS"], ["created_at", "2021-09-14 16:26:19.152098"], ["updated_at", "2021-09-14 16:26:19.152098"]]
141064
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 7], ["contributor_role", "compiler"], ["first", "Dulcie"], ["middle", "Mertz"], ["last", "Hackett"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.154487"], ["updated_at", "2021-09-14 16:26:19.154487"]]
141065
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141066
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141067
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "A Many-Splendoured Thing"], ["container_title", "The Moving Toyshop"], ["publisher", "Kessinger Publishing"], ["city", "Cherellechester"], ["year", "2007"], ["pages", "pp. 145-6"], ["url", "http://stroman.org/marguerita.fadel"], ["published_at", "2020-09-14 16:26:19.161333"], ["accessed_at", "2021-08-14 16:26:19.161435"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.165305"], ["updated_at", "2021-09-14 16:26:19.165305"]]
141068
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 8], ["contributor_role", "compiler"], ["first", "Arlen"], ["middle", ""], ["last", "Gorczany"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.167524"], ["updated_at", "2021-09-14 16:26:19.167524"]]
141069
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 8], ["contributor_role", "translator"], ["first", "Louis"], ["middle", ""], ["last", "Collins"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.168655"], ["updated_at", "2021-09-14 16:26:19.168655"]]
141070
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141071
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141072
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Blue Remembered Earth"], ["container_title", "The Golden Bowl"], ["publisher", "Faber and Faber"], ["city", "Framihaven"], ["year", "1990"], ["pages", "pp. 145-6"], ["url", "http://shields-simonis.info/regan.lang"], ["published_at", "2020-09-14 16:26:19.174758"], ["accessed_at", "2021-08-14 16:26:19.174859"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.180699"], ["updated_at", "2021-09-14 16:26:19.180699"]]
141073
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 9], ["contributor_role", "compiler"], ["first", "Waylon"], ["middle", "Botsford"], ["last", "Hauck"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.184629"], ["updated_at", "2021-09-14 16:26:19.184629"]]
141074
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 9], ["contributor_role", "editor"], ["first", "Marty"], ["middle", ""], ["last", "Gislason"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.187367"], ["updated_at", "2021-09-14 16:26:19.187367"]]
141075
+ TRANSACTION (0.3ms) RELEASE SAVEPOINT active_record_1
141076
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141077
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Far From the Madding Crowd"], ["container_title", "The World, the Flesh and the Devil"], ["publisher", "Harper & Brothers"], ["city", "East Amado"], ["year", "2000"], ["pages", "pp. 145-6"], ["url", "http://rolfson.net/faith"], ["published_at", "2020-09-14 16:26:19.197925"], ["accessed_at", "2021-08-14 16:26:19.198182"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.206845"], ["updated_at", "2021-09-14 16:26:19.206845"]]
141078
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 10], ["contributor_role", "translator"], ["first", "Benito"], ["middle", ""], ["last", "Ward"], ["suffix", "V"], ["created_at", "2021-09-14 16:26:19.210512"], ["updated_at", "2021-09-14 16:26:19.210512"]]
141079
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 10], ["contributor_role", "editor"], ["first", "Classie"], ["middle", "Larson"], ["last", "Schmidt"], ["suffix", "VM"], ["created_at", "2021-09-14 16:26:19.211788"], ["updated_at", "2021-09-14 16:26:19.211788"]]
141080
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141081
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141082
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "This Lime Tree Bower"], ["container_title", "The Grapes of Wrath"], ["publisher", "Dedalus Books"], ["city", "Port Emanuel"], ["year", "1952"], ["pages", "pp. 145-6"], ["url", "http://wehner.info/virgil"], ["published_at", "2020-09-14 16:26:19.216965"], ["accessed_at", "2021-08-14 16:26:19.217079"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.221398"], ["updated_at", "2021-09-14 16:26:19.221398"]]
141083
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 11], ["contributor_role", "compiler"], ["first", "Augustine"], ["middle", "Donnelly"], ["last", "Durgan"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:26:19.224483"], ["updated_at", "2021-09-14 16:26:19.224483"]]
141084
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 11], ["contributor_role", "compiler"], ["first", "Rosa"], ["middle", "Luettgen"], ["last", "Dare"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.225756"], ["updated_at", "2021-09-14 16:26:19.225756"]]
141085
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141086
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141087
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "A Time of Gifts"], ["container_title", "Nine Coaches Waiting"], ["publisher", "Tate Publishing & Enterprises"], ["city", "North Jule"], ["year", "1984"], ["pages", "pp. 145-6"], ["url", "http://schmidt.biz/irmgard"], ["published_at", "2020-09-14 16:26:19.230741"], ["accessed_at", "2021-08-14 16:26:19.230841"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.235117"], ["updated_at", "2021-09-14 16:26:19.235117"]]
141088
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 12], ["contributor_role", "author"], ["first", "Nicky"], ["middle", ""], ["last", "Roberts"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:26:19.237398"], ["updated_at", "2021-09-14 16:26:19.237398"]]
141089
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 12], ["contributor_role", "author"], ["first", "Dwayne"], ["middle", "Muller"], ["last", "Mosciski"], ["suffix", "DVM"], ["created_at", "2021-09-14 16:26:19.239218"], ["updated_at", "2021-09-14 16:26:19.239218"]]
141090
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141091
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141092
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Pale Kings and Princes"], ["container_title", "For a Breath I Tarry"], ["publisher", "Brill"], ["city", "South Robert"], ["year", "1930"], ["pages", "pp. 145-6"], ["url", "http://lueilwitz.org/virginia_wisoky"], ["published_at", "2020-09-14 16:26:19.244886"], ["accessed_at", "2021-08-14 16:26:19.244979"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.249045"], ["updated_at", "2021-09-14 16:26:19.249045"]]
141093
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 13], ["contributor_role", "editor"], ["first", "Shu"], ["middle", ""], ["last", "Walsh"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:26:19.251149"], ["updated_at", "2021-09-14 16:26:19.251149"]]
141094
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 13], ["contributor_role", "editor"], ["first", "Numbers"], ["middle", ""], ["last", "Halvorson"], ["suffix", "DO"], ["created_at", "2021-09-14 16:26:19.252268"], ["updated_at", "2021-09-14 16:26:19.252268"]]
141095
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141096
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141097
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "The Painted Veil"], ["container_title", "The Grapes of Wrath"], ["publisher", "Black Sparrow Books"], ["city", "New Malvina"], ["year", "1943"], ["pages", "pp. 145-6"], ["url", "http://ruecker.co/paola.pfeffer"], ["published_at", "2020-09-14 16:26:19.258556"], ["accessed_at", "2021-08-14 16:26:19.258677"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.262933"], ["updated_at", "2021-09-14 16:26:19.262933"]]
141098
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 14], ["contributor_role", "editor"], ["first", "Korey"], ["middle", "O'Conner"], ["last", "Okuneva"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.265569"], ["updated_at", "2021-09-14 16:26:19.265569"]]
141099
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 14], ["contributor_role", "compiler"], ["first", "Alma"], ["middle", "Goldner"], ["last", "Von"], ["suffix", "Ret."], ["created_at", "2021-09-14 16:26:19.267974"], ["updated_at", "2021-09-14 16:26:19.267974"]]
141100
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141101
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141102
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Tender Is the Night"], ["container_title", "Infinite Jest"], ["publisher", "Berg Publishers"], ["city", "Lake Marshaton"], ["year", "1960"], ["pages", "pp. 145-6"], ["url", "http://friesen-hahn.io/alix.stroman"], ["published_at", "2020-09-14 16:26:19.275134"], ["accessed_at", "2021-08-14 16:26:19.275233"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.279475"], ["updated_at", "2021-09-14 16:26:19.279475"]]
141103
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 15], ["contributor_role", "author"], ["first", "Vickie"], ["middle", "Gorczany"], ["last", "Ruecker"], ["suffix", "I"], ["created_at", "2021-09-14 16:26:19.281683"], ["updated_at", "2021-09-14 16:26:19.281683"]]
141104
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 15], ["contributor_role", "author"], ["first", "Vincenzo"], ["middle", ""], ["last", "Cronin"], ["suffix", "DC"], ["created_at", "2021-09-14 16:26:19.282879"], ["updated_at", "2021-09-14 16:26:19.282879"]]
141105
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141106
+ WorksCited::Citation Exists? (0.5ms) SELECT 1 AS one FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."record_id" = ? AND "works_cited_citations"."record_type" = ? GROUP BY "works_cited_citations"."id" LIMIT ? [["contributor_role", "author"], ["record_id", 1], ["record_type", "Doodad"], ["LIMIT", 1]]
141107
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."record_id" = ? AND "works_cited_citations"."record_type" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC [["contributor_role", "author"], ["record_id", 1], ["record_type", "Doodad"]]
141108
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "editor"], ["LIMIT", 1]]
141109
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "compiler"], ["LIMIT", 1]]
141110
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "translator"], ["LIMIT", 1]]
141111
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "author"], ["LIMIT", 1]]
141112
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "author"], ["LIMIT", 1]]
141113
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 15], ["contributor_role", "author"]]
141114
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 15], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
141115
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 10.6ms | Allocations: 3607)
141116
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 6], ["contributor_role", "editor"], ["LIMIT", 1]]
141117
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 6], ["contributor_role", "compiler"], ["LIMIT", 1]]
141118
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 6], ["contributor_role", "translator"], ["LIMIT", 1]]
141119
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 6], ["contributor_role", "author"], ["LIMIT", 1]]
141120
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 6], ["contributor_role", "author"], ["LIMIT", 1]]
141121
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 6], ["contributor_role", "author"]]
141122
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 6], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
141123
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 7.0ms | Allocations: 1481)
141124
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 12], ["contributor_role", "editor"], ["LIMIT", 1]]
141125
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 12], ["contributor_role", "compiler"], ["LIMIT", 1]]
141126
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 12], ["contributor_role", "translator"], ["LIMIT", 1]]
141127
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 12], ["contributor_role", "author"], ["LIMIT", 1]]
141128
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 12], ["contributor_role", "author"], ["LIMIT", 1]]
141129
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 12], ["contributor_role", "author"]]
141130
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 12], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
141131
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 11.2ms | Allocations: 3835)
141132
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 3], ["contributor_role", "editor"], ["LIMIT", 1]]
141133
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 3], ["contributor_role", "editor"], ["LIMIT", 1]]
141134
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 3], ["contributor_role", "editor"]]
141135
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 3], ["contributor_role", "compiler"], ["LIMIT", 1]]
141136
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 3], ["contributor_role", "translator"], ["LIMIT", 1]]
141137
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 3], ["contributor_role", "author"], ["LIMIT", 1]]
141138
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 3], ["contributor_role", "author"], ["LIMIT", 1]]
141139
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 3], ["contributor_role", "author"]]
141140
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 8.5ms | Allocations: 1661)
141141
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 2], ["contributor_role", "receiver"], ["LIMIT", 1]]
141142
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 2], ["contributor_role", "editor"], ["LIMIT", 1]]
141143
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 2], ["contributor_role", "compiler"], ["LIMIT", 1]]
141144
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 2], ["contributor_role", "translator"], ["LIMIT", 1]]
141145
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 2], ["contributor_role", "translator"], ["LIMIT", 1]]
141146
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 2], ["contributor_role", "translator"]]
141147
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 2], ["contributor_role", "author"], ["LIMIT", 1]]
141148
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 2], ["contributor_role", "author"], ["LIMIT", 1]]
141149
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 2], ["contributor_role", "author"]]
141150
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_email.html.haml (Duration: 12.0ms | Allocations: 4211)
141151
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_list.html.haml (Duration: 78.9ms | Allocations: 23161)
141152
+ TRANSACTION (0.3ms) rollback transaction
141153
+ TRANSACTION (0.1ms) begin transaction
141154
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141155
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Aut Doloremque Aspernatur"], ["description", "Qui ipsa assumenda. Nemo beatae harum. Aliquam voluptatem ab.\nCommodi et debitis. Odio nulla rerum. Neque ipsa cum.\nIste ut facere. Rerum laboriosam nulla. Qui non est.\nQuisquam qui incidunt. Non nam perferendis. Id atque eos."], ["created_at", "2021-09-14 16:26:19.459806"], ["updated_at", "2021-09-14 16:26:19.459806"]]
141156
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141157
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141158
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Chaos: Making a New Science"], ["container_title", "Françoise Sagan"], ["publisher", "Penguin"], ["city", ""], ["year", "1987"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:26:19.464643"], ["accessed_at", "2021-08-14 16:26:19.464798"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.466397"], ["updated_at", "2021-09-14 16:26:19.466397"]]
141159
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "James"], ["middle", ""], ["last", "Gleick"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.468490"], ["updated_at", "2021-09-14 16:26:19.468490"]]
141160
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141161
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141162
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141163
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141164
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141165
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141166
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141167
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 14.6ms | Allocations: 3845)
141168
+ TRANSACTION (0.3ms) rollback transaction
141169
+ TRANSACTION (0.2ms) begin transaction
141170
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141171
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sunt Accusamus Reiciendis"], ["description", "Fuga praesentium ea. Velit assumenda in. Est repudiandae perspiciatis.\nIncidunt numquam facilis. Aut quos asperiores. Aut vero earum.\nPraesentium similique illo. Deleniti voluptatum facilis. In similique eius.\nEt nulla accusantium. Ea aliquam quis. Odit occaecati eum.\nIncidunt tenetur et. Commodi corporis et. Doloremque id sint."], ["created_at", "2021-09-14 16:26:19.500380"], ["updated_at", "2021-09-14 16:26:19.500380"]]
141172
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141173
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141174
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "The Allyn and Bacon Guide to Peer Tutoring"], ["container_title", "I Know Why the Caged Bird Sings"], ["publisher", "Allyn and Bacon"], ["city", ""], ["year", "2000"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:26:19.510896"], ["accessed_at", "2021-08-14 16:26:19.511163"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.514124"], ["updated_at", "2021-09-14 16:26:19.514124"]]
141175
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Paula"], ["middle", ""], ["last", "Gillespie"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.516544"], ["updated_at", "2021-09-14 16:26:19.516544"]]
141176
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Neal"], ["middle", ""], ["last", "Lerner"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.518871"], ["updated_at", "2021-09-14 16:26:19.518871"]]
141177
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141178
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141179
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141180
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141181
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
141182
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141183
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141184
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141185
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 9.5ms | Allocations: 1401)
141186
+ TRANSACTION (0.2ms) rollback transaction
141187
+ TRANSACTION (0.2ms) begin transaction
141188
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141189
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sunt Assumenda Quo Quibusdam"], ["description", "Eos ratione officia. Culpa optio sit. Nihil quos quia.\nNihil ipsum aut. Rerum quis recusandae. A repellendus debitis."], ["created_at", "2021-09-14 16:26:19.538715"], ["updated_at", "2021-09-14 16:26:19.538715"]]
141190
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141191
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141192
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Writing New Media: Theory and Applications for Expanding the Teaching of Composition"], ["container_title", "The Millstone"], ["publisher", "Utah State UP"], ["city", ""], ["year", "2004"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:26:19.547685"], ["accessed_at", "2021-08-14 16:26:19.547868"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.550179"], ["updated_at", "2021-09-14 16:26:19.550179"]]
141193
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Anne Frances"], ["middle", ""], ["last", "Wysocki"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.554293"], ["updated_at", "2021-09-14 16:26:19.554293"]]
141194
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Neal"], ["middle", ""], ["last", "Xerner"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.556917"], ["updated_at", "2021-09-14 16:26:19.556917"]]
141195
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Another"], ["middle", ""], ["last", "Zauthor"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.559771"], ["updated_at", "2021-09-14 16:26:19.559771"]]
141196
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141197
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141198
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141199
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141200
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141201
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141202
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141203
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 5.7ms | Allocations: 1250)
141204
+ TRANSACTION (0.2ms) rollback transaction
141205
+ TRANSACTION (0.1ms) begin transaction
141206
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141207
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nam"], ["description", "Iure ea omnis. Quam ratione pariatur. Sunt et quasi.\nFugiat et omnis. Dolore corporis tempore. Quia qui illo."], ["created_at", "2021-09-14 16:26:19.576084"], ["updated_at", "2021-09-14 16:26:19.576084"]]
141208
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141209
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141210
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Encyclopedia of Indiana"], ["container_title", "The Needle's Eye"], ["publisher", "Somerset"], ["city", ""], ["year", "1993"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:26:19.581078"], ["accessed_at", "2021-08-14 16:26:19.581275"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.582294"], ["updated_at", "2021-09-14 16:26:19.582294"]]
141211
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141212
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141213
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141214
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141215
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141216
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 6.4ms | Allocations: 941)
141217
+ TRANSACTION (0.3ms) rollback transaction
141218
+ TRANSACTION (0.2ms) begin transaction
141219
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141220
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fugiat Voluptatem Voluptas Id Ut"], ["description", "Vero distinctio fuga. Quisquam quasi quod. Laboriosam molestiae enim."], ["created_at", "2021-09-14 16:26:19.599513"], ["updated_at", "2021-09-14 16:26:19.599513"]]
141221
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141222
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141223
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Madness and Civilization: A History of Insanity in the Age of Reason"], ["container_title", "A Glass of Blessings"], ["publisher", "Vintage-Random House"], ["city", ""], ["year", "1988"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:26:19.607539"], ["accessed_at", "2021-08-14 16:26:19.607724"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.609755"], ["updated_at", "2021-09-14 16:26:19.609755"]]
141224
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Michel"], ["middle", ""], ["last", "Foucault"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.611904"], ["updated_at", "2021-09-14 16:26:19.611904"]]
141225
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Richard"], ["middle", ""], ["last", "Howard"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.613026"], ["updated_at", "2021-09-14 16:26:19.613026"]]
141226
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141227
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141228
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141229
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141230
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141231
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141232
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141233
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141234
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "translator"]]
141235
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 8.1ms | Allocations: 1553)
141236
+ TRANSACTION (0.3ms) rollback transaction
141237
+ TRANSACTION (0.2ms) begin transaction
141238
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141239
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Qui Enim Facere Tempora Placeat"], ["description", "Et eum quam. Maxime asperiores fuga. Voluptas voluptate ex."], ["created_at", "2021-09-14 16:26:19.630599"], ["updated_at", "2021-09-14 16:26:19.630599"]]
141240
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141241
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141242
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", ""], ["title", "TV Makes a Too-Close Call"], ["container_title", "Time"], ["publisher", ""], ["city", ""], ["year", ""], ["pages", "pp. 70-71"], ["url", ""], ["published_at", "2000-11-20 00:00:00"], ["accessed_at", "2021-08-14 16:26:19.640437"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.642766"], ["updated_at", "2021-09-14 16:26:19.642766"]]
141243
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "James"], ["middle", ""], ["last", "Poniewozik"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.645114"], ["updated_at", "2021-09-14 16:26:19.645114"]]
141244
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141245
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141246
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141247
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141248
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141249
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141250
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141251
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 9.7ms | Allocations: 1328)
141252
+ TRANSACTION (0.2ms) rollback transaction
141253
+ TRANSACTION (0.1ms) begin transaction
141254
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141255
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quam Et Delectus Vel Minima"], ["description", "Molestiae temporibus vel. Autem necessitatibus eligendi. Reiciendis doloribus beatae."], ["created_at", "2021-09-14 16:26:19.664107"], ["updated_at", "2021-09-14 16:26:19.664107"]]
141256
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141257
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141258
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", ""], ["title", "New Health Center Targets County's Uninsured Patients"], ["container_title", "Washington Post"], ["publisher", ""], ["city", ""], ["year", ""], ["pages", "p. LZ01"], ["url", ""], ["published_at", "2007-05-24 00:00:00"], ["accessed_at", "2021-08-14 16:26:19.669758"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.672288"], ["updated_at", "2021-09-14 16:26:19.672288"]]
141259
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Bill"], ["middle", ""], ["last", "Brubaker"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.675371"], ["updated_at", "2021-09-14 16:26:19.675371"]]
141260
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141261
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141262
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141263
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141264
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141265
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141266
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141267
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 8.3ms | Allocations: 1327)
141268
+ TRANSACTION (0.3ms) rollback transaction
141269
+ TRANSACTION (0.1ms) begin transaction
141270
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141271
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Autem Omnis Qui Aut"], ["description", "Ut eum aut. Eos accusantium perferendis. Delectus est quia.\nDoloribus tempora suscipit. Voluptatem tempora ratione. Quia eum non."], ["created_at", "2021-09-14 16:26:19.695260"], ["updated_at", "2021-09-14 16:26:19.695260"]]
141272
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141273
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141274
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", ""], ["title", "Conflicting Nationalisms: The Voice of the Subaltern in Mahasweta Devi's Bashai Tudu"], ["container_title", "Tulsa Studies in Women's Literature"], ["publisher", ""], ["city", ""], ["volume", "vol. 15"], ["number", "no. 1"], ["year", "1996"], ["pages", "pp. 41-50"], ["url", ""], ["accessed_at", "2021-08-14 16:26:19.701407"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.703125"], ["updated_at", "2021-09-14 16:26:19.703125"]]
141275
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Alaknanda"], ["middle", ""], ["last", "Bagchi"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.706183"], ["updated_at", "2021-09-14 16:26:19.706183"]]
141276
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141277
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141278
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141279
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141280
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141281
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141282
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141283
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 6.1ms | Allocations: 1325)
141284
+ TRANSACTION (0.3ms) rollback transaction
141285
+ TRANSACTION (0.2ms) begin transaction
141286
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141287
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quo Non Enim"], ["description", "Ut officiis at. Perferendis et dolorum. Nam totam qui."], ["created_at", "2021-09-14 16:26:19.724278"], ["updated_at", "2021-09-14 16:26:19.724278"]]
141288
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141289
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141290
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "The Purdue OWL Family of Sites"], ["container_title", ""], ["publisher", "The Writing Lab and OWL at Purdue and Purdue U"], ["city", ""], ["volume", ""], ["number", ""], ["year", "2008"], ["pages", ""], ["url", "https://owl.english.purdue.edu/owl"], ["accessed_at", "2008-04-23 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.732312"], ["updated_at", "2021-09-14 16:26:19.732312"]]
141291
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141292
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141293
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141294
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141295
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141296
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 6.1ms | Allocations: 976)
141297
+ TRANSACTION (0.2ms) rollback transaction
141298
+ TRANSACTION (0.2ms) begin transaction
141299
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141300
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Aut Maxime Tenetur Voluptates Est"], ["description", "Ducimus quia accusamus. Autem sint dolor. Perferendis veritatis laudantium.\nEst sit dolorem. Maiores neque qui. Nemo repudiandae aut.\nRecusandae exercitationem veritatis. Sequi voluptatem et. Eaque dolorem soluta."], ["created_at", "2021-09-14 16:26:19.751139"], ["updated_at", "2021-09-14 16:26:19.751139"]]
141301
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141302
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141303
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Guide to Literary and Critical Theory"], ["container_title", ""], ["publisher", "Purdue U"], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "http://www.cla.purdue.edu/english/theory/"], ["published_at", "2003-11-28 00:00:00"], ["accessed_at", "2006-05-10 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.760329"], ["updated_at", "2021-09-14 16:26:19.760329"]]
141304
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Dino"], ["middle", ""], ["last", "Felluga"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.762781"], ["updated_at", "2021-09-14 16:26:19.762781"]]
141305
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141306
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141307
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141308
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141309
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141310
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141311
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141312
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 5.9ms | Allocations: 1287)
141313
+ TRANSACTION (0.3ms) rollback transaction
141314
+ TRANSACTION (0.1ms) begin transaction
141315
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141316
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ex Deserunt Maxime"], ["description", "Temporibus vel sit. Consequuntur accusantium quae. Doloremque nobis dignissimos.\nFugiat quod consequatur. Quo fugit maiores. Repudiandae reiciendis dignissimos.\nId perferendis illo. Est sint impedit. Expedita qui rem."], ["created_at", "2021-09-14 16:26:19.780288"], ["updated_at", "2021-09-14 16:26:19.780288"]]
141317
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141318
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141319
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "published_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Athlete's Foot - Topic Overview"], ["container_title", "WebMD"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://www.webmd.com/skin-problems-and-treatments/tc/athletes-foot-topic-overview"], ["published_at", "2014-09-25 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.787797"], ["updated_at", "2021-09-14 16:26:19.787797"]]
141320
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141321
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141322
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141323
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141324
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141325
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 10.9ms | Allocations: 1036)
141326
+ TRANSACTION (0.3ms) rollback transaction
141327
+ TRANSACTION (0.2ms) begin transaction
141328
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141329
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sed Hic Consequatur"], ["description", "Laborum et nulla. Eos id et. Enim nemo iure."], ["created_at", "2021-09-14 16:26:19.814028"], ["updated_at", "2021-09-14 16:26:19.814028"]]
141330
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141331
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141332
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "How to Make Vegetarian Chili"], ["container_title", "eHow"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://www.ehow.com/how_10727_make-vegetarian-chili.html"], ["accessed_at", "2015-07-06 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.825749"], ["updated_at", "2021-09-14 16:26:19.825749"]]
141333
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Susan"], ["middle", ""], ["last", "Lundman"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.830401"], ["updated_at", "2021-09-14 16:26:19.830401"]]
141334
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141335
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141336
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141337
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141338
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141339
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141340
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141341
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 13.5ms | Allocations: 1346)
141342
+ TRANSACTION (0.3ms) rollback transaction
141343
+ TRANSACTION (0.2ms) begin transaction
141344
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141345
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Autem Ad Dolores Sint Maiores"], ["description", "Et odit odio. Fugiat tempore sunt. Dolores a in.\nEius et quis. Facilis laudantium nam. Aspernatur quae quo."], ["created_at", "2021-09-14 16:26:19.858100"], ["updated_at", "2021-09-14 16:26:19.858100"]]
141346
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141347
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141348
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "E-book"], ["title", "How to Write a Lot: A Practical Guide to Productive Academic Writing"], ["container_title", ""], ["publisher", "American Psychological Association"], ["city", ""], ["volume", ""], ["number", ""], ["year", "2007"], ["pages", ""], ["url", ""], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.872027"], ["updated_at", "2021-09-14 16:26:19.872027"]]
141349
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Paul"], ["middle", "Joseph"], ["last", "Silva"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.876493"], ["updated_at", "2021-09-14 16:26:19.876493"]]
141350
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141351
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141352
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141353
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141354
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141355
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141356
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141357
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 13.0ms | Allocations: 1259)
141358
+ TRANSACTION (0.3ms) rollback transaction
141359
+ TRANSACTION (0.2ms) begin transaction
141360
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141361
+ Doodad Create (0.8ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptatem Id Eius"], ["description", "Consequatur omnis et. Quis tempora id. Eveniet qui labore.\nIste aut labore. Nihil suscipit at. Repudiandae provident velit.\nCorporis deserunt exercitationem. Odit delectus doloremque. Repudiandae delectus odio."], ["created_at", "2021-09-14 16:26:19.905275"], ["updated_at", "2021-09-14 16:26:19.905275"]]
141362
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141363
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141364
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "Kindle ed."], ["title", "The Prince"], ["container_title", ""], ["publisher", "Library of Alexandria"], ["city", ""], ["volume", ""], ["number", ""], ["year", "2018"], ["pages", ""], ["url", ""], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.919329"], ["updated_at", "2021-09-14 16:26:19.919329"]]
141365
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Niccolo"], ["middle", ""], ["last", "Machiavelli"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.923695"], ["updated_at", "2021-09-14 16:26:19.923695"]]
141366
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "W. K."], ["middle", ""], ["last", "Marriott"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.925917"], ["updated_at", "2021-09-14 16:26:19.925917"]]
141367
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141368
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141369
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141370
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141371
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141372
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "translator"]]
141373
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141374
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141375
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141376
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 9.5ms | Allocations: 1557)
141377
+ TRANSACTION (0.3ms) rollback transaction
141378
+ TRANSACTION (0.1ms) begin transaction
141379
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141380
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Veniam"], ["description", "Voluptatem suscipit eaque. Tempora enim accusantium. Sequi praesentium ut.\nMaxime officia magnam. Eos non aperiam. Esse et ut.\nVel modi occaecati. Aperiam itaque voluptas. Corporis laudantium dolores.\nIpsum est dolores. Voluptatum dolor quidem. Aliquid sunt consequatur."], ["created_at", "2021-09-14 16:26:19.947420"], ["updated_at", "2021-09-14 16:26:19.947420"]]
141381
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141382
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141383
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "10 Tips on Writing the Living Web"], ["container_title", "A List Apart: For People Who Make Websites"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "http://alistapart.com/article/writeliving"], ["published_at", "2002-08-16 00:00:00"], ["accessed_at", "2009-05-04 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.957435"], ["updated_at", "2021-09-14 16:26:19.957435"]]
141384
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Mark"], ["middle", ""], ["last", "Bernstein"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.961166"], ["updated_at", "2021-09-14 16:26:19.961166"]]
141385
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141386
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141387
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141388
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141389
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141390
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141391
+  (0.1ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141392
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 5.9ms | Allocations: 1351)
141393
+ TRANSACTION (0.2ms) rollback transaction
141394
+ TRANSACTION (0.1ms) begin transaction
141395
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141396
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Possimus Reiciendis"], ["description", "Consequuntur aut sit. Necessitatibus voluptatem sed. Non nesciunt consequatur.\nQui excepturi laudantium. Ipsum ipsam earum. Occaecati sequi sed.\nLaborum ipsum minus. Quod nemo nostrum. Est repellendus et.\nNon minima consequatur. Adipisci voluptatem eius. Tempora provident quo.\nSit vero porro. Quia rem nihil. Ab nam earum."], ["created_at", "2021-09-14 16:26:19.980580"], ["updated_at", "2021-09-14 16:26:19.980580"]]
141397
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141398
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141399
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Research in Youth Culture and Policy: Current Conditions and Future Directions"], ["container_title", "Social Work and Society: The International Online-Only Journal"], ["publisher", ""], ["city", ""], ["volume", "vol. 6"], ["number", "no. 2"], ["year", "2008"], ["pages", ""], ["url", "http://www.socwork.net/sws/article/view/60/362"], ["accessed_at", "2009-05-20 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:19.988826"], ["updated_at", "2021-09-14 16:26:19.988826"]]
141400
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Nadine"], ["middle", ""], ["last", "Dolby"], ["suffix", ""], ["created_at", "2021-09-14 16:26:19.992017"], ["updated_at", "2021-09-14 16:26:19.992017"]]
141401
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141402
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141403
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141404
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141405
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141406
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141407
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141408
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 12.4ms | Allocations: 1346)
141409
+ TRANSACTION (0.3ms) rollback transaction
141410
+ TRANSACTION (0.2ms) begin transaction
141411
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141412
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Dignissimos Nemo Aut Aliquid"], ["description", "Occaecati deleniti velit. In quos commodi. Itaque quia quia.\nSit iure velit. Ipsam aliquid facere. Laboriosam ipsa quam.\nDolor eaque earum. Necessitatibus reprehenderit explicabo. Unde vero pariatur."], ["created_at", "2021-09-14 16:26:20.019199"], ["updated_at", "2021-09-14 16:26:20.019199"]]
141413
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141414
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141415
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Investigating Disease Outbreaks Under a Protocol to the Biological and Toxin Weapons Convention"], ["container_title", "Emerging Infectious Diseases"], ["publisher", ""], ["city", ""], ["volume", "vol. 6"], ["number", "no. 6"], ["year", "2000"], ["pages", "pp. 595-600"], ["url", "http://wwwnc.cdc.gov/eid/article/6/6/00-0607_article"], ["accessed_at", "2009-02-08 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.032448"], ["updated_at", "2021-09-14 16:26:20.032448"]]
141416
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Mark"], ["middle", ""], ["last", "Wheelis"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.037053"], ["updated_at", "2021-09-14 16:26:20.037053"]]
141417
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141418
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141419
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141420
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141421
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141422
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141423
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141424
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 9.2ms | Allocations: 1346)
141425
+ TRANSACTION (0.2ms) rollback transaction
141426
+ TRANSACTION (0.2ms) begin transaction
141427
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141428
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Magnam Quae Et Aut Quia"], ["description", "Ut nostrum beatae. Et ut possimus. Natus adipisci quo.\nQui quibusdam praesentium. Ut nobis ad. Ut qui harum.\nVoluptas ea assumenda. Et neque sunt. Aut voluptatibus beatae.\nEa magni et. Nulla voluptatem magnam. Corporis voluptatibus quae.\nVelit molestias sit. Ex provident perspiciatis. Optio delectus aut."], ["created_at", "2021-09-14 16:26:20.063347"], ["updated_at", "2021-09-14 16:26:20.063347"]]
141429
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141430
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141431
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Toxicity of Nitrite to Three Species of Freshwater Invertebrates"], ["container_title", "Environmental Toxicology"], ["publisher", ""], ["city", ""], ["volume", "vol. 21"], ["number", "no. 1"], ["year", ""], ["pages", "pp. 90-94"], ["url", ""], ["online_database", "Wiley Online Library"], ["doi", "doi:10.1002/tox.20155"], ["published_at", "2006-02-03 00:00:00"], ["accessed_at", "2009-05-26 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.093988"], ["updated_at", "2021-09-14 16:26:20.093988"]]
141432
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Julio"], ["middle", "Allen"], ["last", "Camargo"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.098755"], ["updated_at", "2021-09-14 16:26:20.098755"]]
141433
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Alvaro"], ["middle", ""], ["last", "Alonso"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.101487"], ["updated_at", "2021-09-14 16:26:20.101487"]]
141434
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141435
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141436
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141437
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141438
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141439
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141440
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141441
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
141442
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 21.6ms | Allocations: 1499)
141443
+ TRANSACTION (0.4ms) rollback transaction
141444
+ TRANSACTION (0.2ms) begin transaction
141445
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141446
+ Doodad Create (1.0ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Neque Recusandae Aliquam Tenetur Voluptatem"], ["description", "Voluptates deserunt quos. Debitis et nam. Voluptatibus repudiandae quasi.\nMagnam qui et. Illum debitis molestiae. Ad perspiciatis explicabo.\nOptio quasi eius. Itaque consequatur beatae. Maiores error dolor."], ["created_at", "2021-09-14 16:26:20.140252"], ["updated_at", "2021-09-14 16:26:20.140252"]]
141447
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141448
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141449
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", ""], ["title", "Re: Modernist Literature"], ["container_title", ""], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", ""], ["online_database", ""], ["doi", ""], ["published_at", "2000-11-15 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.156390"], ["updated_at", "2021-09-14 16:26:20.156390"]]
141450
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Andrew"], ["middle", ""], ["last", "Kunka"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.160593"], ["updated_at", "2021-09-14 16:26:20.160593"]]
141451
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["first", "John"], ["middle", ""], ["last", "Watts"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.163183"], ["updated_at", "2021-09-14 16:26:20.163183"]]
141452
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141453
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
141454
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
141455
+  (0.4ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"]]
141456
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141457
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141458
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141459
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141460
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141461
+  (0.4ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141462
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_email.html.haml (Duration: 19.4ms | Allocations: 1792)
141463
+ TRANSACTION (0.3ms) rollback transaction
141464
+ TRANSACTION (0.2ms) begin transaction
141465
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141466
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Et Qui Deleniti"], ["description", "Dolorem inventore vel. Doloremque eum minus. Odit error distinctio.\nUt praesentium fugiat. Dicta similique voluptatem. Non reprehenderit at.\nEst minus et. Omnis non impedit. Quia qui voluptates.\nSed voluptatibus sit. Occaecati in et. Dolor ducimus mollitia.\nDistinctio amet id. Non expedita labore. Veritatis et enim."], ["created_at", "2021-09-14 16:26:20.202315"], ["updated_at", "2021-09-14 16:26:20.202315"]]
141467
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141468
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141469
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", ""], ["title", "Re: Best Strategy: Fenced Pastures vs. Max Number of Rooms?"], ["container_title", "BoardGameGeek"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://boardgamegeek.com/thread/343929/best-strategy-fenced-pastures-vs-max-number-rooms"], ["online_database", ""], ["doi", ""], ["published_at", "2008-09-29 00:00:00"], ["accessed_at", "2009-04-05 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.213866"], ["updated_at", "2021-09-14 16:26:20.213866"]]
141470
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "handle", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Sal"], ["middle", ""], ["last", "Hernandez"], ["suffix", ""], ["handle", "Salmar1515"], ["created_at", "2021-09-14 16:26:20.218063"], ["updated_at", "2021-09-14 16:26:20.218063"]]
141471
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141472
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
141473
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
141474
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
141475
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
141476
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141477
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141478
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141479
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_email.html.haml (Duration: 10.9ms | Allocations: 1521)
141480
+ TRANSACTION (0.3ms) rollback transaction
141481
+ TRANSACTION (0.1ms) begin transaction
141482
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141483
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Culpa Cum A"], ["description", "Dolor totam minima. Omnis dolorem quidem. Autem adipisci consequatur.\nIn ea quam. Aut unde et. Non reiciendis vero."], ["created_at", "2021-09-14 16:26:20.241797"], ["updated_at", "2021-09-14 16:26:20.241797"]]
141484
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141485
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141486
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", ""], ["title", "SC demonstrated why all the debates are the engines of this campaign."], ["container_title", "Twitter"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://twitter.com/tombrokaw/status/160996868971704320"], ["online_database", ""], ["doi", ""], ["published_at", "2012-01-22 03:06:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.251964"], ["updated_at", "2021-09-14 16:26:20.251964"]]
141487
+ WorksCited::Contributor Create (0.5ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "handle", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", ""], ["middle", ""], ["last", ""], ["suffix", ""], ["handle", "tombrokaw"], ["created_at", "2021-09-14 16:26:20.255027"], ["updated_at", "2021-09-14 16:26:20.255027"]]
141488
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141489
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
141490
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141491
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141492
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141493
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_tweet.html.haml (Duration: 9.9ms | Allocations: 3027)
141494
+ TRANSACTION (0.3ms) rollback transaction
141495
+ TRANSACTION (0.1ms) begin transaction
141496
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141497
+ Doodad Create (0.6ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Illum Est Accusantium Eos"], ["description", "Cupiditate eaque quo. In molestiae sit. Et voluptates et.\nEt qui nisi. Quaerat nemo animi. Eos ipsam possimus.\nSit non pariatur. Doloribus ad in. Sed sit hic.\nIusto aliquam laudantium. Rerum autem magnam. Qui eum et.\nEst sed consequatur. Aspernatur possimus occaecati. Adipisci officia quas."], ["created_at", "2021-09-14 16:26:20.281083"], ["updated_at", "2021-09-14 16:26:20.281083"]]
141498
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141499
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141500
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Now Sleeps the Crimson Petal"], ["container_title", "Now Sleeps the Crimson Petal"], ["publisher", "Golden Cockerel Press"], ["city", "West Chan"], ["year", "1965"], ["pages", "pp. 145-6"], ["url", "http://luettgen.info/lupe"], ["published_at", "2020-09-14 16:26:20.289603"], ["accessed_at", "2021-08-14 16:26:20.289878"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.291503"], ["updated_at", "2021-09-14 16:26:20.291503"]]
141501
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141502
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141503
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141504
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:26:20.299595"], ["updated_at", "2021-09-14 16:26:20.299595"]]
141505
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141506
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141507
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141508
+ TRANSACTION (0.3ms) rollback transaction
141509
+ TRANSACTION (0.1ms) begin transaction
141510
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141511
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptatem Cupiditate Commodi"], ["description", "Alias dignissimos aut. Vero est at. Unde nesciunt quia.\nRepellat ad ab. Tempora beatae vitae. Pariatur quo iste.\nIusto dolorem quia. Temporibus assumenda reprehenderit. Ipsa consectetur excepturi."], ["created_at", "2021-09-14 16:26:20.317784"], ["updated_at", "2021-09-14 16:26:20.317784"]]
141512
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141513
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141514
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "The Mirror Crack'd from Side to Side"], ["container_title", "In Death Ground"], ["publisher", "Papadakis Publisher"], ["city", "Schoenfort"], ["year", "2009"], ["pages", "pp. 145-6"], ["url", "http://ratke-sawayn.com/rafael_klein"], ["published_at", "2020-09-14 16:26:20.325993"], ["accessed_at", "2021-08-14 16:26:20.326144"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.327799"], ["updated_at", "2021-09-14 16:26:20.327799"]]
141515
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141516
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141517
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141518
+ WorksCited::Contributor Create (0.5ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:26:20.338308"], ["updated_at", "2021-09-14 16:26:20.338308"]]
141519
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141520
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141521
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Susan"], ["middle", "Sara"], ["last", "Sorenson"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:26:20.344839"], ["updated_at", "2021-09-14 16:26:20.344839"]]
141522
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141523
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141524
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141525
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
141526
+ TRANSACTION (0.3ms) rollback transaction
141527
+ TRANSACTION (0.2ms) begin transaction
141528
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141529
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Aut Saepe Maiores Aspernatur Voluptatem"], ["description", "Aperiam aut qui. Et quasi pariatur. Natus modi soluta.\nOdio optio ab. Impedit ipsam dicta. Et voluptate error.\nTemporibus aperiam ut. Rerum in atque. Sit neque et.\nEst vitae quibusdam. Reiciendis enim voluptates. Excepturi amet quis."], ["created_at", "2021-09-14 16:26:20.366571"], ["updated_at", "2021-09-14 16:26:20.366571"]]
141530
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141531
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141532
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "For Whom the Bell Tolls"], ["container_title", "Such, Such Were the Joys"], ["publisher", "Cengage Learning"], ["city", "Lake Sherronburgh"], ["year", "1963"], ["pages", "pp. 145-6"], ["url", "http://cartwright-ernser.biz/clayton"], ["published_at", "2020-09-14 16:26:20.375927"], ["accessed_at", "2021-08-14 16:26:20.376132"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.377843"], ["updated_at", "2021-09-14 16:26:20.377843"]]
141533
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141534
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141535
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141536
+ WorksCited::Contributor Create (0.6ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:26:20.387536"], ["updated_at", "2021-09-14 16:26:20.387536"]]
141537
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141538
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141539
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Susan"], ["middle", "Sara"], ["last", "Sorenson"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:26:20.393641"], ["updated_at", "2021-09-14 16:26:20.393641"]]
141540
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141541
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141542
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Lara"], ["middle", ""], ["last", "Lovelace"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.399372"], ["updated_at", "2021-09-14 16:26:20.399372"]]
141543
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141544
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
141545
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
141546
+ TRANSACTION (0.3ms) rollback transaction
141547
+ TRANSACTION (0.1ms) begin transaction
141548
+ TRANSACTION (0.2ms) rollback transaction
141549
+ TRANSACTION (0.1ms) begin transaction
141550
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141551
+ Doodad Create (0.6ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quidem Velit Molestiae Incidunt Ipsam"], ["description", "Fuga ducimus id. Facilis esse impedit. Et deleniti voluptates.\nVel ipsam ea. Consequuntur autem rem. Minus voluptas beatae."], ["created_at", "2021-09-14 16:26:20.488106"], ["updated_at", "2021-09-14 16:26:20.488106"]]
141552
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141553
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141554
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "O Jerusalem!"], ["container_title", "Mr Standfast"], ["publisher", "Left Book Club"], ["city", "South Ressie"], ["year", "2006"], ["pages", "pp. 145-6"], ["url", "http://keeling-turcotte.net/daisy.kreiger"], ["published_at", "2020-09-14 16:26:20.496788"], ["accessed_at", "2021-08-14 16:26:20.496999"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.498418"], ["updated_at", "2021-09-14 16:26:20.498418"]]
141555
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141556
+ TRANSACTION (0.4ms) rollback transaction
141557
+ TRANSACTION (0.2ms) begin transaction
141558
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141559
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Qui"], ["description", "Eos quia ea. Autem veritatis molestiae. Voluptas qui modi.\nEt eligendi neque. Laborum aut voluptas. Eum velit vitae.\nLibero perspiciatis quia. Eum repudiandae aut. Consequuntur minima nisi."], ["created_at", "2021-09-14 16:26:20.511432"], ["updated_at", "2021-09-14 16:26:20.511432"]]
141560
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141561
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141562
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Parliament of Man"], ["container_title", "Vile Bodies"], ["publisher", "Chick Publications"], ["city", "Harryview"], ["year", "1997"], ["pages", "pp. 145-6"], ["url", "http://strosin.io/brian"], ["published_at", "2020-09-14 16:26:20.519041"], ["accessed_at", "2021-08-14 16:26:20.519211"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.521357"], ["updated_at", "2021-09-14 16:26:20.521357"]]
141563
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141564
+ TRANSACTION (0.2ms) rollback transaction
141565
+ TRANSACTION (0.1ms) begin transaction
141566
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141567
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Mollitia Soluta Voluptatem"], ["description", "Facere quisquam laboriosam. Repellat sed delectus. Sequi earum sint.\nEt minima quia. Quo necessitatibus rerum. Debitis laudantium fugiat.\nOdio nostrum neque. Quia cum minus. Totam qui mollitia.\nAccusantium ratione fugiat. Sed repudiandae iure. Enim dolores et.\nPraesentium autem rerum. Veritatis cumque fugiat. Cum voluptas aspernatur."], ["created_at", "2021-09-14 16:26:20.535091"], ["updated_at", "2021-09-14 16:26:20.535091"]]
141568
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141569
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141570
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Fear and Trembling"], ["container_title", "An Instant In The Wind"], ["publisher", "University of Minnesota Press"], ["city", "North Delanashire"], ["year", "1970"], ["pages", "pp. 145-6"], ["url", "http://muller-runolfsdottir.biz/pauletta_hagenes"], ["published_at", "2020-09-14 16:26:20.543099"], ["accessed_at", "2021-08-14 16:26:20.543396"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.544904"], ["updated_at", "2021-09-14 16:26:20.544904"]]
141571
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141572
+ TRANSACTION (0.3ms) rollback transaction
141573
+ TRANSACTION (0.2ms) begin transaction
141574
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141575
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Repellendus Voluptatum Sed Nisi"], ["description", "Consequatur molestias atque. Praesentium debitis sapiente. Voluptatem temporibus dolores."], ["created_at", "2021-09-14 16:26:20.554904"], ["updated_at", "2021-09-14 16:26:20.554904"]]
141576
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141577
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141578
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "To Sail Beyond the Sunset"], ["container_title", "A Scanner Darkly"], ["publisher", "Carnegie Mellon University Press"], ["city", "South Reneeton"], ["year", "1978"], ["pages", "pp. 145-6"], ["url", "http://osinski.net/yuette"], ["published_at", "2020-09-14 16:26:20.564385"], ["accessed_at", "2021-08-14 16:26:20.564626"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.566238"], ["updated_at", "2021-09-14 16:26:20.566238"]]
141579
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141580
+ TRANSACTION (0.3ms) rollback transaction
141581
+ TRANSACTION (0.2ms) begin transaction
141582
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141583
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Numquam Et Aut Expedita Similique"], ["description", "Rerum voluptatem velit. Voluptas sed esse. Aut autem delectus.\nEarum perspiciatis voluptas. Vitae cumque corrupti. Sed esse qui."], ["created_at", "2021-09-14 16:26:20.578360"], ["updated_at", "2021-09-14 16:26:20.578360"]]
141584
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141585
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141586
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "The Moving Toyshop"], ["container_title", "To Sail Beyond the Sunset"], ["publisher", "Mainstream Publishing"], ["city", "Homenickburgh"], ["year", "1937"], ["pages", "pp. 145-6"], ["url", "http://mccullough-olson.name/roy_dubuque"], ["published_at", "2020-09-14 16:26:20.586713"], ["accessed_at", "2021-08-14 16:26:20.586955"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.588779"], ["updated_at", "2021-09-14 16:26:20.588779"]]
141587
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141588
+ TRANSACTION (0.3ms) rollback transaction
141589
+ TRANSACTION (0.1ms) begin transaction
141590
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141591
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Explicabo"], ["description", "Ut quis sint. Corrupti ut vitae. Ut odio tempora.\nQuidem voluptatem rerum. Et et nulla. Explicabo accusantium voluptatem.\nEt ea ullam. Sit molestiae neque. Aspernatur totam aliquam."], ["created_at", "2021-09-14 16:26:20.602744"], ["updated_at", "2021-09-14 16:26:20.602744"]]
141592
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141593
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141594
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "The Torment of Others"], ["container_title", "The Daffodil Sky"], ["publisher", "Etruscan Press"], ["city", "Predovicburgh"], ["year", "1945"], ["pages", "pp. 145-6"], ["url", "http://bode.io/cora.gerhold"], ["published_at", "2020-09-14 16:26:20.609968"], ["accessed_at", "2021-08-14 16:26:20.610102"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.611214"], ["updated_at", "2021-09-14 16:26:20.611214"]]
141595
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141596
+ TRANSACTION (0.2ms) rollback transaction
141597
+ TRANSACTION (0.2ms) begin transaction
141598
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141599
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ipsam Maiores Ut Aut Vero"], ["description", "Ut autem tenetur. Ullam porro laudantium. Quod nostrum magnam.\nAut et vero. Temporibus ut earum. Error et omnis.\nVoluptatum consequuntur et. Optio quam nam. Quis reiciendis dolores.\nSit ullam porro. Dicta sed molestiae. Labore libero dolor."], ["created_at", "2021-09-14 16:26:20.623011"], ["updated_at", "2021-09-14 16:26:20.623011"]]
141600
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141601
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141602
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Ego Dominus Tuus"], ["container_title", "The Heart Is a Lonely Hunter"], ["publisher", "Brill"], ["city", "Rhiannonborough"], ["year", "1955"], ["pages", "pp. 145-6"], ["url", "http://howell.biz/joey_dickinson"], ["published_at", "2020-09-14 16:26:20.632636"], ["accessed_at", "2021-08-14 16:26:20.632884"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.634671"], ["updated_at", "2021-09-14 16:26:20.634671"]]
141603
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141604
+ TRANSACTION (0.3ms) rollback transaction
141605
+ TRANSACTION (0.2ms) begin transaction
141606
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141607
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quis Qui Voluptatem"], ["description", "Earum sit ab. Quaerat illo blanditiis. Culpa sed aut.\nDeserunt suscipit in. Et minus perferendis. Est ex sit.\nQui minus dolorem. Commodi iusto hic. Debitis occaecati dolorem.\nTenetur debitis sit. Odio eum nam. Qui harum corporis."], ["created_at", "2021-09-14 16:26:20.650455"], ["updated_at", "2021-09-14 16:26:20.650455"]]
141608
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141609
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141610
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "When the Green Woods Laugh"], ["container_title", "The Way Through the Woods"], ["publisher", "Martinus Nijhoff Publishers"], ["city", "Port Gladys"], ["year", "1997"], ["pages", "pp. 145-6"], ["url", "http://dubuque-batz.info/sherman"], ["published_at", "2020-09-14 16:26:20.659065"], ["accessed_at", "2021-08-14 16:26:20.659329"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.661048"], ["updated_at", "2021-09-14 16:26:20.661048"]]
141611
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141612
+ TRANSACTION (0.2ms) rollback transaction
141613
+ TRANSACTION (0.2ms) begin transaction
141614
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141615
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Non"], ["description", "Fugit placeat dignissimos. Dolorem maxime delectus. Cumque ducimus debitis.\nEt illo debitis. Laudantium amet vel. Labore sed vitae.\nVoluptates in ipsa. Nulla et provident. Facere iusto suscipit."], ["created_at", "2021-09-14 16:26:20.671284"], ["updated_at", "2021-09-14 16:26:20.671284"]]
141616
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141617
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141618
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "I Know Why the Caged Bird Sings"], ["container_title", "Blood's a Rover"], ["publisher", "Cisco Press"], ["city", "Princestad"], ["year", "1930"], ["pages", "pp. 145-6"], ["url", "http://bruen-larkin.org/rosena.lubowitz"], ["published_at", "2020-09-14 16:26:20.679023"], ["accessed_at", "2021-08-14 16:26:20.679201"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.680702"], ["updated_at", "2021-09-14 16:26:20.680702"]]
141619
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141620
+ TRANSACTION (0.3ms) rollback transaction
141621
+ TRANSACTION (0.1ms) begin transaction
141622
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141623
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptas Inventore Repellat"], ["description", "Quia nisi dolore. Commodi vel similique. Et ut debitis.\nExplicabo atque aliquam. Ullam possimus velit. Voluptatem voluptates ex.\nArchitecto veniam quas. Aperiam laboriosam earum. Quis voluptatibus doloremque.\nQuidem labore dolorem. Blanditiis nihil officia. Reprehenderit eos cumque."], ["created_at", "2021-09-14 16:26:20.695577"], ["updated_at", "2021-09-14 16:26:20.695577"]]
141624
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141625
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141626
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "Precious Bane"], ["container_title", "All Passion Spent"], ["publisher", "Book League of America"], ["city", "Raynorchester"], ["year", "1950"], ["pages", "pp. 145-6"], ["url", "http://yundt.biz/malik.wilderman"], ["published_at", "2020-09-14 16:26:20.701333"], ["accessed_at", "2021-08-14 16:26:20.701438"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.702503"], ["updated_at", "2021-09-14 16:26:20.702503"]]
141627
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141628
+ TRANSACTION (0.4ms) rollback transaction
141629
+ TRANSACTION (0.1ms) begin transaction
141630
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141631
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nihil Et Voluptas"], ["description", "Cupiditate non ullam. Doloremque maxime amet. Ut dolorum corporis."], ["created_at", "2021-09-14 16:26:20.743561"], ["updated_at", "2021-09-14 16:26:20.743561"]]
141632
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141633
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141634
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "For Whom the Bell Tolls"], ["container_title", "By Grand Central Station I Sat Down and Wept"], ["publisher", "No Starch Press"], ["city", "Dickenschester"], ["year", "1979"], ["pages", "pp. 145-6"], ["url", "http://schaefer.info/walter.pouros"], ["published_at", "2020-09-14 16:26:20.749067"], ["accessed_at", "2021-08-14 16:26:20.749167"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.752119"], ["updated_at", "2021-09-14 16:26:20.752119"]]
141635
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141636
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141637
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Cory"], ["middle", ""], ["last", "Auer"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.760044"], ["updated_at", "2021-09-14 16:26:20.760044"]]
141638
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141639
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141640
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Man"], ["middle", "Murphy"], ["last", "Ernser"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.767028"], ["updated_at", "2021-09-14 16:26:20.767028"]]
141641
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141642
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141643
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Dennis"], ["middle", "Cassin"], ["last", "Schinner"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.773568"], ["updated_at", "2021-09-14 16:26:20.773568"]]
141644
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141645
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141646
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Leoma"], ["middle", "Zulauf"], ["last", "Haag"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.779669"], ["updated_at", "2021-09-14 16:26:20.779669"]]
141647
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141648
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
141649
+ TRANSACTION (0.3ms) rollback transaction
141650
+ TRANSACTION (0.2ms) begin transaction
141651
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141652
+ Doodad Create (0.6ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Error"], ["description", "Expedita dolor voluptatem. Pariatur tenetur omnis. Est distinctio eligendi."], ["created_at", "2021-09-14 16:26:20.792439"], ["updated_at", "2021-09-14 16:26:20.792439"]]
141653
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141654
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141655
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "The Road Less Traveled"], ["container_title", "Carrion Comfort"], ["publisher", "Macmillan Publishers"], ["city", "Asleychester"], ["year", "1989"], ["pages", "pp. 145-6"], ["url", "http://larson-mraz.info/lindsey_lynch"], ["published_at", "2020-09-14 16:26:20.801332"], ["accessed_at", "2021-08-14 16:26:20.801595"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.803257"], ["updated_at", "2021-09-14 16:26:20.803257"]]
141656
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141657
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141658
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Patrick"], ["middle", "Anderson"], ["last", "Ondricka"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.810415"], ["updated_at", "2021-09-14 16:26:20.810415"]]
141659
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141660
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141661
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Johnna"], ["middle", ""], ["last", "Bradtke"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.814180"], ["updated_at", "2021-09-14 16:26:20.814180"]]
141662
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141663
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141664
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Gale"], ["middle", ""], ["last", "Carter"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.817618"], ["updated_at", "2021-09-14 16:26:20.817618"]]
141665
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141666
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141667
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Javier"], ["middle", ""], ["last", "Goodwin"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.820868"], ["updated_at", "2021-09-14 16:26:20.820868"]]
141668
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141669
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 2], ["LIMIT", 1]]
141670
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "author"]]
141671
+ TRANSACTION (0.2ms) rollback transaction
141672
+ TRANSACTION (0.1ms) begin transaction
141673
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141674
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Doloribus Aut"], ["description", "Neque sunt totam. Nemo totam voluptatem. Fuga aut ut.\nId sed ex. Possimus voluptates quis. Dicta aut quisquam.\nUt qui consectetur. Eveniet doloremque est. Aut architecto et.\nNam eveniet quod. Accusamus occaecati aut. Quam eligendi repellat.\nAperiam aut ipsa. Saepe aut odio. Non quia necessitatibus."], ["created_at", "2021-09-14 16:26:20.833456"], ["updated_at", "2021-09-14 16:26:20.833456"]]
141675
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141676
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141677
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Ego Dominus Tuus"], ["container_title", "Blithe Spirit"], ["publisher", "Zondervan"], ["city", "North Sherice"], ["year", "2018"], ["pages", "pp. 145-6"], ["url", "http://wisoky.co/claud"], ["published_at", "2020-09-14 16:26:20.839634"], ["accessed_at", "2021-08-14 16:26:20.839866"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.841335"], ["updated_at", "2021-09-14 16:26:20.841335"]]
141678
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141679
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141680
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Enrique"], ["middle", "Koch"], ["last", "Armstrong"], ["suffix", "LLD"], ["created_at", "2021-09-14 16:26:20.846042"], ["updated_at", "2021-09-14 16:26:20.846042"]]
141681
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141682
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141683
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Armando"], ["middle", "Zulauf"], ["last", "Kuhlman"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.851476"], ["updated_at", "2021-09-14 16:26:20.851476"]]
141684
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141685
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141686
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Kathi"], ["middle", "Considine"], ["last", "Goyette"], ["suffix", "MD"], ["created_at", "2021-09-14 16:26:20.855701"], ["updated_at", "2021-09-14 16:26:20.855701"]]
141687
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141688
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141689
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Zackary"], ["middle", ""], ["last", "McClure"], ["suffix", "I"], ["created_at", "2021-09-14 16:26:20.860254"], ["updated_at", "2021-09-14 16:26:20.860254"]]
141690
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141691
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 3], ["LIMIT", 1]]
141692
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "author"]]
141693
+ TRANSACTION (0.2ms) rollback transaction
141694
+ TRANSACTION (0.1ms) begin transaction
141695
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141696
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Laborum"], ["description", "Facilis ex rerum. Quo et eligendi. In est optio.\nSunt eos facilis. Qui vel et. Accusantium optio quia.\nAd ipsa fugit. Omnis incidunt nemo. Veritatis quisquam reiciendis.\nIpsa id a. Non quidem commodi. Consectetur repudiandae mollitia."], ["created_at", "2021-09-14 16:26:20.870545"], ["updated_at", "2021-09-14 16:26:20.870545"]]
141697
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141698
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141699
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Soldier's Art"], ["container_title", "The Moon by Night"], ["publisher", "Pavilion Books"], ["city", "East Elias"], ["year", "1935"], ["pages", "pp. 145-6"], ["url", "http://schaefer.biz/cordelia"], ["published_at", "2020-09-14 16:26:20.877757"], ["accessed_at", "2021-08-14 16:26:20.877862"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.879003"], ["updated_at", "2021-09-14 16:26:20.879003"]]
141700
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141701
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141702
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Maryrose"], ["middle", "Jaskolski"], ["last", "Doyle"], ["suffix", "DDS"], ["created_at", "2021-09-14 16:26:20.885571"], ["updated_at", "2021-09-14 16:26:20.885571"]]
141703
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141704
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141705
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Selina"], ["middle", ""], ["last", "Pfeffer"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.891717"], ["updated_at", "2021-09-14 16:26:20.891717"]]
141706
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141707
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141708
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Ted"], ["middle", ""], ["last", "Stanton"], ["suffix", "DVM"], ["created_at", "2021-09-14 16:26:20.897969"], ["updated_at", "2021-09-14 16:26:20.897969"]]
141709
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141710
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141711
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Ellis"], ["middle", "Wunsch"], ["last", "Orn"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.903179"], ["updated_at", "2021-09-14 16:26:20.903179"]]
141712
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141713
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 4], ["LIMIT", 1]]
141714
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "author"]]
141715
+ TRANSACTION (0.3ms) rollback transaction
141716
+ TRANSACTION (0.2ms) begin transaction
141717
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141718
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "A Beatae Corporis"], ["description", "Consequatur neque consequatur. Qui quam est. Velit ab quae.\nDicta rerum omnis. Dolor omnis provident. Error qui soluta.\nVel ut expedita. Ad optio soluta. Aperiam fuga accusantium.\nReprehenderit nemo saepe. Labore laudantium commodi. Ut eum modi.\nCommodi sequi ut. Non corporis vitae. Voluptatibus accusamus ipsum."], ["created_at", "2021-09-14 16:26:20.921106"], ["updated_at", "2021-09-14 16:26:20.921106"]]
141719
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141720
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141721
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Some Buried Caesar"], ["container_title", "Lilies of the Field"], ["publisher", "Ellora's Cave"], ["city", "New Carmella"], ["year", "2014"], ["pages", "pp. 145-6"], ["url", "http://lind.io/tressie.stehr"], ["published_at", "2020-09-14 16:26:20.929843"], ["accessed_at", "2021-08-14 16:26:20.930115"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.931697"], ["updated_at", "2021-09-14 16:26:20.931697"]]
141722
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141723
+ TRANSACTION (0.3ms) SAVEPOINT active_record_1
141724
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Reggie"], ["middle", "Will"], ["last", "Friesen"], ["suffix", "DC"], ["created_at", "2021-09-14 16:26:20.938095"], ["updated_at", "2021-09-14 16:26:20.938095"]]
141725
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141726
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141727
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Clemente"], ["middle", ""], ["last", "Luettgen"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.943156"], ["updated_at", "2021-09-14 16:26:20.943156"]]
141728
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141729
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141730
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Dorthea"], ["middle", ""], ["last", "Torphy"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.946211"], ["updated_at", "2021-09-14 16:26:20.946211"]]
141731
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141732
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141733
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Herschel"], ["middle", ""], ["last", "Prohaska"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.949475"], ["updated_at", "2021-09-14 16:26:20.949475"]]
141734
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141735
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 1], ["LIMIT", 1]]
141736
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "editor"]]
141737
+ TRANSACTION (0.2ms) rollback transaction
141738
+ TRANSACTION (0.1ms) begin transaction
141739
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141740
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Numquam"], ["description", "Autem error minus. Non sunt aperiam. Illo rerum illum.\nNihil qui blanditiis. Et placeat aperiam. Ut incidunt recusandae."], ["created_at", "2021-09-14 16:26:20.959448"], ["updated_at", "2021-09-14 16:26:20.959448"]]
141741
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141742
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141743
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Wildfire at Midnight"], ["container_title", "The Other Side of Silence"], ["publisher", "Harvest House"], ["city", "East Wallace"], ["year", "1935"], ["pages", "pp. 145-6"], ["url", "http://feest-greenfelder.co/angla"], ["published_at", "2020-09-14 16:26:20.965313"], ["accessed_at", "2021-08-14 16:26:20.965407"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:20.966588"], ["updated_at", "2021-09-14 16:26:20.966588"]]
141744
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141745
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141746
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Chung"], ["middle", "Mueller"], ["last", "Windler"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.972065"], ["updated_at", "2021-09-14 16:26:20.972065"]]
141747
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141748
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141749
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Vita"], ["middle", "Wilderman"], ["last", "Daniel"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.978558"], ["updated_at", "2021-09-14 16:26:20.978558"]]
141750
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141751
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141752
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Timothy"], ["middle", ""], ["last", "Paucek"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.982314"], ["updated_at", "2021-09-14 16:26:20.982314"]]
141753
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141754
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141755
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Dick"], ["middle", ""], ["last", "Spencer"], ["suffix", ""], ["created_at", "2021-09-14 16:26:20.987481"], ["updated_at", "2021-09-14 16:26:20.987481"]]
141756
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141757
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 2], ["LIMIT", 1]]
141758
+ TRANSACTION (0.3ms) rollback transaction
141759
+ TRANSACTION (0.1ms) begin transaction
141760
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141761
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Debitis Qui"], ["description", "Eum repudiandae facilis. Illum vel sunt. Et voluptatibus necessitatibus."], ["created_at", "2021-09-14 16:26:20.998406"], ["updated_at", "2021-09-14 16:26:20.998406"]]
141762
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141763
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141764
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Road Less Traveled"], ["container_title", "Fear and Trembling"], ["publisher", "Atlantic Books"], ["city", "North Dannie"], ["year", "1996"], ["pages", "pp. 145-6"], ["url", "http://mcdermott.org/robbi.schuppe"], ["published_at", "2020-09-14 16:26:21.006946"], ["accessed_at", "2021-08-14 16:26:21.007255"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.009114"], ["updated_at", "2021-09-14 16:26:21.009114"]]
141765
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141766
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141767
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Jacque"], ["middle", "Denesik"], ["last", "Lockman"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:26:21.015736"], ["updated_at", "2021-09-14 16:26:21.015736"]]
141768
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141769
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141770
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Jeffrey"], ["middle", ""], ["last", "Hansen"], ["suffix", "VM"], ["created_at", "2021-09-14 16:26:21.021415"], ["updated_at", "2021-09-14 16:26:21.021415"]]
141771
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141772
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141773
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Beverley"], ["middle", "Treutel"], ["last", "Ward"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.026412"], ["updated_at", "2021-09-14 16:26:21.026412"]]
141774
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141775
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141776
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Tonya"], ["middle", ""], ["last", "Keebler"], ["suffix", "III"], ["created_at", "2021-09-14 16:26:21.029758"], ["updated_at", "2021-09-14 16:26:21.029758"]]
141777
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141778
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 3], ["LIMIT", 1]]
141779
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "editor"]]
141780
+ TRANSACTION (0.2ms) rollback transaction
141781
+ TRANSACTION (0.2ms) begin transaction
141782
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141783
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Laborum Officia Soluta Laboriosam Eos"], ["description", "Sint nihil temporibus. Dicta veniam tempora. Doloribus sit quo."], ["created_at", "2021-09-14 16:26:21.036966"], ["updated_at", "2021-09-14 16:26:21.036966"]]
141784
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141785
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141786
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Dance Dance Dance"], ["container_title", "When the Green Woods Laugh"], ["publisher", "Pantheon Books at Random House"], ["city", "South Brittny"], ["year", "1969"], ["pages", "pp. 145-6"], ["url", "http://harvey-murphy.org/mariella"], ["published_at", "2020-09-14 16:26:21.044459"], ["accessed_at", "2021-08-14 16:26:21.044573"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.045658"], ["updated_at", "2021-09-14 16:26:21.045658"]]
141787
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141788
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141789
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Latia"], ["middle", ""], ["last", "Cummings"], ["suffix", "PhD"], ["created_at", "2021-09-14 16:26:21.050073"], ["updated_at", "2021-09-14 16:26:21.050073"]]
141790
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141791
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141792
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Hilde"], ["middle", "Murazik"], ["last", "Williamson"], ["suffix", "I"], ["created_at", "2021-09-14 16:26:21.056006"], ["updated_at", "2021-09-14 16:26:21.056006"]]
141793
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141794
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141795
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Darnell"], ["middle", ""], ["last", "Pacocha"], ["suffix", "MD"], ["created_at", "2021-09-14 16:26:21.060409"], ["updated_at", "2021-09-14 16:26:21.060409"]]
141796
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141797
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141798
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Marina"], ["middle", ""], ["last", "Cremin"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.063633"], ["updated_at", "2021-09-14 16:26:21.063633"]]
141799
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141800
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 4], ["LIMIT", 1]]
141801
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "editor"]]
141802
+ TRANSACTION (0.2ms) rollback transaction
141803
+ TRANSACTION (0.2ms) begin transaction
141804
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141805
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Esse Voluptatem"], ["description", "Deserunt nobis inventore. Quis sit quo. Dignissimos non ea."], ["created_at", "2021-09-14 16:26:21.072419"], ["updated_at", "2021-09-14 16:26:21.072419"]]
141806
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141807
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141808
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "A Monstrous Regiment of Women"], ["container_title", "Jesting Pilate"], ["publisher", "Seagull Books"], ["city", "Stromanshire"], ["year", "1993"], ["pages", "pp. 145-6"], ["url", "http://jacobson.com/ivory_king"], ["published_at", "2020-09-14 16:26:21.079814"], ["accessed_at", "2021-08-14 16:26:21.079940"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.081084"], ["updated_at", "2021-09-14 16:26:21.081084"]]
141809
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141810
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141811
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Junior"], ["middle", ""], ["last", "Kerluke"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.085393"], ["updated_at", "2021-09-14 16:26:21.085393"]]
141812
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141813
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141814
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Vernia"], ["middle", "Vandervort"], ["last", "Robel"], ["suffix", "DC"], ["created_at", "2021-09-14 16:26:21.089262"], ["updated_at", "2021-09-14 16:26:21.089262"]]
141815
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141816
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141817
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Tyra"], ["middle", ""], ["last", "Harvey"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.093520"], ["updated_at", "2021-09-14 16:26:21.093520"]]
141818
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141819
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141820
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Dewey"], ["middle", "Jacobi"], ["last", "Okuneva"], ["suffix", "DC"], ["created_at", "2021-09-14 16:26:21.096743"], ["updated_at", "2021-09-14 16:26:21.096743"]]
141821
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141822
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 1], ["LIMIT", 1]]
141823
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "compiler"]]
141824
+ TRANSACTION (0.2ms) rollback transaction
141825
+ TRANSACTION (0.2ms) begin transaction
141826
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141827
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Excepturi Dolores Sed"], ["description", "Consequatur ullam et. Ut vel rerum. Accusamus qui assumenda.\nNostrum incidunt voluptatem. Aperiam adipisci non. Beatae eum quod.\nTemporibus placeat cupiditate. Quia deleniti dicta. Quaerat et commodi.\nEnim commodi voluptatem. Sunt est ducimus. Et dolorum eos."], ["created_at", "2021-09-14 16:26:21.107846"], ["updated_at", "2021-09-14 16:26:21.107846"]]
141828
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141829
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141830
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Doors of Perception"], ["container_title", "Tirra Lirra by the River"], ["publisher", "McClelland and Stewart"], ["city", "New Cathifurt"], ["year", "2006"], ["pages", "pp. 145-6"], ["url", "http://hermiston-dach.co/classie_emmerich"], ["published_at", "2020-09-14 16:26:21.115109"], ["accessed_at", "2021-08-14 16:26:21.115227"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.116218"], ["updated_at", "2021-09-14 16:26:21.116218"]]
141831
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141832
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141833
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Felice"], ["middle", ""], ["last", "Ondricka"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.120244"], ["updated_at", "2021-09-14 16:26:21.120244"]]
141834
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141835
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141836
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Marcy"], ["middle", "Bahringer"], ["last", "Becker"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.126876"], ["updated_at", "2021-09-14 16:26:21.126876"]]
141837
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141838
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141839
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Lavonda"], ["middle", ""], ["last", "Marvin"], ["suffix", "DC"], ["created_at", "2021-09-14 16:26:21.130820"], ["updated_at", "2021-09-14 16:26:21.130820"]]
141840
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141841
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141842
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Janis"], ["middle", ""], ["last", "Mills"], ["suffix", "IV"], ["created_at", "2021-09-14 16:26:21.134178"], ["updated_at", "2021-09-14 16:26:21.134178"]]
141843
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141844
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 2], ["LIMIT", 1]]
141845
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "compiler"]]
141846
+ TRANSACTION (0.3ms) rollback transaction
141847
+ TRANSACTION (0.2ms) begin transaction
141848
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141849
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Natus Laborum Quibusdam Sit Qui"], ["description", "Optio et dignissimos. Voluptas nobis est. Nesciunt velit libero.\nSit odit nihil. Saepe corrupti suscipit. Quaerat possimus dicta.\nEst error adipisci. Corporis quia eos. Voluptas magni et.\nEt et est. Asperiores harum facilis. Iure qui quibusdam.\nAd ut unde. Et eum molestias. Commodi quae quibusdam."], ["created_at", "2021-09-14 16:26:21.146488"], ["updated_at", "2021-09-14 16:26:21.146488"]]
141850
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141851
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141852
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Frequent Hearses"], ["container_title", "From Here to Eternity"], ["publisher", "Marion Boyars Publishers"], ["city", "Cormierfurt"], ["year", "1983"], ["pages", "pp. 145-6"], ["url", "http://koelpin-boehm.name/homer"], ["published_at", "2020-09-14 16:26:21.154321"], ["accessed_at", "2021-08-14 16:26:21.154526"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.156295"], ["updated_at", "2021-09-14 16:26:21.156295"]]
141853
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141854
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141855
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Salina"], ["middle", "Friesen"], ["last", "Kilback"], ["suffix", "DC"], ["created_at", "2021-09-14 16:26:21.161441"], ["updated_at", "2021-09-14 16:26:21.161441"]]
141856
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141857
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141858
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Eleonor"], ["middle", "Moore"], ["last", "Reinger"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.164833"], ["updated_at", "2021-09-14 16:26:21.164833"]]
141859
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141860
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141861
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Fletcher"], ["middle", ""], ["last", "Schiller"], ["suffix", "II"], ["created_at", "2021-09-14 16:26:21.167750"], ["updated_at", "2021-09-14 16:26:21.167750"]]
141862
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141863
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141864
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Destiny"], ["middle", ""], ["last", "Wilderman"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.170680"], ["updated_at", "2021-09-14 16:26:21.170680"]]
141865
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141866
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 3], ["LIMIT", 1]]
141867
+ TRANSACTION (0.2ms) rollback transaction
141868
+ TRANSACTION (0.1ms) begin transaction
141869
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141870
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Non Ea Dolorem Et"], ["description", "Culpa molestiae ab. Id quod rem. Soluta omnis corrupti.\nMagnam sed eum. Quia ducimus nisi. Dolore consequatur et.\nArchitecto fugiat deserunt. Mollitia expedita labore. Aut a dolorem."], ["created_at", "2021-09-14 16:26:21.182670"], ["updated_at", "2021-09-14 16:26:21.182670"]]
141871
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141872
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141873
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Postern of Fate"], ["container_title", "In Death Ground"], ["publisher", "Vintage Books"], ["city", "Barneyfurt"], ["year", "1991"], ["pages", "pp. 145-6"], ["url", "http://bernier.co/liz.rosenbaum"], ["published_at", "2020-09-14 16:26:21.188966"], ["accessed_at", "2021-08-14 16:26:21.189159"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.190683"], ["updated_at", "2021-09-14 16:26:21.190683"]]
141874
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141875
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141876
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Candy"], ["middle", ""], ["last", "Reynolds"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.195080"], ["updated_at", "2021-09-14 16:26:21.195080"]]
141877
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141878
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141879
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Latisha"], ["middle", "Casper"], ["last", "Jacobson"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.199695"], ["updated_at", "2021-09-14 16:26:21.199695"]]
141880
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141881
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141882
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Lorina"], ["middle", ""], ["last", "Lindgren"], ["suffix", "DO"], ["created_at", "2021-09-14 16:26:21.205313"], ["updated_at", "2021-09-14 16:26:21.205313"]]
141883
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141884
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141885
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Lucy"], ["middle", ""], ["last", "Mitchell"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:26:21.210882"], ["updated_at", "2021-09-14 16:26:21.210882"]]
141886
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141887
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 4], ["LIMIT", 1]]
141888
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "compiler"]]
141889
+ TRANSACTION (0.3ms) rollback transaction
141890
+ TRANSACTION (0.1ms) begin transaction
141891
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141892
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nam Rerum"], ["description", "Est quod cupiditate. Dolores tempore qui. Occaecati aut quidem."], ["created_at", "2021-09-14 16:26:21.219449"], ["updated_at", "2021-09-14 16:26:21.219449"]]
141893
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141894
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141895
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "A Time of Gifts"], ["container_title", "Pale Kings and Princes"], ["publisher", "Shambhala Publications"], ["city", "Schummshire"], ["year", "1955"], ["pages", "pp. 145-6"], ["url", "http://dubuque-emmerich.io/vicky.murray"], ["published_at", "2020-09-14 16:26:21.227456"], ["accessed_at", "2021-08-14 16:26:21.227606"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.229224"], ["updated_at", "2021-09-14 16:26:21.229224"]]
141896
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141897
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141898
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Colby"], ["middle", ""], ["last", "Smith"], ["suffix", "VM"], ["created_at", "2021-09-14 16:26:21.233938"], ["updated_at", "2021-09-14 16:26:21.233938"]]
141899
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141900
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141901
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Fermin"], ["middle", ""], ["last", "Wintheiser"], ["suffix", "LLD"], ["created_at", "2021-09-14 16:26:21.238169"], ["updated_at", "2021-09-14 16:26:21.238169"]]
141902
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141903
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141904
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Esperanza"], ["middle", ""], ["last", "Swift"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.243731"], ["updated_at", "2021-09-14 16:26:21.243731"]]
141905
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141906
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141907
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Shaina"], ["middle", "Moen"], ["last", "Connelly"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.248153"], ["updated_at", "2021-09-14 16:26:21.248153"]]
141908
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141909
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 1], ["LIMIT", 1]]
141910
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "translator"]]
141911
+ TRANSACTION (0.2ms) rollback transaction
141912
+ TRANSACTION (0.2ms) begin transaction
141913
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141914
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ratione Porro"], ["description", "Similique sed iste. Officiis consequatur quia. Est quibusdam ut.\nEnim modi dolores. Exercitationem quo similique. Sequi ad nisi.\nQui saepe voluptas. Fugiat architecto sapiente. Non eius quisquam.\nUt possimus sit. Sequi exercitationem molestias. Dolores qui distinctio."], ["created_at", "2021-09-14 16:26:21.272015"], ["updated_at", "2021-09-14 16:26:21.272015"]]
141915
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141916
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141917
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Tirra Lirra by the River"], ["container_title", "A Time of Gifts"], ["publisher", "Orchard Books"], ["city", "Jonesmouth"], ["year", "1921"], ["pages", "pp. 145-6"], ["url", "http://hilll-friesen.net/anna.sauer"], ["published_at", "2020-09-14 16:26:21.281053"], ["accessed_at", "2021-08-14 16:26:21.281326"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.283251"], ["updated_at", "2021-09-14 16:26:21.283251"]]
141918
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141919
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141920
+ WorksCited::Contributor Create (0.5ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Lara"], ["middle", "Kuhn"], ["last", "Wehner"], ["suffix", "DC"], ["created_at", "2021-09-14 16:26:21.291160"], ["updated_at", "2021-09-14 16:26:21.291160"]]
141921
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141922
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141923
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Desmond"], ["middle", "Murphy"], ["last", "Langworth"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.298452"], ["updated_at", "2021-09-14 16:26:21.298452"]]
141924
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141925
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141926
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Jamaal"], ["middle", ""], ["last", "Kub"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.305677"], ["updated_at", "2021-09-14 16:26:21.305677"]]
141927
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141928
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141929
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Kraig"], ["middle", ""], ["last", "Simonis"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.312853"], ["updated_at", "2021-09-14 16:26:21.312853"]]
141930
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141931
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 2], ["LIMIT", 1]]
141932
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "translator"]]
141933
+ TRANSACTION (0.3ms) rollback transaction
141934
+ TRANSACTION (0.2ms) begin transaction
141935
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141936
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Officia Et Praesentium Aliquid"], ["description", "Quo et quis. Accusamus tempore ipsa. Qui hic et.\nEt distinctio aut. Quia laborum est. Eos et et."], ["created_at", "2021-09-14 16:26:21.327449"], ["updated_at", "2021-09-14 16:26:21.327449"]]
141937
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141938
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141939
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Taming a Sea Horse"], ["container_title", "Dance Dance Dance"], ["publisher", "Heyday Books"], ["city", "South Deeann"], ["year", "1990"], ["pages", "pp. 145-6"], ["url", "http://hoppe.net/arie_medhurst"], ["published_at", "2020-09-14 16:26:21.335957"], ["accessed_at", "2021-08-14 16:26:21.336201"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.338093"], ["updated_at", "2021-09-14 16:26:21.338093"]]
141940
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141941
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
141942
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Ludivina"], ["middle", "Bernier"], ["last", "Rutherford"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.345518"], ["updated_at", "2021-09-14 16:26:21.345518"]]
141943
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141944
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141945
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Aileen"], ["middle", "Morar"], ["last", "Lueilwitz"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:26:21.349689"], ["updated_at", "2021-09-14 16:26:21.349689"]]
141946
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141947
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141948
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Joanna"], ["middle", "Lemke"], ["last", "Boehm"], ["suffix", "Ret."], ["created_at", "2021-09-14 16:26:21.353002"], ["updated_at", "2021-09-14 16:26:21.353002"]]
141949
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141950
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141951
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Temple"], ["middle", ""], ["last", "Morissette"], ["suffix", "IV"], ["created_at", "2021-09-14 16:26:21.357333"], ["updated_at", "2021-09-14 16:26:21.357333"]]
141952
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141953
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 3], ["LIMIT", 1]]
141954
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "translator"]]
141955
+ TRANSACTION (0.2ms) rollback transaction
141956
+ TRANSACTION (0.1ms) begin transaction
141957
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141958
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nulla Nam Reprehenderit Quia Dolores"], ["description", "Voluptas quae corrupti. Quis quibusdam aut. Minus sunt repudiandae.\nIpsum minima velit. Eos odit omnis. Quis ipsam assumenda.\nEt sed doloribus. Totam neque aspernatur. Soluta aspernatur quisquam."], ["created_at", "2021-09-14 16:26:21.367181"], ["updated_at", "2021-09-14 16:26:21.367181"]]
141959
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
141960
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141961
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "I Will Fear No Evil"], ["container_title", "Beyond the Mexique Bay"], ["publisher", "Flame Tree Publishing"], ["city", "Kellichester"], ["year", "1992"], ["pages", "pp. 145-6"], ["url", "http://langosh.io/bob"], ["published_at", "2020-09-14 16:26:21.375321"], ["accessed_at", "2021-08-14 16:26:21.375581"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.377384"], ["updated_at", "2021-09-14 16:26:21.377384"]]
141962
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141963
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141964
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Gordon"], ["middle", "Hudson"], ["last", "Hodkiewicz"], ["suffix", "MD"], ["created_at", "2021-09-14 16:26:21.383074"], ["updated_at", "2021-09-14 16:26:21.383074"]]
141965
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141966
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141967
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Dionne"], ["middle", ""], ["last", "Grimes"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.386378"], ["updated_at", "2021-09-14 16:26:21.386378"]]
141968
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141969
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141970
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Dwight"], ["middle", ""], ["last", "King"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.391134"], ["updated_at", "2021-09-14 16:26:21.391134"]]
141971
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141972
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141973
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Lino"], ["middle", ""], ["last", "King"], ["suffix", ""], ["created_at", "2021-09-14 16:26:21.394640"], ["updated_at", "2021-09-14 16:26:21.394640"]]
141974
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141975
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 4], ["LIMIT", 1]]
141976
+ TRANSACTION (0.2ms) rollback transaction
141977
+ TRANSACTION (0.2ms) begin transaction
141978
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141979
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Delectus"], ["description", "Et porro et. Quia praesentium voluptatem. Voluptatem qui tempora.\nSint natus blanditiis. Quibusdam sed aut. Doloremque ipsa quos.\nEos voluptatibus sit. Reprehenderit nesciunt eos. Quo est sunt."], ["created_at", "2021-09-14 16:26:21.404225"], ["updated_at", "2021-09-14 16:26:21.404225"]]
141980
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141981
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141982
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Tirra Lirra by the River"], ["container_title", "Consider the Lilies"], ["publisher", "New Holland Publishers"], ["city", "Lueilwitzstad"], ["year", "1974"], ["pages", "pp. 145-6"], ["url", "http://rice-barton.info/giovanni_mohr"], ["published_at", "2020-09-14 16:26:21.411078"], ["accessed_at", "2021-08-14 16:26:21.411179"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.412151"], ["updated_at", "2021-09-14 16:26:21.412151"]]
141983
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141984
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141985
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:26:21.415955"], ["updated_at", "2021-09-14 16:26:21.415955"]]
141986
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141987
+ TRANSACTION (0.2ms) rollback transaction
141988
+ TRANSACTION (0.2ms) begin transaction
141989
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141990
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Enim Ut Repellendus Doloremque"], ["description", "Quae accusantium suscipit. Maxime ducimus fuga. Ipsa sint sit.\nNihil atque nostrum. Autem eius itaque. Commodi asperiores nobis."], ["created_at", "2021-09-14 16:26:21.422843"], ["updated_at", "2021-09-14 16:26:21.422843"]]
141991
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141992
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141993
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "This Lime Tree Bower"], ["container_title", "The Soldier's Art"], ["publisher", "Atlantic Books"], ["city", "East Jenny"], ["year", "1980"], ["pages", "pp. 145-6"], ["url", "http://johnson-schroeder.net/mariann.reinger"], ["published_at", "2020-09-14 16:26:21.430074"], ["accessed_at", "2021-08-14 16:26:21.430191"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.431271"], ["updated_at", "2021-09-14 16:26:21.431271"]]
141994
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141995
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
141996
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:26:21.434877"], ["updated_at", "2021-09-14 16:26:21.434877"]]
141997
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
141998
+ TRANSACTION (0.2ms) rollback transaction
141999
+ TRANSACTION (0.1ms) begin transaction
142000
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142001
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Et Labore Nostrum Saepe"], ["description", "Fugiat sequi quasi. Omnis minima odio. Impedit beatae omnis.\nIpsa quas sed. Provident nostrum aliquam. Veritatis aut id.\nEligendi officiis ut. Rerum amet omnis. Et qui incidunt."], ["created_at", "2021-09-14 16:26:21.449530"], ["updated_at", "2021-09-14 16:26:21.449530"]]
142002
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142003
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142004
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Frequent Hearses"], ["container_title", "The Little Foxes"], ["publisher", "Cloverdale Corporation"], ["city", "Richardmouth"], ["year", "1955"], ["pages", "pp. 145-6"], ["url", "http://paucek.com/wendell"], ["published_at", "2020-09-14 16:26:21.458189"], ["accessed_at", "2021-08-14 16:26:21.458481"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.460199"], ["updated_at", "2021-09-14 16:26:21.460199"]]
142005
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142006
+ Started GET "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142007
+ Processing by WorksCited::CitationsController#show as HTML
142008
+ Parameters: {"id"=>"1"}
142009
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142010
+ Completed 404 Not Found in 7ms (ActiveRecord: 0.4ms | Allocations: 1920)
142011
+ TRANSACTION (0.3ms) rollback transaction
142012
+ TRANSACTION (0.1ms) begin transaction
142013
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142014
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quaerat"], ["description", "Quo officiis placeat. Consequuntur eligendi maiores. Voluptatem autem quia.\nRerum recusandae eveniet. Voluptatum nisi voluptatem. Eos dolorem aliquid.\nEveniet laudantium itaque. Voluptatibus est quia. Assumenda et possimus.\nAspernatur id saepe. Odit expedita ut. Culpa omnis et."], ["created_at", "2021-09-14 16:26:21.562075"], ["updated_at", "2021-09-14 16:26:21.562075"]]
142015
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142016
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142017
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142018
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "Lilies of the Field"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.567508"], ["updated_at", "2021-09-14 16:26:21.567508"]]
142019
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142020
+ Started GET "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142021
+ Processing by WorksCited::CitationsController#index as HTML
142022
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms | Allocations: 1275)
142023
+ TRANSACTION (0.3ms) rollback transaction
142024
+ Started GET "/works_cited/citations/new" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142025
+ Processing by WorksCited::CitationsController#new as HTML
142026
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 1111)
142027
+ TRANSACTION (0.2ms) begin transaction
142028
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142029
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quod"], ["description", "Sed at nihil. Assumenda voluptatibus nisi. Cupiditate possimus ipsam.\nMollitia impedit et. Velit laboriosam itaque. Eum ipsum quo.\nIllum provident aut. Sapiente quia ut. Velit ut aliquid."], ["created_at", "2021-09-14 16:26:21.607794"], ["updated_at", "2021-09-14 16:26:21.607794"]]
142030
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142031
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142032
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Number the Stars"], ["container_title", "A Summer Bird-Cage"], ["publisher", "Mainstream Publishing"], ["city", "New Ulysses"], ["year", "1945"], ["pages", "pp. 145-6"], ["url", "http://aufderhar.com/kirstie"], ["published_at", "2020-09-14 16:26:21.616927"], ["accessed_at", "2021-08-14 16:26:21.617255"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.619483"], ["updated_at", "2021-09-14 16:26:21.619483"]]
142033
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142034
+ Started GET "/works_cited/citations/1/edit" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142035
+ Processing by WorksCited::CitationsController#edit as HTML
142036
+ Parameters: {"id"=>"1"}
142037
+ WorksCited::Citation Load (0.6ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142038
+ Completed 404 Not Found in 5ms (ActiveRecord: 0.6ms | Allocations: 931)
142039
+ TRANSACTION (0.2ms) rollback transaction
142040
+ TRANSACTION (0.1ms) begin transaction
142041
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142042
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Atque Molestias Est Sit Non"], ["description", "Deleniti soluta est. Odio beatae ut. Consectetur amet delectus."], ["created_at", "2021-09-14 16:26:21.644932"], ["updated_at", "2021-09-14 16:26:21.644932"]]
142043
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142044
+ Started PATCH "/works_cited/preview" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142045
+ Processing by WorksCited::CitationsController#preview as HTML
142046
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"The Soldier's Art", "record"=>"Doodad:1"}}
142047
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142048
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms | Allocations: 961)
142049
+ TRANSACTION (0.3ms) rollback transaction
142050
+ TRANSACTION (0.1ms) begin transaction
142051
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142052
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Consequatur Aut Fuga"], ["description", "Tenetur optio voluptatem. Ullam expedita facilis. Voluptas et voluptatem."], ["created_at", "2021-09-14 16:26:21.669028"], ["updated_at", "2021-09-14 16:26:21.669028"]]
142053
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142054
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142055
+ Processing by WorksCited::CitationsController#create as HTML
142056
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"No Highway", "record"=>"Doodad:1"}}
142057
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142058
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms | Allocations: 1194)
142059
+ TRANSACTION (0.2ms) rollback transaction
142060
+ TRANSACTION (0.2ms) begin transaction
142061
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142062
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Repudiandae Ratione"], ["description", "Occaecati qui aperiam. Impedit non qui. Reiciendis modi maxime.\nIpsum repellendus eum. Alias fugit quibusdam. Voluptatibus vel dolorem.\nMinus quae nihil. Corrupti ex voluptatibus. Blanditiis totam sunt."], ["created_at", "2021-09-14 16:26:21.688991"], ["updated_at", "2021-09-14 16:26:21.688991"]]
142063
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142064
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142065
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Time of our Darkness"], ["container_title", "Precious Bane"], ["publisher", "Brimstone Press"], ["city", "Chasburgh"], ["year", "1988"], ["pages", "pp. 145-6"], ["url", "http://pollich-hansen.name/ali"], ["published_at", "2020-09-14 16:26:21.696756"], ["accessed_at", "2021-08-14 16:26:21.696910"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.698449"], ["updated_at", "2021-09-14 16:26:21.698449"]]
142066
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142067
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142068
+ Processing by WorksCited::CitationsController#update as HTML
142069
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"New Title", "record_id"=>"1", "record_type"=>"Doodad"}, "id"=>"1"}
142070
+ WorksCited::Citation Load (0.6ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142071
+ Completed 404 Not Found in 6ms (ActiveRecord: 0.6ms | Allocations: 901)
142072
+ TRANSACTION (0.3ms) rollback transaction
142073
+ TRANSACTION (0.1ms) begin transaction
142074
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142075
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Maiores"], ["description", "Consequatur eligendi illum. Vel eaque eum. Exercitationem autem quis.\nCupiditate assumenda voluptas. Vitae similique libero. Sit consequatur ut.\nDolorum consectetur sint. Aliquam qui possimus. Voluptas repellendus maxime.\nRepudiandae pariatur tempore. Quo expedita ut. Labore sint alias."], ["created_at", "2021-09-14 16:26:21.727940"], ["updated_at", "2021-09-14 16:26:21.727940"]]
142076
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142077
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142078
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "The Yellow Meads of Asphodel"], ["container_title", "From Here to Eternity"], ["publisher", "Churchill Livingstone"], ["city", "Bednartown"], ["year", "1955"], ["pages", "pp. 145-6"], ["url", "http://connelly-hahn.com/dick"], ["published_at", "2020-09-14 16:26:21.733490"], ["accessed_at", "2021-08-14 16:26:21.733592"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.734532"], ["updated_at", "2021-09-14 16:26:21.734532"]]
142079
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142080
+ Started DELETE "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142081
+ Processing by WorksCited::CitationsController#destroy as HTML
142082
+ Parameters: {"id"=>"1"}
142083
+ WorksCited::Citation Load (0.5ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142084
+ Completed 404 Not Found in 5ms (ActiveRecord: 0.5ms | Allocations: 901)
142085
+ TRANSACTION (0.2ms) rollback transaction
142086
+ TRANSACTION (0.1ms) begin transaction
142087
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142088
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bennett@nikolaus.net"], ["LIMIT", 1]]
142089
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "bennett@nikolaus.net"], ["encrypted_password", "$2a$04$Gz.C/vpO4pVqcOzsfnA4Dun/1HNR8zYrAaIviXGLLchXAq6xxQK.C"], ["created_at", "2021-09-14 16:26:21.776452"], ["updated_at", "2021-09-14 16:26:21.776452"]]
142090
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142091
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142092
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Et Qui Temporibus"], ["description", "Rem atque nisi. Et quos fuga. Ullam repellat eum.\nSed odit ea. Rerum assumenda eius. Eum laboriosam molestias."], ["created_at", "2021-09-14 16:26:21.784870"], ["updated_at", "2021-09-14 16:26:21.784870"]]
142093
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142094
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142095
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "No Highway"], ["container_title", "Clouds of Witness"], ["publisher", "Faber and Faber"], ["city", "Evonborough"], ["year", "1921"], ["pages", "pp. 145-6"], ["url", "http://kautzer-morar.io/vern.boehm"], ["published_at", "2020-09-14 16:26:21.793055"], ["accessed_at", "2021-08-14 16:26:21.793591"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.795411"], ["updated_at", "2021-09-14 16:26:21.795411"]]
142096
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142097
+ Started GET "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142098
+ Processing by WorksCited::CitationsController#show as HTML
142099
+ Parameters: {"id"=>"1"}
142100
+ WorksCited::Citation Load (0.5ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142101
+ Completed 404 Not Found in 5ms (ActiveRecord: 0.5ms | Allocations: 894)
142102
+ TRANSACTION (0.3ms) rollback transaction
142103
+ TRANSACTION (0.2ms) begin transaction
142104
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142105
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mark.osinski@corwin.net"], ["LIMIT", 1]]
142106
+ User Create (0.5ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "mark.osinski@corwin.net"], ["encrypted_password", "$2a$04$G6ULC52DQSL/LmG6bIqA0eAkx6b5GZqkXwkjsE7JkgTS29VN0pLJS"], ["created_at", "2021-09-14 16:26:21.826928"], ["updated_at", "2021-09-14 16:26:21.826928"]]
142107
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142108
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142109
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sint"], ["description", "Nihil ut sunt. Est iusto quisquam. Hic sint doloremque."], ["created_at", "2021-09-14 16:26:21.832746"], ["updated_at", "2021-09-14 16:26:21.832746"]]
142110
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142111
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142112
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142113
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "Alone on a Wide, Wide Sea"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:21.838072"], ["updated_at", "2021-09-14 16:26:21.838072"]]
142114
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142115
+ Started GET "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:26:21 -0600
142116
+ Processing by WorksCited::CitationsController#index as HTML
142117
+ Rendering layout layouts/application.html.erb
142118
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/index.html.haml within layouts/application
142119
+ WorksCited::Citation Load (0.7ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? OFFSET ? [["contributor_role", "author"], ["LIMIT", 25], ["OFFSET", 0]]
142120
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/index.html.haml within layouts/application (Duration: 154.9ms | Allocations: 28283)
142121
+ Rendered layout layouts/application.html.erb (Duration: 157.6ms | Allocations: 28925)
142122
+ Completed 200 OK in 169ms (Views: 162.4ms | ActiveRecord: 0.7ms | Allocations: 31263)
142123
+ TRANSACTION (0.3ms) rollback transaction
142124
+ TRANSACTION (0.2ms) begin transaction
142125
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142126
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elinor_ryan@bechtelar.com"], ["LIMIT", 1]]
142127
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "elinor_ryan@bechtelar.com"], ["encrypted_password", "$2a$04$h95DPxd9xpV4fz1SY7SnK.1JiS9b57pkVbYEZI8EuN68eRGyr95Fq"], ["created_at", "2021-09-14 16:26:22.030883"], ["updated_at", "2021-09-14 16:26:22.030883"]]
142128
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142129
+ Started GET "/works_cited/citations/new" for 127.0.0.1 at 2021-09-14 10:26:22 -0600
142130
+ Processing by WorksCited::CitationsController#new as HTML
142131
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
142132
+ Thing Exists? (0.2ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
142133
+ Rendering layout layouts/application.html.erb
142134
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application
142135
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 37.4ms | Allocations: 12718)
142136
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 22.6ms | Allocations: 7196)
142137
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 34.3ms | Allocations: 9506)
142138
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 27.9ms | Allocations: 8015)
142139
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 28.1ms | Allocations: 8400)
142140
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 10.6ms | Allocations: 2996)
142141
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 24.9ms | Allocations: 905)
142142
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 22.6ms | Allocations: 6971)
142143
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 310.2ms | Allocations: 82398)
142144
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application (Duration: 315.1ms | Allocations: 83718)
142145
+ Rendered layout layouts/application.html.erb (Duration: 317.0ms | Allocations: 84173)
142146
+ Completed 200 OK in 450ms (Views: 318.3ms | ActiveRecord: 0.5ms | Allocations: 110623)
142147
+ TRANSACTION (0.4ms) rollback transaction
142148
+ TRANSACTION (0.2ms) begin transaction
142149
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142150
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "randall.schuster@pfannerstill.org"], ["LIMIT", 1]]
142151
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "randall.schuster@pfannerstill.org"], ["encrypted_password", "$2a$04$9.627/AQrI6I8gdOga3cqOa9FqA4Gv0xqkJMvDaI9kkzMT5TIR9UO"], ["created_at", "2021-09-14 16:26:22.504610"], ["updated_at", "2021-09-14 16:26:22.504610"]]
142152
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142153
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142154
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "In Aut Minima Dolorum Temporibus"], ["description", "Laborum consequatur tenetur. Atque autem debitis. Maiores possimus ea.\nAt minus numquam. Accusamus aperiam corrupti. Dolores ullam illo.\nVoluptas recusandae quo. Omnis aperiam facere. Nulla rem aliquid."], ["created_at", "2021-09-14 16:26:22.514796"], ["updated_at", "2021-09-14 16:26:22.514796"]]
142155
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142156
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142157
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "For Whom the Bell Tolls"], ["container_title", "What's Become of Waring"], ["publisher", "Medknow Publications"], ["city", "Dwaynestad"], ["year", "1985"], ["pages", "pp. 145-6"], ["url", "http://johns.net/noel_schimmel"], ["published_at", "2020-09-14 16:26:22.524344"], ["accessed_at", "2021-08-14 16:26:22.524631"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:22.526866"], ["updated_at", "2021-09-14 16:26:22.526866"]]
142158
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142159
+ Started GET "/works_cited/citations/1/edit" for 127.0.0.1 at 2021-09-14 10:26:22 -0600
142160
+ Processing by WorksCited::CitationsController#edit as HTML
142161
+ Parameters: {"id"=>"1"}
142162
+ WorksCited::Citation Load (0.6ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142163
+ Completed 404 Not Found in 6ms (ActiveRecord: 0.6ms | Allocations: 895)
142164
+ TRANSACTION (0.3ms) rollback transaction
142165
+ TRANSACTION (0.7ms) begin transaction
142166
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142167
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shon.hermann@pollich-weber.org"], ["LIMIT", 1]]
142168
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "shon.hermann@pollich-weber.org"], ["encrypted_password", "$2a$04$fyuvjaH03Rzg0Tyaiofg0uYSvXgOjID9yEYE4ulFnzf3B5fp40PXi"], ["created_at", "2021-09-14 16:26:22.556919"], ["updated_at", "2021-09-14 16:26:22.556919"]]
142169
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142170
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142171
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Eaque Vitae Excepturi Aliquid Voluptas"], ["description", "Nulla nihil quia. Quo blanditiis deserunt. Corporis porro aut.\nNihil minus accusamus. Quas corporis non. Est facere laborum.\nQui animi vel. Rem quo ea. Eligendi fugit sed.\nCupiditate excepturi eum. Ipsam explicabo rerum. Consequatur est voluptas.\nDolores molestiae veritatis. Et necessitatibus velit. Harum et sunt."], ["created_at", "2021-09-14 16:26:22.569641"], ["updated_at", "2021-09-14 16:26:22.569641"]]
142172
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142173
+ Started PATCH "/works_cited/preview" for 127.0.0.1 at 2021-09-14 10:26:22 -0600
142174
+ Processing by WorksCited::CitationsController#preview as HTML
142175
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"Recalled to Life", "record"=>"Doodad:1"}}
142176
+ Doodad Load (0.3ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142177
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/preview.html.haml
142178
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 0.5ms | Allocations: 66)
142179
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/preview.html.haml (Duration: 5.0ms | Allocations: 1312)
142180
+ Completed 200 OK in 11ms (Views: 6.9ms | ActiveRecord: 0.3ms | Allocations: 2379)
142181
+ TRANSACTION (0.4ms) rollback transaction
142182
+ TRANSACTION (0.1ms) begin transaction
142183
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142184
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "buck@bernhard.info"], ["LIMIT", 1]]
142185
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "buck@bernhard.info"], ["encrypted_password", "$2a$04$uHGCICq37zYARkJjWKrl6uV8VQm42tHNdflnVlA1CdXNyd3ZKj9tO"], ["created_at", "2021-09-14 16:26:22.603026"], ["updated_at", "2021-09-14 16:26:22.603026"]]
142186
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142187
+  (0.4ms) SELECT COUNT(*) AS count_all, "works_cited_citations"."id" AS works_cited_citations_id FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC [["contributor_role", "author"]]
142188
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142189
+ Doodad Create (0.2ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quisquam Est"], ["description", "Necessitatibus dolores ducimus. Mollitia ut dolorum. Voluptatum mollitia voluptatibus."], ["created_at", "2021-09-14 16:26:22.617337"], ["updated_at", "2021-09-14 16:26:22.617337"]]
142190
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142191
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:26:22 -0600
142192
+ Processing by WorksCited::CitationsController#create as HTML
142193
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"Françoise Sagan", "record"=>"Doodad:1"}}
142194
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142195
+ Doodad Exists? (0.2ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
142196
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads"
142197
+ Thing Exists? (0.1ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
142198
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142199
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "Françoise Sagan"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:22.629576"], ["updated_at", "2021-09-14 16:26:22.629576"]]
142200
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142201
+ Redirected to http://www.example.com/works_cited/citations/1
142202
+ Completed 302 Found in 11ms (ActiveRecord: 1.2ms | Allocations: 1963)
142203
+  (0.3ms) SELECT COUNT(*) AS count_all, "works_cited_citations"."id" AS works_cited_citations_id FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC [["contributor_role", "author"]]
142204
+ TRANSACTION (0.4ms) rollback transaction
142205
+ TRANSACTION (0.2ms) begin transaction
142206
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142207
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leilani@dicki.org"], ["LIMIT", 1]]
142208
+ User Create (0.7ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "leilani@dicki.org"], ["encrypted_password", "$2a$04$vds194ZI6MQlPcr.MIt1PunOX58VVESxoJCpmh2hyIkOfFvt4Yg0O"], ["created_at", "2021-09-14 16:26:22.659290"], ["updated_at", "2021-09-14 16:26:22.659290"]]
142209
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142210
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142211
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Repellendus Eos"], ["description", "Qui aut est. Blanditiis laudantium libero. Sunt enim facere.\nOfficia veritatis ratione. Esse autem cumque. Voluptatem nobis ducimus.\nIncidunt vero consectetur. Nemo voluptatem et. Reprehenderit sint atque."], ["created_at", "2021-09-14 16:26:22.669760"], ["updated_at", "2021-09-14 16:26:22.669760"]]
142212
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142213
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:26:22 -0600
142214
+ Processing by WorksCited::CitationsController#create as HTML
142215
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"The Wives of Bath", "record"=>"Doodad:1"}}
142216
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142217
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
142218
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads"
142219
+ Thing Exists? (0.3ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
142220
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142221
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "The Wives of Bath"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:22.687622"], ["updated_at", "2021-09-14 16:26:22.687622"]]
142222
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142223
+ Redirected to http://www.example.com/works_cited/citations/1
142224
+ Completed 302 Found in 15ms (ActiveRecord: 1.8ms | Allocations: 1895)
142225
+ WorksCited::Citation Load (0.5ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) DESC LIMIT ? [["contributor_role", "author"], ["LIMIT", 1]]
142226
+ TRANSACTION (0.3ms) rollback transaction
142227
+ TRANSACTION (0.2ms) begin transaction
142228
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142229
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "adele.white@hickle.info"], ["LIMIT", 1]]
142230
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "adele.white@hickle.info"], ["encrypted_password", "$2a$04$Noyw3gla1MSaUFrCHxogzeRK9IUEe0ykvfKuATFrg8CVOAJbNv64S"], ["created_at", "2021-09-14 16:26:22.712869"], ["updated_at", "2021-09-14 16:26:22.712869"]]
142231
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142232
+  (0.4ms) SELECT COUNT(*) AS count_all, "works_cited_citations"."id" AS works_cited_citations_id FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC [["contributor_role", "author"]]
142233
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:26:22 -0600
142234
+ Processing by WorksCited::CitationsController#create as HTML
142235
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>nil, "record"=>nil}}
142236
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
142237
+ Thing Exists? (0.3ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
142238
+ Rendering layout layouts/application.html.erb
142239
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application
142240
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 28.7ms | Allocations: 6628)
142241
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 28.9ms | Allocations: 6367)
142242
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 38.5ms | Allocations: 8538)
142243
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 34.1ms | Allocations: 7569)
142244
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 31.7ms | Allocations: 7909)
142245
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 8.4ms | Allocations: 2856)
142246
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 0.1ms | Allocations: 13)
142247
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 14.6ms | Allocations: 4394)
142248
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 214.5ms | Allocations: 50565)
142249
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application (Duration: 214.9ms | Allocations: 50656)
142250
+ Rendered layout layouts/application.html.erb (Duration: 216.0ms | Allocations: 51107)
142251
+ Completed 200 OK in 226ms (Views: 216.9ms | ActiveRecord: 0.6ms | Allocations: 52694)
142252
+  (0.4ms) SELECT COUNT(*) AS count_all, "works_cited_citations"."id" AS works_cited_citations_id FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC [["contributor_role", "author"]]
142253
+ TRANSACTION (0.3ms) rollback transaction
142254
+ TRANSACTION (0.1ms) begin transaction
142255
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142256
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elijah@trantow-armstrong.net"], ["LIMIT", 1]]
142257
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "elijah@trantow-armstrong.net"], ["encrypted_password", "$2a$04$0zwKNNahnF7bS7EZ3cSjUuYnkF9idLPSu1pXEUwK9vwDgbOObzGhG"], ["created_at", "2021-09-14 16:26:22.969837"], ["updated_at", "2021-09-14 16:26:22.969837"]]
142258
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142259
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:26:22 -0600
142260
+ Processing by WorksCited::CitationsController#create as HTML
142261
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>nil, "record"=>nil}}
142262
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
142263
+ Thing Exists? (0.2ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
142264
+ Rendering layout layouts/application.html.erb
142265
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application
142266
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 25.8ms | Allocations: 6581)
142267
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 22.1ms | Allocations: 6357)
142268
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 28.6ms | Allocations: 8528)
142269
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 25.9ms | Allocations: 7569)
142270
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 23.3ms | Allocations: 7909)
142271
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 6.1ms | Allocations: 2856)
142272
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 0.1ms | Allocations: 13)
142273
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 9.9ms | Allocations: 4394)
142274
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 163.8ms | Allocations: 50444)
142275
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application (Duration: 164.3ms | Allocations: 50535)
142276
+ Rendered layout layouts/application.html.erb (Duration: 165.4ms | Allocations: 50984)
142277
+ Completed 200 OK in 173ms (Views: 166.5ms | ActiveRecord: 0.4ms | Allocations: 52557)
142278
+ TRANSACTION (0.2ms) rollback transaction
142279
+ TRANSACTION (0.2ms) begin transaction
142280
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142281
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tamekia.waelchi@waters.co"], ["LIMIT", 1]]
142282
+ User Create (0.3ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "tamekia.waelchi@waters.co"], ["encrypted_password", "$2a$04$BFjTCf2fBS3mfyvMa6EIRePvew4U7zkr7wt/xgEDA8U1ZlwuAMv7m"], ["created_at", "2021-09-14 16:26:23.163253"], ["updated_at", "2021-09-14 16:26:23.163253"]]
142283
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142284
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142285
+ Doodad Create (0.2ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Et Beatae"], ["description", "Quae est sequi. Fugiat voluptatem ad. Quia qui debitis.\nNostrum voluptatem sunt. Quas consequuntur ut. Ea error eius."], ["created_at", "2021-09-14 16:26:23.167755"], ["updated_at", "2021-09-14 16:26:23.167755"]]
142286
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142287
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142288
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Tirra Lirra by the River"], ["container_title", "The Soldier's Art"], ["publisher", "Velazquez Press"], ["city", "Tadton"], ["year", "1938"], ["pages", "pp. 145-6"], ["url", "http://ratke-lindgren.co/bess_moen"], ["published_at", "2020-09-14 16:26:23.172884"], ["accessed_at", "2021-08-14 16:26:23.173023"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:23.174327"], ["updated_at", "2021-09-14 16:26:23.174327"]]
142289
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142290
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:23 -0600
142291
+ Processing by WorksCited::CitationsController#update as HTML
142292
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"New Title", "record_id"=>"1", "record_type"=>"Doodad"}, "id"=>"1"}
142293
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142294
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms | Allocations: 898)
142295
+ TRANSACTION (0.2ms) rollback transaction
142296
+ TRANSACTION (0.1ms) begin transaction
142297
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142298
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jamison@brekke.org"], ["LIMIT", 1]]
142299
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "jamison@brekke.org"], ["encrypted_password", "$2a$04$7VQ8OKMBqPKt8qO7iO/vpuvuYW0lY66GxwbSmoFdeFufsUPl6F4ZC"], ["created_at", "2021-09-14 16:26:23.197654"], ["updated_at", "2021-09-14 16:26:23.197654"]]
142300
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142301
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142302
+ Doodad Create (0.2ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptatem Voluptatibus"], ["description", "Eveniet ex et. Qui velit ut. Accusantium dolore voluptates."], ["created_at", "2021-09-14 16:26:23.201369"], ["updated_at", "2021-09-14 16:26:23.201369"]]
142303
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142304
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142305
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Yellow Meads of Asphodel"], ["container_title", "Let Us Now Praise Famous Men"], ["publisher", "Manchester University Press"], ["city", "Port Sukland"], ["year", "1953"], ["pages", "pp. 145-6"], ["url", "http://christiansen.com/amal_hamill"], ["published_at", "2020-09-14 16:26:23.208263"], ["accessed_at", "2021-08-14 16:26:23.208433"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:23.209982"], ["updated_at", "2021-09-14 16:26:23.209982"]]
142306
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142307
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:23 -0600
142308
+ Processing by WorksCited::CitationsController#update as HTML
142309
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"New Title", "record_id"=>"1", "record_type"=>"Doodad"}, "id"=>"1"}
142310
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142311
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms | Allocations: 897)
142312
+ TRANSACTION (0.3ms) rollback transaction
142313
+ TRANSACTION (0.1ms) begin transaction
142314
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142315
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cary@rippin-schuster.io"], ["LIMIT", 1]]
142316
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "cary@rippin-schuster.io"], ["encrypted_password", "$2a$04$chGWjeHUv7CMrYQENcpiNON1XlbteTJckzw/IZYp31iB2Xf.RVMRS"], ["created_at", "2021-09-14 16:26:23.239540"], ["updated_at", "2021-09-14 16:26:23.239540"]]
142317
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142318
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142319
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Beatae Praesentium Eaque Sed Et"], ["description", "Qui et nihil. Voluptas ut quod. Possimus assumenda repellat."], ["created_at", "2021-09-14 16:26:23.246279"], ["updated_at", "2021-09-14 16:26:23.246279"]]
142320
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142321
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142322
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Violent Bear It Away"], ["container_title", "Such, Such Were the Joys"], ["publisher", "Burns & Oates"], ["city", "North Domenic"], ["year", "1947"], ["pages", "pp. 145-6"], ["url", "http://sawayn.net/lu_fadel"], ["published_at", "2020-09-14 16:26:23.253900"], ["accessed_at", "2021-08-14 16:26:23.254118"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:23.255898"], ["updated_at", "2021-09-14 16:26:23.255898"]]
142323
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142324
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:23 -0600
142325
+ Processing by WorksCited::CitationsController#update as HTML
142326
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>nil, "record"=>nil}, "id"=>"1"}
142327
+ WorksCited::Citation Load (0.5ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142328
+ Completed 404 Not Found in 5ms (ActiveRecord: 0.5ms | Allocations: 897)
142329
+ TRANSACTION (0.3ms) rollback transaction
142330
+ TRANSACTION (0.1ms) begin transaction
142331
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142332
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "natalya_williamson@anderson-hilll.org"], ["LIMIT", 1]]
142333
+ User Create (0.5ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "natalya_williamson@anderson-hilll.org"], ["encrypted_password", "$2a$04$bzuEz/vCVzZsv6544dTy5eqWyO0TyuwvCxI6AtEQzgIEZo0vMIm/m"], ["created_at", "2021-09-14 16:26:23.285720"], ["updated_at", "2021-09-14 16:26:23.285720"]]
142334
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142335
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142336
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Maxime Ab Excepturi Ipsam"], ["description", "Consequatur aliquid voluptatem. Sunt laudantium neque. Illum culpa libero.\nFugiat hic suscipit. Quis cupiditate soluta. Occaecati veritatis et.\nMolestiae magnam modi. Est quo laboriosam. Voluptatem dicta repellat.\nEst adipisci dolor. Omnis saepe iure. Perferendis aut tenetur."], ["created_at", "2021-09-14 16:26:23.295644"], ["updated_at", "2021-09-14 16:26:23.295644"]]
142337
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142338
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142339
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Blue Remembered Earth"], ["container_title", "The Daffodil Sky"], ["publisher", "Berkley Books"], ["city", "North Dolorestown"], ["year", "1932"], ["pages", "pp. 145-6"], ["url", "http://hammes-senger.co/denny"], ["published_at", "2020-09-14 16:26:23.303101"], ["accessed_at", "2021-08-14 16:26:23.303352"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:23.305151"], ["updated_at", "2021-09-14 16:26:23.305151"]]
142340
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142341
+  (0.3ms) SELECT COUNT(*) AS count_all, "works_cited_citations"."id" AS works_cited_citations_id FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC [["contributor_role", "author"]]
142342
+ Started DELETE "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:23 -0600
142343
+ Processing by WorksCited::CitationsController#destroy as HTML
142344
+ Parameters: {"id"=>"1"}
142345
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142346
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms | Allocations: 902)
142347
+ TRANSACTION (0.2ms) rollback transaction
142348
+ TRANSACTION (0.2ms) begin transaction
142349
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142350
+ User Exists? (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "frida@dach-bogisich.org"], ["LIMIT", 1]]
142351
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "frida@dach-bogisich.org"], ["encrypted_password", "$2a$04$wGVjY6Pk.LZSZiUY6kx1CePMh3E5aYZb8CR464SkJgEILnUDrcVyW"], ["created_at", "2021-09-14 16:26:23.333927"], ["updated_at", "2021-09-14 16:26:23.333927"]]
142352
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142353
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142354
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Et"], ["description", "Dolor est ut. Et unde quidem. Omnis dignissimos repellendus.\nVoluptas nostrum et. Recusandae eius consequatur. Sed atque consequatur.\nOmnis iusto quisquam. Facilis ab vero. Maiores sapiente enim.\nQuaerat officiis occaecati. Aut architecto id. Ea dolorum quas.\nOmnis accusamus error. Et vel commodi. Ex aut modi."], ["created_at", "2021-09-14 16:26:23.343916"], ["updated_at", "2021-09-14 16:26:23.343916"]]
142355
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142356
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142357
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "Frequent Hearses"], ["container_title", "Tender Is the Night"], ["publisher", "Pan Books"], ["city", "West Adriana"], ["year", "1953"], ["pages", "pp. 145-6"], ["url", "http://morissette-farrell.com/toni.orn"], ["published_at", "2020-09-14 16:26:23.351402"], ["accessed_at", "2021-08-14 16:26:23.351595"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:26:23.353150"], ["updated_at", "2021-09-14 16:26:23.353150"]]
142358
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142359
+ Started DELETE "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:26:23 -0600
142360
+ Processing by WorksCited::CitationsController#destroy as HTML
142361
+ Parameters: {"id"=>"1"}
142362
+ WorksCited::Citation Load (0.5ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."id" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142363
+ Completed 404 Not Found in 5ms (ActiveRecord: 0.5ms | Allocations: 894)
142364
+ TRANSACTION (0.3ms) rollback transaction
142365
+  (1.4ms) SELECT sqlite_version(*)
142366
+  (0.1ms) PRAGMA foreign_keys
142367
+  (0.1ms) PRAGMA defer_foreign_keys
142368
+  (0.1ms) PRAGMA defer_foreign_keys = ON
142369
+  (0.1ms) PRAGMA foreign_keys = OFF
142370
+  (6.0ms) DELETE FROM "doodads";
142371
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
142372
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'doodads';
142373
+  (4.7ms) DELETE FROM "things";
142374
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
142375
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'things';
142376
+  (7.7ms) DELETE FROM "users";
142377
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
142378
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
142379
+  (4.7ms) DELETE FROM "works_cited_citations";
142380
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
142381
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'works_cited_citations';
142382
+  (7.4ms) DELETE FROM "works_cited_contributors";
142383
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
142384
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'works_cited_contributors';
142385
+  (0.1ms) PRAGMA defer_foreign_keys = 0
142386
+  (0.1ms) PRAGMA foreign_keys = 1
142387
+  (0.2ms) SELECT sqlite_version(*)
142388
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
142389
+  (0.1ms) SELECT sqlite_version(*)
142390
+ TRANSACTION (0.1ms) begin transaction
142391
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142392
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Doloremque Fuga Nihil"], ["description", "Qui pariatur sunt. Quis deleniti esse. Suscipit placeat quas.\nEnim dicta officiis. Sed non molestiae. Sapiente molestias possimus.\nNon fugit voluptas. Dolore aut commodi. Et est magnam."], ["created_at", "2021-09-14 16:30:21.946434"], ["updated_at", "2021-09-14 16:30:21.946434"]]
142393
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142394
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142395
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "To a God Unknown"], ["container_title", "Frequent Hearses"], ["publisher", "New Holland Publishers"], ["city", "North Lorenzaburgh"], ["year", "1945"], ["pages", "pp. 145-6"], ["url", "http://sanford-gleason.com/lynne"], ["published_at", "2020-09-14 16:30:22.000021"], ["accessed_at", "2021-08-14 16:30:22.000183"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.039594"], ["updated_at", "2021-09-14 16:30:22.039594"]]
142396
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Toby"], ["middle", ""], ["last", "Kuhn"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.044353"], ["updated_at", "2021-09-14 16:30:22.044353"]]
142397
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142398
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142399
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Waiting for the Barbarians"], ["container_title", "The Glory and the Dream"], ["publisher", "Andrews McMeel Publishing"], ["city", "West Norberto"], ["year", "1936"], ["pages", "pp. 145-6"], ["url", "http://schamberger-hintz.biz/clay"], ["published_at", "2020-09-14 16:30:22.051675"], ["accessed_at", "2021-08-14 16:30:22.051905"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.056736"], ["updated_at", "2021-09-14 16:30:22.056736"]]
142400
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 2], ["contributor_role", "compiler"], ["first", "Ardella"], ["middle", "DuBuque"], ["last", "Yundt"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.060184"], ["updated_at", "2021-09-14 16:30:22.060184"]]
142401
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142402
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142403
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Eyeless in Gaza"], ["container_title", "If Not Now, When?"], ["publisher", "Darakwon Press"], ["city", "Reingerville"], ["year", "1948"], ["pages", "pp. 145-6"], ["url", "http://jacobi.biz/dario.stanton"], ["published_at", "2020-09-14 16:30:22.067285"], ["accessed_at", "2021-08-14 16:30:22.067434"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.072684"], ["updated_at", "2021-09-14 16:30:22.072684"]]
142404
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 3], ["contributor_role", "translator"], ["first", "Freddie"], ["middle", ""], ["last", "Connelly"], ["suffix", "DC"], ["created_at", "2021-09-14 16:30:22.076140"], ["updated_at", "2021-09-14 16:30:22.076140"]]
142405
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142406
+ TRANSACTION (0.3ms) SAVEPOINT active_record_1
142407
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Antic Hay"], ["container_title", "Look to Windward"], ["publisher", "Scholastic Press"], ["city", "Pazton"], ["year", "1949"], ["pages", "pp. 145-6"], ["url", "http://harris-beer.net/jaqueline.connelly"], ["published_at", "2020-09-14 16:30:22.082862"], ["accessed_at", "2021-08-14 16:30:22.083016"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.087871"], ["updated_at", "2021-09-14 16:30:22.087871"]]
142408
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 4], ["contributor_role", "editor"], ["first", "Trudy"], ["middle", "Ernser"], ["last", "Ebert"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.091752"], ["updated_at", "2021-09-14 16:30:22.091752"]]
142409
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142410
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142411
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "The Grapes of Wrath"], ["container_title", "A Monstrous Regiment of Women"], ["publisher", "Darakwon Press"], ["city", "Rathburgh"], ["year", "1959"], ["pages", "pp. 145-6"], ["url", "http://nader-schoen.co/carin.boehm"], ["published_at", "2020-09-14 16:30:22.097420"], ["accessed_at", "2021-08-14 16:30:22.097525"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.100719"], ["updated_at", "2021-09-14 16:30:22.100719"]]
142412
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 5], ["contributor_role", "author"], ["first", "Shad"], ["middle", ""], ["last", "Gerlach"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:22.104001"], ["updated_at", "2021-09-14 16:30:22.104001"]]
142413
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142414
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142415
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Mother Night"], ["container_title", "Bury My Heart at Wounded Knee"], ["publisher", "E. P. Dutton"], ["city", "South Rocky"], ["year", "1982"], ["pages", "pp. 145-6"], ["url", "http://vandervort-veum.org/lance"], ["published_at", "2020-09-14 16:30:22.111186"], ["accessed_at", "2021-08-14 16:30:22.111411"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.116485"], ["updated_at", "2021-09-14 16:30:22.116485"]]
142416
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 6], ["contributor_role", "translator"], ["first", "Jamaal"], ["middle", "Walsh"], ["last", "Tillman"], ["suffix", "Ret."], ["created_at", "2021-09-14 16:30:22.120882"], ["updated_at", "2021-09-14 16:30:22.120882"]]
142417
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142418
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142419
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "In a Glass Darkly"], ["container_title", "Moab Is My Washpot"], ["publisher", "Academic Press"], ["city", "Leandratown"], ["year", "1962"], ["pages", "pp. 145-6"], ["url", "http://leuschke-kihn.io/janyce.kiehn"], ["published_at", "2020-09-14 16:30:22.130104"], ["accessed_at", "2021-08-14 16:30:22.130401"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.135093"], ["updated_at", "2021-09-14 16:30:22.135093"]]
142420
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 7], ["contributor_role", "translator"], ["first", "Karoline"], ["middle", "Gorczany"], ["last", "Hills"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:30:22.138498"], ["updated_at", "2021-09-14 16:30:22.138498"]]
142421
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142422
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142423
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Noli Me Tangere"], ["container_title", "The Other Side of Silence"], ["publisher", "Gefen Publishing House"], ["city", "North Alecbury"], ["year", "1978"], ["pages", "pp. 145-6"], ["url", "http://purdy.net/anne"], ["published_at", "2020-09-14 16:30:22.146894"], ["accessed_at", "2021-08-14 16:30:22.147158"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.151402"], ["updated_at", "2021-09-14 16:30:22.151402"]]
142424
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 8], ["contributor_role", "compiler"], ["first", "Moira"], ["middle", ""], ["last", "Stamm"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.153903"], ["updated_at", "2021-09-14 16:30:22.153903"]]
142425
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142426
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142427
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "In a Dry Season"], ["container_title", "The Sun Also Rises"], ["publisher", "Book League of America"], ["city", "Earlland"], ["year", "1933"], ["pages", "pp. 145-6"], ["url", "http://herman.io/nila"], ["published_at", "2020-09-14 16:30:22.162098"], ["accessed_at", "2021-08-14 16:30:22.162377"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.167232"], ["updated_at", "2021-09-14 16:30:22.167232"]]
142428
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 9], ["contributor_role", "translator"], ["first", "Kimberley"], ["middle", "Torphy"], ["last", "Roberts"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:22.170855"], ["updated_at", "2021-09-14 16:30:22.170855"]]
142429
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142430
+ TRANSACTION (0.3ms) SAVEPOINT active_record_1
142431
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Gone with the Wind"], ["container_title", "Dance Dance Dance"], ["publisher", "Mark Batty Publisher"], ["city", "New Kelsieborough"], ["year", "1945"], ["pages", "pp. 145-6"], ["url", "http://hegmann.co/corrin"], ["published_at", "2020-09-14 16:30:22.177862"], ["accessed_at", "2021-08-14 16:30:22.178146"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.182873"], ["updated_at", "2021-09-14 16:30:22.182873"]]
142432
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 10], ["contributor_role", "compiler"], ["first", "Jenee"], ["middle", "Ernser"], ["last", "Zboncak"], ["suffix", "IV"], ["created_at", "2021-09-14 16:30:22.186930"], ["updated_at", "2021-09-14 16:30:22.186930"]]
142433
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142434
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142435
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Behold the Man"], ["container_title", "Dying of the Light"], ["publisher", "FabJob"], ["city", "Aurelioberg"], ["year", "1999"], ["pages", "pp. 145-6"], ["url", "http://leffler.io/joshua_roberts"], ["published_at", "2020-09-14 16:30:22.195055"], ["accessed_at", "2021-08-14 16:30:22.195322"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.199134"], ["updated_at", "2021-09-14 16:30:22.199134"]]
142436
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 11], ["contributor_role", "translator"], ["first", "Avis"], ["middle", ""], ["last", "Auer"], ["suffix", "CPA"], ["created_at", "2021-09-14 16:30:22.201640"], ["updated_at", "2021-09-14 16:30:22.201640"]]
142437
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142438
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142439
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Absalom, Absalom!"], ["container_title", "Cabbages and Kings"], ["publisher", "Pecan Grove Press"], ["city", "Lake Robby"], ["year", "1997"], ["pages", "pp. 145-6"], ["url", "http://gleichner-kunze.io/oretha_spencer"], ["published_at", "2020-09-14 16:30:22.208749"], ["accessed_at", "2021-08-14 16:30:22.208931"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.213956"], ["updated_at", "2021-09-14 16:30:22.213956"]]
142440
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 12], ["contributor_role", "translator"], ["first", "Sidney"], ["middle", "Renner"], ["last", "Willms"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.216342"], ["updated_at", "2021-09-14 16:30:22.216342"]]
142441
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142442
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142443
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "The Green Bay Tree"], ["container_title", "Noli Me Tangere"], ["publisher", "Oberon Books"], ["city", "South Roryport"], ["year", "1968"], ["pages", "pp. 145-6"], ["url", "http://herzog.net/melinda"], ["published_at", "2020-09-14 16:30:22.223883"], ["accessed_at", "2021-08-14 16:30:22.224035"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.228969"], ["updated_at", "2021-09-14 16:30:22.228969"]]
142444
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 13], ["contributor_role", "editor"], ["first", "Ira"], ["middle", "Schumm"], ["last", "Simonis"], ["suffix", "LLD"], ["created_at", "2021-09-14 16:30:22.231363"], ["updated_at", "2021-09-14 16:30:22.231363"]]
142445
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142446
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142447
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Have His Carcase"], ["container_title", "Absalom, Absalom!"], ["publisher", "Caister Academic Press"], ["city", "Lemuelmouth"], ["year", "1980"], ["pages", "pp. 145-6"], ["url", "http://flatley.io/teddy_nicolas"], ["published_at", "2020-09-14 16:30:22.237985"], ["accessed_at", "2021-08-14 16:30:22.238099"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.242715"], ["updated_at", "2021-09-14 16:30:22.242715"]]
142448
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 14], ["contributor_role", "editor"], ["first", "Bennett"], ["middle", ""], ["last", "Rice"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:22.246582"], ["updated_at", "2021-09-14 16:30:22.246582"]]
142449
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142450
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142451
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "Fear and Trembling"], ["container_title", "The Other Side of Silence"], ["publisher", "Pen and Sword Books"], ["city", "Edraview"], ["year", "2015"], ["pages", "pp. 145-6"], ["url", "http://kub-langworth.info/orville"], ["published_at", "2020-09-14 16:30:22.253148"], ["accessed_at", "2021-08-14 16:30:22.253369"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.258183"], ["updated_at", "2021-09-14 16:30:22.258183"]]
142452
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 15], ["contributor_role", "author"], ["first", "Kandice"], ["middle", "Hills"], ["last", "Little"], ["suffix", "VM"], ["created_at", "2021-09-14 16:30:22.262030"], ["updated_at", "2021-09-14 16:30:22.262030"]]
142453
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142454
+ WorksCited::Citation Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."record_id" = ? AND "works_cited_citations"."record_type" = ? GROUP BY "works_cited_citations"."id" LIMIT ? [["contributor_role", "author"], ["record_id", 1], ["record_type", "Doodad"], ["LIMIT", 1]]
142455
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" WHERE "works_cited_citations"."record_id" = ? AND "works_cited_citations"."record_type" = ? GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC [["contributor_role", "author"], ["record_id", 1], ["record_type", "Doodad"]]
142456
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 5], ["contributor_role", "author"], ["LIMIT", 1]]
142457
+ WorksCited::Contributor Load (0.4ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 5], ["contributor_role", "author"], ["LIMIT", 1]]
142458
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 5], ["contributor_role", "author"]]
142459
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 5], ["contributor_role", "editor"], ["LIMIT", 1]]
142460
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 5], ["contributor_role", "compiler"], ["LIMIT", 1]]
142461
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 5], ["contributor_role", "translator"], ["LIMIT", 1]]
142462
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_interview.html.haml (Duration: 16.9ms | Allocations: 4323)
142463
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "author"], ["LIMIT", 1]]
142464
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "author"], ["LIMIT", 1]]
142465
+  (0.4ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 15], ["contributor_role", "author"]]
142466
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "editor"], ["LIMIT", 1]]
142467
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "compiler"], ["LIMIT", 1]]
142468
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 15], ["contributor_role", "translator"], ["LIMIT", 1]]
142469
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 16.0ms | Allocations: 3926)
142470
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_list.html.haml (Duration: 60.9ms | Allocations: 15499)
142471
+ TRANSACTION (0.3ms) rollback transaction
142472
+ TRANSACTION (0.2ms) begin transaction
142473
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142474
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Est Quibusdam Saepe"], ["description", "Dolor nostrum fugit. Veritatis dolorum vel. Ut provident et.\nRerum repellendus omnis. Et dicta incidunt. Qui sed eum.\nIn minima saepe. Occaecati voluptatem inventore. Inventore nihil exercitationem.\nAt error asperiores. Tempora temporibus expedita. Magnam sapiente consequatur.\nEa voluptatem est. Id rerum aut. Aut ut eos."], ["created_at", "2021-09-14 16:30:22.448328"], ["updated_at", "2021-09-14 16:30:22.448328"]]
142475
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142476
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142477
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Chaos: Making a New Science"], ["container_title", "The Last Enemy"], ["publisher", "Penguin"], ["city", ""], ["year", "1987"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:30:22.456085"], ["accessed_at", "2021-08-14 16:30:22.456343"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.458554"], ["updated_at", "2021-09-14 16:30:22.458554"]]
142478
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "James"], ["middle", ""], ["last", "Gleick"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.462531"], ["updated_at", "2021-09-14 16:30:22.462531"]]
142479
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142480
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142481
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142482
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142483
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142484
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142485
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142486
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 7.7ms | Allocations: 1248)
142487
+ TRANSACTION (0.2ms) rollback transaction
142488
+ TRANSACTION (0.2ms) begin transaction
142489
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142490
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ut Nihil Accusamus Omnis"], ["description", "Dolorem velit sit. Exercitationem ea alias. Sunt similique nisi."], ["created_at", "2021-09-14 16:30:22.482895"], ["updated_at", "2021-09-14 16:30:22.482895"]]
142491
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142492
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142493
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "The Allyn and Bacon Guide to Peer Tutoring"], ["container_title", "Of Mice and Men"], ["publisher", "Allyn and Bacon"], ["city", ""], ["year", "2000"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:30:22.501896"], ["accessed_at", "2021-08-14 16:30:22.502200"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.505458"], ["updated_at", "2021-09-14 16:30:22.505458"]]
142494
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Paula"], ["middle", ""], ["last", "Gillespie"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.509704"], ["updated_at", "2021-09-14 16:30:22.509704"]]
142495
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Neal"], ["middle", ""], ["last", "Lerner"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.512720"], ["updated_at", "2021-09-14 16:30:22.512720"]]
142496
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142497
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142498
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142499
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142500
+ WorksCited::Contributor Load (0.4ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
142501
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142502
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142503
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142504
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 14.9ms | Allocations: 1430)
142505
+ TRANSACTION (0.3ms) rollback transaction
142506
+ TRANSACTION (0.2ms) begin transaction
142507
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142508
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sapiente Expedita"], ["description", "Consequatur ad mollitia. Et consequatur corrupti. Rerum totam et."], ["created_at", "2021-09-14 16:30:22.539796"], ["updated_at", "2021-09-14 16:30:22.539796"]]
142509
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142510
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142511
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Writing New Media: Theory and Applications for Expanding the Teaching of Composition"], ["container_title", "His Dark Materials"], ["publisher", "Utah State UP"], ["city", ""], ["year", "2004"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:30:22.551377"], ["accessed_at", "2021-08-14 16:30:22.551656"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.555119"], ["updated_at", "2021-09-14 16:30:22.555119"]]
142512
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Anne Frances"], ["middle", ""], ["last", "Wysocki"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.559884"], ["updated_at", "2021-09-14 16:30:22.559884"]]
142513
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Neal"], ["middle", ""], ["last", "Xerner"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.563262"], ["updated_at", "2021-09-14 16:30:22.563262"]]
142514
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Another"], ["middle", ""], ["last", "Zauthor"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.565751"], ["updated_at", "2021-09-14 16:30:22.565751"]]
142515
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142516
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142517
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142518
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142519
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142520
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142521
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142522
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 12.7ms | Allocations: 1250)
142523
+ TRANSACTION (0.3ms) rollback transaction
142524
+ TRANSACTION (0.1ms) begin transaction
142525
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142526
+ Doodad Create (0.8ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sunt"], ["description", "Dolorem et et. Consequatur voluptates accusamus. Et adipisci omnis.\nHic enim molestiae. Ut expedita neque. Praesentium cumque repudiandae.\nReiciendis et pariatur. Voluptatem hic et. Officia eaque nam."], ["created_at", "2021-09-14 16:30:22.593279"], ["updated_at", "2021-09-14 16:30:22.593279"]]
142527
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142528
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142529
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Encyclopedia of Indiana"], ["container_title", "Mother Night"], ["publisher", "Somerset"], ["city", ""], ["year", "1993"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:30:22.600751"], ["accessed_at", "2021-08-14 16:30:22.601018"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.602774"], ["updated_at", "2021-09-14 16:30:22.602774"]]
142530
+ TRANSACTION (0.3ms) RELEASE SAVEPOINT active_record_1
142531
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142532
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142533
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142534
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142535
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 9.3ms | Allocations: 941)
142536
+ TRANSACTION (0.3ms) rollback transaction
142537
+ TRANSACTION (0.1ms) begin transaction
142538
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142539
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptatem"], ["description", "Quia dignissimos hic. Explicabo nesciunt quibusdam. Qui dignissimos deserunt.\nRepellendus sed et. Assumenda veniam molestiae. Fugiat error ut.\nVoluptatum rem iure. Esse sit eum. Assumenda ut unde."], ["created_at", "2021-09-14 16:30:22.627757"], ["updated_at", "2021-09-14 16:30:22.627757"]]
142540
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142541
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142542
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", ""], ["title", "Madness and Civilization: A History of Insanity in the Age of Reason"], ["container_title", "An Instant In The Wind"], ["publisher", "Vintage-Random House"], ["city", ""], ["year", "1988"], ["pages", ""], ["url", ""], ["published_at", "2020-09-14 16:30:22.637490"], ["accessed_at", "2021-08-14 16:30:22.637756"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.641017"], ["updated_at", "2021-09-14 16:30:22.641017"]]
142543
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Michel"], ["middle", ""], ["last", "Foucault"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.645443"], ["updated_at", "2021-09-14 16:30:22.645443"]]
142544
+ WorksCited::Contributor Create (0.6ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Richard"], ["middle", ""], ["last", "Howard"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.648519"], ["updated_at", "2021-09-14 16:30:22.648519"]]
142545
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142546
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142547
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142548
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142549
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142550
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142551
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142552
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142553
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "translator"]]
142554
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 16.8ms | Allocations: 1552)
142555
+ TRANSACTION (0.3ms) rollback transaction
142556
+ TRANSACTION (0.1ms) begin transaction
142557
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142558
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Itaque Dolorem Harum Non Molestiae"], ["description", "Qui iusto sunt. Assumenda omnis dolor. Reprehenderit nam modi.\nEum quasi iure. Vel iure voluptatem. Rem eius maxime."], ["created_at", "2021-09-14 16:30:22.680854"], ["updated_at", "2021-09-14 16:30:22.680854"]]
142559
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142560
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142561
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", ""], ["title", "TV Makes a Too-Close Call"], ["container_title", "Time"], ["publisher", ""], ["city", ""], ["year", ""], ["pages", "pp. 70-71"], ["url", ""], ["published_at", "2000-11-20 00:00:00"], ["accessed_at", "2021-08-14 16:30:22.689200"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.692575"], ["updated_at", "2021-09-14 16:30:22.692575"]]
142562
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "James"], ["middle", ""], ["last", "Poniewozik"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.696548"], ["updated_at", "2021-09-14 16:30:22.696548"]]
142563
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142564
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142565
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142566
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142567
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142568
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142569
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142570
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 18.9ms | Allocations: 3285)
142571
+ TRANSACTION (0.3ms) rollback transaction
142572
+ TRANSACTION (0.2ms) begin transaction
142573
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142574
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "At Officiis"], ["description", "Et est velit. Provident iusto rerum. Et deleniti ut."], ["created_at", "2021-09-14 16:30:22.730639"], ["updated_at", "2021-09-14 16:30:22.730639"]]
142575
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142576
+ TRANSACTION (0.3ms) SAVEPOINT active_record_1
142577
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", ""], ["title", "New Health Center Targets County's Uninsured Patients"], ["container_title", "Washington Post"], ["publisher", ""], ["city", ""], ["year", ""], ["pages", "p. LZ01"], ["url", ""], ["published_at", "2007-05-24 00:00:00"], ["accessed_at", "2021-08-14 16:30:22.738648"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.741581"], ["updated_at", "2021-09-14 16:30:22.741581"]]
142578
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Bill"], ["middle", ""], ["last", "Brubaker"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.746913"], ["updated_at", "2021-09-14 16:30:22.746913"]]
142579
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142580
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142581
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142582
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142583
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142584
+ WorksCited::Contributor Load (0.4ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142585
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142586
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 14.5ms | Allocations: 1327)
142587
+ TRANSACTION (0.3ms) rollback transaction
142588
+ TRANSACTION (0.1ms) begin transaction
142589
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142590
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Modi Unde Incidunt"], ["description", "Officia facere voluptas. Id explicabo tempore. Id porro deserunt.\nTemporibus ea rerum. Ipsa dignissimos deserunt. Qui id eos.\nPerspiciatis ipsum nihil. Illum sit laboriosam. Eum debitis voluptatem.\nTotam aut tempore. Ut aut in. Eius natus eum."], ["created_at", "2021-09-14 16:30:22.778514"], ["updated_at", "2021-09-14 16:30:22.778514"]]
142591
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142592
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142593
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", ""], ["title", "Conflicting Nationalisms: The Voice of the Subaltern in Mahasweta Devi's Bashai Tudu"], ["container_title", "Tulsa Studies in Women's Literature"], ["publisher", ""], ["city", ""], ["volume", "vol. 15"], ["number", "no. 1"], ["year", "1996"], ["pages", "pp. 41-50"], ["url", ""], ["accessed_at", "2021-08-14 16:30:22.787718"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.790717"], ["updated_at", "2021-09-14 16:30:22.790717"]]
142594
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Alaknanda"], ["middle", ""], ["last", "Bagchi"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.795390"], ["updated_at", "2021-09-14 16:30:22.795390"]]
142595
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142596
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142597
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142598
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142599
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142600
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142601
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142602
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 12.4ms | Allocations: 1326)
142603
+ TRANSACTION (0.3ms) rollback transaction
142604
+ TRANSACTION (0.1ms) begin transaction
142605
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142606
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Beatae Quibusdam Libero Aspernatur"], ["description", "Blanditiis aut maiores. Iure tempore et. Ut minus cupiditate.\nAut minima earum. Ipsa rerum provident. Consequatur sapiente rerum.\nRatione in omnis. Autem a consectetur. Accusamus hic qui."], ["created_at", "2021-09-14 16:30:22.823568"], ["updated_at", "2021-09-14 16:30:22.823568"]]
142607
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142608
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142609
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "The Purdue OWL Family of Sites"], ["container_title", ""], ["publisher", "The Writing Lab and OWL at Purdue and Purdue U"], ["city", ""], ["volume", ""], ["number", ""], ["year", "2008"], ["pages", ""], ["url", "https://owl.english.purdue.edu/owl"], ["accessed_at", "2008-04-23 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.833461"], ["updated_at", "2021-09-14 16:30:22.833461"]]
142610
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142611
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142612
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142613
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142614
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142615
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 14.1ms | Allocations: 3270)
142616
+ TRANSACTION (0.2ms) rollback transaction
142617
+ TRANSACTION (0.1ms) begin transaction
142618
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142619
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Et Impedit Saepe"], ["description", "Et unde dolores. Rerum perferendis ut. Nihil commodi neque.\nQuia minus provident. Blanditiis dolorem sed. Ea dolorem repellat."], ["created_at", "2021-09-14 16:30:22.863127"], ["updated_at", "2021-09-14 16:30:22.863127"]]
142620
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142621
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142622
+ WorksCited::Citation Create (0.6ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Guide to Literary and Critical Theory"], ["container_title", ""], ["publisher", "Purdue U"], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "http://www.cla.purdue.edu/english/theory/"], ["published_at", "2003-11-28 00:00:00"], ["accessed_at", "2006-05-10 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.875953"], ["updated_at", "2021-09-14 16:30:22.875953"]]
142623
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Dino"], ["middle", ""], ["last", "Felluga"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.881252"], ["updated_at", "2021-09-14 16:30:22.881252"]]
142624
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142625
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142626
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142627
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142628
+ WorksCited::Contributor Exists? (0.9ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142629
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142630
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142631
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 13.6ms | Allocations: 1287)
142632
+ TRANSACTION (0.3ms) rollback transaction
142633
+ TRANSACTION (0.1ms) begin transaction
142634
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142635
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nostrum"], ["description", "Ut fugit rerum. Placeat et laudantium. Molestiae corporis dolores.\nCum corporis harum. Reiciendis quibusdam voluptate. Nam magnam voluptatem.\nMinus praesentium dolorum. Consequatur nobis eos. Non ea harum."], ["created_at", "2021-09-14 16:30:22.910825"], ["updated_at", "2021-09-14 16:30:22.910825"]]
142636
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142637
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142638
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "published_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Athlete's Foot - Topic Overview"], ["container_title", "WebMD"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://www.webmd.com/skin-problems-and-treatments/tc/athletes-foot-topic-overview"], ["published_at", "2014-09-25 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.920271"], ["updated_at", "2021-09-14 16:30:22.920271"]]
142639
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142640
+ WorksCited::Contributor Exists? (0.7ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142641
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142642
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142643
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142644
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 9.3ms | Allocations: 1036)
142645
+ TRANSACTION (0.3ms) rollback transaction
142646
+ TRANSACTION (0.1ms) begin transaction
142647
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142648
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Laudantium Dolor"], ["description", "Error et perspiciatis. Assumenda sed qui. Inventore qui ut.\nSit quam dolorum. Est suscipit reprehenderit. Quas voluptas voluptatem.\nVelit vero voluptatibus. Architecto velit cupiditate. At non reiciendis."], ["created_at", "2021-09-14 16:30:22.945156"], ["updated_at", "2021-09-14 16:30:22.945156"]]
142649
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142650
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142651
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "How to Make Vegetarian Chili"], ["container_title", "eHow"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://www.ehow.com/how_10727_make-vegetarian-chili.html"], ["accessed_at", "2015-07-06 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:22.956723"], ["updated_at", "2021-09-14 16:30:22.956723"]]
142652
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Susan"], ["middle", ""], ["last", "Lundman"], ["suffix", ""], ["created_at", "2021-09-14 16:30:22.961172"], ["updated_at", "2021-09-14 16:30:22.961172"]]
142653
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142654
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142655
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142656
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142657
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142658
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142659
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142660
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 11.5ms | Allocations: 1346)
142661
+ TRANSACTION (0.3ms) rollback transaction
142662
+ TRANSACTION (0.1ms) begin transaction
142663
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142664
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ducimus Aliquam"], ["description", "Impedit molestiae quod. Soluta repellendus accusamus. Ut esse fugiat.\nLabore suscipit ducimus. Est eius nihil. Accusamus odit nulla.\nEst fuga dolores. Aliquam sed ullam. Possimus est maxime.\nQuae sunt non. Eveniet dolorem quos. Porro praesentium rerum."], ["created_at", "2021-09-14 16:30:22.989507"], ["updated_at", "2021-09-14 16:30:22.989507"]]
142665
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142666
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142667
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "E-book"], ["title", "How to Write a Lot: A Practical Guide to Productive Academic Writing"], ["container_title", ""], ["publisher", "American Psychological Association"], ["city", ""], ["volume", ""], ["number", ""], ["year", "2007"], ["pages", ""], ["url", ""], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.001079"], ["updated_at", "2021-09-14 16:30:23.001079"]]
142668
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Paul"], ["middle", "Joseph"], ["last", "Silva"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.004809"], ["updated_at", "2021-09-14 16:30:23.004809"]]
142669
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142670
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142671
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142672
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142673
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142674
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142675
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142676
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 10.4ms | Allocations: 1259)
142677
+ TRANSACTION (0.3ms) rollback transaction
142678
+ TRANSACTION (0.1ms) begin transaction
142679
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142680
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Dolorem Cumque"], ["description", "Velit aspernatur atque. Harum doloremque ratione. Quis placeat et."], ["created_at", "2021-09-14 16:30:23.026609"], ["updated_at", "2021-09-14 16:30:23.026609"]]
142681
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142682
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142683
+ WorksCited::Citation Create (0.6ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "Kindle ed."], ["title", "The Prince"], ["container_title", ""], ["publisher", "Library of Alexandria"], ["city", ""], ["volume", ""], ["number", ""], ["year", "2018"], ["pages", ""], ["url", ""], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.040824"], ["updated_at", "2021-09-14 16:30:23.040824"]]
142684
+ WorksCited::Contributor Create (0.7ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Niccolo"], ["middle", ""], ["last", "Machiavelli"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.045460"], ["updated_at", "2021-09-14 16:30:23.045460"]]
142685
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "W. K."], ["middle", ""], ["last", "Marriott"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.048670"], ["updated_at", "2021-09-14 16:30:23.048670"]]
142686
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142687
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142688
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142689
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142690
+ WorksCited::Contributor Load (0.5ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142691
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "translator"]]
142692
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142693
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142694
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142695
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 17.0ms | Allocations: 1557)
142696
+ TRANSACTION (0.3ms) rollback transaction
142697
+ TRANSACTION (0.2ms) begin transaction
142698
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142699
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ullam Quod Consequatur Ipsam Qui"], ["description", "Qui similique ad. Qui excepturi voluptatem. Repellendus voluptatem saepe.\nIn debitis labore. Eum asperiores est. Consequatur ex et.\nExercitationem accusamus eos. Reiciendis praesentium delectus. Quaerat vero voluptates."], ["created_at", "2021-09-14 16:30:23.081010"], ["updated_at", "2021-09-14 16:30:23.081010"]]
142700
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142701
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142702
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "10 Tips on Writing the Living Web"], ["container_title", "A List Apart: For People Who Make Websites"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "http://alistapart.com/article/writeliving"], ["published_at", "2002-08-16 00:00:00"], ["accessed_at", "2009-05-04 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.093191"], ["updated_at", "2021-09-14 16:30:23.093191"]]
142703
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Mark"], ["middle", ""], ["last", "Bernstein"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.097906"], ["updated_at", "2021-09-14 16:30:23.097906"]]
142704
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142705
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142706
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142707
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142708
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142709
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142710
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142711
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 11.1ms | Allocations: 1350)
142712
+ TRANSACTION (0.3ms) rollback transaction
142713
+ TRANSACTION (0.1ms) begin transaction
142714
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142715
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Molestiae Aut"], ["description", "Voluptate deleniti neque. Possimus illum corrupti. Neque soluta aut.\nNumquam culpa ut. Qui saepe est. Asperiores dolores esse."], ["created_at", "2021-09-14 16:30:23.123389"], ["updated_at", "2021-09-14 16:30:23.123389"]]
142716
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142717
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142718
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Research in Youth Culture and Policy: Current Conditions and Future Directions"], ["container_title", "Social Work and Society: The International Online-Only Journal"], ["publisher", ""], ["city", ""], ["volume", "vol. 6"], ["number", "no. 2"], ["year", "2008"], ["pages", ""], ["url", "http://www.socwork.net/sws/article/view/60/362"], ["accessed_at", "2009-05-20 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.134914"], ["updated_at", "2021-09-14 16:30:23.134914"]]
142719
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Nadine"], ["middle", ""], ["last", "Dolby"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.138784"], ["updated_at", "2021-09-14 16:30:23.138784"]]
142720
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142721
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142722
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142723
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142724
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142725
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142726
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142727
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 12.1ms | Allocations: 1346)
142728
+ TRANSACTION (0.3ms) rollback transaction
142729
+ TRANSACTION (0.2ms) begin transaction
142730
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142731
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Omnis Possimus Officiis Et Sit"], ["description", "Ut est repudiandae. Quia sequi beatae. Quos sint ut."], ["created_at", "2021-09-14 16:30:23.162196"], ["updated_at", "2021-09-14 16:30:23.162196"]]
142732
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142733
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142734
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Investigating Disease Outbreaks Under a Protocol to the Biological and Toxin Weapons Convention"], ["container_title", "Emerging Infectious Diseases"], ["publisher", ""], ["city", ""], ["volume", "vol. 6"], ["number", "no. 6"], ["year", "2000"], ["pages", "pp. 595-600"], ["url", "http://wwwnc.cdc.gov/eid/article/6/6/00-0607_article"], ["accessed_at", "2009-02-08 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.173533"], ["updated_at", "2021-09-14 16:30:23.173533"]]
142735
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Mark"], ["middle", ""], ["last", "Wheelis"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.177490"], ["updated_at", "2021-09-14 16:30:23.177490"]]
142736
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142737
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142738
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142739
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142740
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142741
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142742
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142743
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 12.6ms | Allocations: 1347)
142744
+ TRANSACTION (0.3ms) rollback transaction
142745
+ TRANSACTION (0.1ms) begin transaction
142746
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142747
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptatem Aliquam Et Et Cupiditate"], ["description", "Reprehenderit blanditiis quo. Facere quia occaecati. Quasi nam sit.\nVoluptate non quos. Est animi culpa. Aut saepe quo.\nAut consectetur consequatur. Dignissimos cumque unde. Ea veritatis esse."], ["created_at", "2021-09-14 16:30:23.204785"], ["updated_at", "2021-09-14 16:30:23.204785"]]
142748
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142749
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142750
+ WorksCited::Citation Create (0.7ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", ""], ["title", "Toxicity of Nitrite to Three Species of Freshwater Invertebrates"], ["container_title", "Environmental Toxicology"], ["publisher", ""], ["city", ""], ["volume", "vol. 21"], ["number", "no. 1"], ["year", ""], ["pages", "pp. 90-94"], ["url", ""], ["online_database", "Wiley Online Library"], ["doi", "doi:10.1002/tox.20155"], ["published_at", "2006-02-03 00:00:00"], ["accessed_at", "2009-05-26 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.219192"], ["updated_at", "2021-09-14 16:30:23.219192"]]
142751
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Julio"], ["middle", "Allen"], ["last", "Camargo"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.223668"], ["updated_at", "2021-09-14 16:30:23.223668"]]
142752
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Alvaro"], ["middle", ""], ["last", "Alonso"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.226254"], ["updated_at", "2021-09-14 16:30:23.226254"]]
142753
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142754
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142755
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142756
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142757
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142758
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142759
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142760
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
142761
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_electronic.html.haml (Duration: 11.4ms | Allocations: 1498)
142762
+ TRANSACTION (0.3ms) rollback transaction
142763
+ TRANSACTION (0.1ms) begin transaction
142764
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142765
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sit Esse"], ["description", "Explicabo illo debitis. Molestiae velit inventore. Sapiente hic vero.\nBlanditiis officiis beatae. Et quas iure. Debitis minima recusandae.\nAd sequi tempora. Fuga natus eaque. Et est cumque."], ["created_at", "2021-09-14 16:30:23.252446"], ["updated_at", "2021-09-14 16:30:23.252446"]]
142766
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142767
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142768
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", ""], ["title", "Re: Modernist Literature"], ["container_title", ""], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", ""], ["online_database", ""], ["doi", ""], ["published_at", "2000-11-15 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.265561"], ["updated_at", "2021-09-14 16:30:23.265561"]]
142769
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Andrew"], ["middle", ""], ["last", "Kunka"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.269617"], ["updated_at", "2021-09-14 16:30:23.269617"]]
142770
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["first", "John"], ["middle", ""], ["last", "Watts"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.272158"], ["updated_at", "2021-09-14 16:30:23.272158"]]
142771
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142772
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
142773
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
142774
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"]]
142775
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142776
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142777
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142778
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142779
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142780
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142781
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_email.html.haml (Duration: 21.5ms | Allocations: 4153)
142782
+ TRANSACTION (0.3ms) rollback transaction
142783
+ TRANSACTION (0.2ms) begin transaction
142784
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142785
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Omnis Officia"], ["description", "Eius dignissimos qui. Esse aspernatur deleniti. Consequuntur repellat et."], ["created_at", "2021-09-14 16:30:23.308236"], ["updated_at", "2021-09-14 16:30:23.308236"]]
142786
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142787
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142788
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", ""], ["title", "Re: Best Strategy: Fenced Pastures vs. Max Number of Rooms?"], ["container_title", "BoardGameGeek"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://boardgamegeek.com/thread/343929/best-strategy-fenced-pastures-vs-max-number-rooms"], ["online_database", ""], ["doi", ""], ["published_at", "2008-09-29 00:00:00"], ["accessed_at", "2009-04-05 00:00:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.337309"], ["updated_at", "2021-09-14 16:30:23.337309"]]
142789
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "handle", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Sal"], ["middle", ""], ["last", "Hernandez"], ["suffix", ""], ["handle", "Salmar1515"], ["created_at", "2021-09-14 16:30:23.341055"], ["updated_at", "2021-09-14 16:30:23.341055"]]
142790
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142791
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
142792
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
142793
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
142794
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
142795
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142796
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142797
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142798
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_email.html.haml (Duration: 13.9ms | Allocations: 1522)
142799
+ TRANSACTION (0.3ms) rollback transaction
142800
+ TRANSACTION (0.1ms) begin transaction
142801
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142802
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Qui Odit Quasi Neque"], ["description", "Accusantium vel fuga. Odit maiores qui. Soluta sunt officia.\nQuae eum ut. Ut dolorum illo. Eveniet quia error.\nIusto repellendus nemo. Sed culpa ab. Molestiae suscipit a.\nNon odio inventore. Doloremque facere sed. Assumenda illum laudantium."], ["created_at", "2021-09-14 16:30:23.371434"], ["updated_at", "2021-09-14 16:30:23.371434"]]
142803
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142804
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142805
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "volume", "number", "year", "pages", "url", "online_database", "doi", "published_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", ""], ["title", "SC demonstrated why all the debates are the engines of this campaign."], ["container_title", "Twitter"], ["publisher", ""], ["city", ""], ["volume", ""], ["number", ""], ["year", ""], ["pages", ""], ["url", "https://twitter.com/tombrokaw/status/160996868971704320"], ["online_database", ""], ["doi", ""], ["published_at", "2012-01-22 03:06:00"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.385054"], ["updated_at", "2021-09-14 16:30:23.385054"]]
142806
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "handle", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", ""], ["middle", ""], ["last", ""], ["suffix", ""], ["handle", "tombrokaw"], ["created_at", "2021-09-14 16:30:23.389337"], ["updated_at", "2021-09-14 16:30:23.389337"]]
142807
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142808
+ WorksCited::Contributor Exists? (0.4ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "receiver"], ["LIMIT", 1]]
142809
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142810
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142811
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142812
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_tweet.html.haml (Duration: 16.2ms | Allocations: 3027)
142813
+ TRANSACTION (0.4ms) rollback transaction
142814
+ TRANSACTION (0.1ms) begin transaction
142815
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142816
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Minus Nemo Quae Dignissimos"], ["description", "Adipisci et sequi. Deleniti deserunt nulla. Pariatur molestiae et.\nAtque sed aut. Ad sequi cumque. Est et esse."], ["created_at", "2021-09-14 16:30:23.420535"], ["updated_at", "2021-09-14 16:30:23.420535"]]
142817
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142818
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142819
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Tiger! Tiger!"], ["container_title", "Antic Hay"], ["publisher", "Canongate Books"], ["city", "Hackettchester"], ["year", "1986"], ["pages", "pp. 145-6"], ["url", "http://glover.name/aracelis.batz"], ["published_at", "2020-09-14 16:30:23.428057"], ["accessed_at", "2021-08-14 16:30:23.428267"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.430060"], ["updated_at", "2021-09-14 16:30:23.430060"]]
142820
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142821
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142822
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142823
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:23.436444"], ["updated_at", "2021-09-14 16:30:23.436444"]]
142824
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142825
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142826
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142827
+ TRANSACTION (0.2ms) rollback transaction
142828
+ TRANSACTION (0.1ms) begin transaction
142829
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142830
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Exercitationem Vel Dicta Quisquam"], ["description", "Quaerat dolorum dolor. Optio molestiae temporibus. Quo sit asperiores.\nLibero dolore nihil. Aut numquam ullam. Voluptas aut ullam.\nMaiores rerum quasi. Aut possimus voluptatem. Sed ea error.\nNihil aperiam nihil. Aperiam nobis hic. Optio sunt enim.\nSequi minus laboriosam. Earum eum ipsum. Aliquid dicta atque."], ["created_at", "2021-09-14 16:30:23.450988"], ["updated_at", "2021-09-14 16:30:23.450988"]]
142831
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142832
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142833
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "An Acceptable Time"], ["container_title", "Bury My Heart at Wounded Knee"], ["publisher", "Harvard University Press"], ["city", "Tatianaburgh"], ["year", "2014"], ["pages", "pp. 145-6"], ["url", "http://considine.biz/krista"], ["published_at", "2020-09-14 16:30:23.455790"], ["accessed_at", "2021-08-14 16:30:23.455884"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.456812"], ["updated_at", "2021-09-14 16:30:23.456812"]]
142834
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142835
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142836
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142837
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:23.463213"], ["updated_at", "2021-09-14 16:30:23.463213"]]
142838
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142839
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142840
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Susan"], ["middle", "Sara"], ["last", "Sorenson"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:30:23.467039"], ["updated_at", "2021-09-14 16:30:23.467039"]]
142841
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142842
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142843
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142844
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? OFFSET ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1], ["OFFSET", 1]]
142845
+ TRANSACTION (0.3ms) rollback transaction
142846
+ TRANSACTION (0.1ms) begin transaction
142847
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142848
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rerum Quis Sit"], ["description", "Voluptate porro expedita. Aperiam eveniet aliquam. Eos hic voluptatibus.\nIusto omnis quae. Voluptas architecto explicabo. Autem nihil labore.\nOptio omnis perferendis. Eum assumenda non. Expedita aut sequi.\nRem est sint. Veritatis ut distinctio. Reprehenderit at optio.\nEst nulla et. Hic dicta illo. Eius tenetur dolorem."], ["created_at", "2021-09-14 16:30:23.486551"], ["updated_at", "2021-09-14 16:30:23.486551"]]
142849
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142850
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142851
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Tiger! Tiger!"], ["container_title", "Dance Dance Dance"], ["publisher", "University of Chicago Press"], ["city", "Fishermouth"], ["year", "2013"], ["pages", "pp. 145-6"], ["url", "http://murazik.biz/cathey_hand"], ["published_at", "2020-09-14 16:30:23.492145"], ["accessed_at", "2021-08-14 16:30:23.492289"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.493692"], ["updated_at", "2021-09-14 16:30:23.493692"]]
142852
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142853
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142854
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142855
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:23.504243"], ["updated_at", "2021-09-14 16:30:23.504243"]]
142856
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142857
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142858
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Susan"], ["middle", "Sara"], ["last", "Sorenson"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:30:23.511241"], ["updated_at", "2021-09-14 16:30:23.511241"]]
142859
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142860
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142861
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Lara"], ["middle", ""], ["last", "Lovelace"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.516354"], ["updated_at", "2021-09-14 16:30:23.516354"]]
142862
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142863
+ WorksCited::Contributor Load (0.3ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
142864
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? [["works_cited_citation_id", 1], ["contributor_role", "author"]]
142865
+ TRANSACTION (0.2ms) rollback transaction
142866
+ TRANSACTION (0.2ms) begin transaction
142867
+ TRANSACTION (0.2ms) rollback transaction
142868
+ TRANSACTION (0.1ms) begin transaction
142869
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142870
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Dolor Ea"], ["description", "Nostrum ipsam quos. Cupiditate ut reprehenderit. Est ratione est.\nAliquam odio eaque. Perspiciatis optio soluta. Voluptates occaecati et.\nEt quod omnis. Alias ipsum similique. Cumque sunt exercitationem.\nEsse et blanditiis. Consequatur enim ipsam. Aut ut sint.\nEt quas debitis. Rerum in repudiandae. Saepe quaerat pariatur."], ["created_at", "2021-09-14 16:30:23.574634"], ["updated_at", "2021-09-14 16:30:23.574634"]]
142871
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142872
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142873
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "Stranger in a Strange Land"], ["container_title", "Tirra Lirra by the River"], ["publisher", "Sidgwick & Jackson"], ["city", "Port Jodyshire"], ["year", "1980"], ["pages", "pp. 145-6"], ["url", "http://langosh-daniel.biz/yuriko"], ["published_at", "2020-09-14 16:30:23.580767"], ["accessed_at", "2021-08-14 16:30:23.580955"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.582601"], ["updated_at", "2021-09-14 16:30:23.582601"]]
142874
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142875
+ TRANSACTION (0.2ms) rollback transaction
142876
+ TRANSACTION (0.2ms) begin transaction
142877
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142878
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nostrum Labore Iusto Blanditiis Quas"], ["description", "Quasi magnam optio. Tempora eum quia. Excepturi esse commodi.\nProvident voluptatum dolor. Itaque in ipsum. Ad saepe aut."], ["created_at", "2021-09-14 16:30:23.592186"], ["updated_at", "2021-09-14 16:30:23.592186"]]
142879
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142880
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142881
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Consider Phlebas"], ["container_title", "A Scanner Darkly"], ["publisher", "Brill Publishers"], ["city", "Carryborough"], ["year", "1921"], ["pages", "pp. 145-6"], ["url", "http://spencer.org/demetrice_rowe"], ["published_at", "2020-09-14 16:30:23.599380"], ["accessed_at", "2021-08-14 16:30:23.599513"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.600711"], ["updated_at", "2021-09-14 16:30:23.600711"]]
142882
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142883
+ TRANSACTION (0.2ms) rollback transaction
142884
+ TRANSACTION (0.2ms) begin transaction
142885
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142886
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rerum Rem Quia Minima"], ["description", "Ipsam incidunt inventore. Saepe molestiae libero. Eum et quia.\nFugiat repellendus beatae. Distinctio ratione velit. Inventore magnam aut."], ["created_at", "2021-09-14 16:30:23.608249"], ["updated_at", "2021-09-14 16:30:23.608249"]]
142887
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142888
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142889
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Heart Is a Lonely Hunter"], ["container_title", "Surprised by Joy"], ["publisher", "Lethe Press"], ["city", "East Alvaro"], ["year", "1979"], ["pages", "pp. 145-6"], ["url", "http://kassulke.net/marcella.beatty"], ["published_at", "2020-09-14 16:30:23.615438"], ["accessed_at", "2021-08-14 16:30:23.615540"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.616637"], ["updated_at", "2021-09-14 16:30:23.616637"]]
142890
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142891
+ TRANSACTION (0.2ms) rollback transaction
142892
+ TRANSACTION (0.2ms) begin transaction
142893
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142894
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Rerum Sequi Sint Sed"], ["description", "Est fugit quasi. Beatae et asperiores. A eum ipsum.\nVoluptas ad ut. Nisi ut porro. Veritatis placeat et.\nEt consequatur est. Velit labore harum. Dolorem corrupti fuga.\nQuia assumenda facere. Dolore explicabo qui. Quas eaque quis.\nEst ut non. Recusandae eum consequatur. Beatae sunt animi."], ["created_at", "2021-09-14 16:30:23.627762"], ["updated_at", "2021-09-14 16:30:23.627762"]]
142895
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142896
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142897
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "A Swiftly Tilting Planet"], ["container_title", "Look Homeward, Angel"], ["publisher", "Bloomsbury Publishing Plc"], ["city", "East Danehaven"], ["year", "1962"], ["pages", "pp. 145-6"], ["url", "http://nienow.name/vena"], ["published_at", "2020-09-14 16:30:23.636567"], ["accessed_at", "2021-08-14 16:30:23.636810"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.638260"], ["updated_at", "2021-09-14 16:30:23.638260"]]
142898
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142899
+ TRANSACTION (0.3ms) rollback transaction
142900
+ TRANSACTION (0.2ms) begin transaction
142901
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142902
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Iste Ex"], ["description", "Ea quis quisquam. Recusandae reprehenderit distinctio. Et deleniti corrupti.\nQuaerat dignissimos est. Omnis doloremque quas. Delectus velit qui."], ["created_at", "2021-09-14 16:30:23.650332"], ["updated_at", "2021-09-14 16:30:23.650332"]]
142903
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
142904
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142905
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Tirra Lirra by the River"], ["container_title", "Quo Vadis"], ["publisher", "John Blake Publishing"], ["city", "Whitemouth"], ["year", "2004"], ["pages", "pp. 145-6"], ["url", "http://jacobi.net/micah_okon"], ["published_at", "2020-09-14 16:30:23.658505"], ["accessed_at", "2021-08-14 16:30:23.658654"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.660485"], ["updated_at", "2021-09-14 16:30:23.660485"]]
142906
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142907
+ TRANSACTION (0.3ms) rollback transaction
142908
+ TRANSACTION (0.1ms) begin transaction
142909
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142910
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Maxime Impedit Dolorem Cupiditate"], ["description", "Consequuntur tenetur ex. Reiciendis sit aut. Vel aut officia.\nVoluptatibus et et. Quia sit officiis. Asperiores sed laudantium.\nBeatae quis omnis. Hic tempore sunt. Et et cumque.\nQui consequatur corporis. Veritatis qui possimus. Illum voluptas dolorem."], ["created_at", "2021-09-14 16:30:23.673839"], ["updated_at", "2021-09-14 16:30:23.673839"]]
142911
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142912
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142913
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "The Doors of Perception"], ["container_title", "No Longer at Ease"], ["publisher", "Butterworth-Heinemann"], ["city", "Sipesmouth"], ["year", "1961"], ["pages", "pp. 145-6"], ["url", "http://bayer.org/wilbert"], ["published_at", "2020-09-14 16:30:23.679796"], ["accessed_at", "2021-08-14 16:30:23.680039"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.681763"], ["updated_at", "2021-09-14 16:30:23.681763"]]
142914
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142915
+ TRANSACTION (0.3ms) rollback transaction
142916
+ TRANSACTION (0.2ms) begin transaction
142917
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142918
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nam Voluptas Voluptates Aut"], ["description", "Minus aliquam in. Sunt nam voluptatem. Sapiente eius cumque.\nQui fugit laboriosam. Sunt adipisci accusantium. Molestiae explicabo quod."], ["created_at", "2021-09-14 16:30:23.691978"], ["updated_at", "2021-09-14 16:30:23.691978"]]
142919
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142920
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142921
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "The Heart Is a Lonely Hunter"], ["container_title", "Mr Standfast"], ["publisher", "Blackie and Son Limited"], ["city", "Swiftchester"], ["year", "1942"], ["pages", "pp. 145-6"], ["url", "http://swaniawski.org/jame"], ["published_at", "2020-09-14 16:30:23.699269"], ["accessed_at", "2021-08-14 16:30:23.699398"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.700643"], ["updated_at", "2021-09-14 16:30:23.700643"]]
142922
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142923
+ TRANSACTION (0.3ms) rollback transaction
142924
+ TRANSACTION (0.2ms) begin transaction
142925
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142926
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Impedit Placeat"], ["description", "Ducimus et aperiam. Vero aspernatur perspiciatis. Blanditiis expedita ipsa.\nSed sit porro. Facilis aliquid veritatis. Accusamus at voluptatibus.\nAut adipisci qui. Repudiandae voluptatem assumenda. Voluptatibus et ut.\nDeserunt placeat aut. Magni minima illum. Porro veniam nulla.\nIn ratione doloribus. Ab rerum officia. Deleniti recusandae et."], ["created_at", "2021-09-14 16:30:23.712356"], ["updated_at", "2021-09-14 16:30:23.712356"]]
142927
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142928
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142929
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "This Lime Tree Bower"], ["container_title", "That Good Night"], ["publisher", "Del Rey Books"], ["city", "East Luannstad"], ["year", "1950"], ["pages", "pp. 145-6"], ["url", "http://weimann.biz/francesco"], ["published_at", "2020-09-14 16:30:23.719464"], ["accessed_at", "2021-08-14 16:30:23.719564"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.720810"], ["updated_at", "2021-09-14 16:30:23.720810"]]
142930
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142931
+ TRANSACTION (0.2ms) rollback transaction
142932
+ TRANSACTION (0.2ms) begin transaction
142933
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142934
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptas Et Ut"], ["description", "Numquam et aut. Dignissimos est dicta. Illo officia vitae.\nOptio reiciendis deserunt. Officia sequi adipisci. Tempora amet quis.\nSunt enim ex. Et ipsum quasi. Inventore veritatis est."], ["created_at", "2021-09-14 16:30:23.730750"], ["updated_at", "2021-09-14 16:30:23.730750"]]
142935
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142936
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142937
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Tiger! Tiger!"], ["container_title", "Consider the Lilies"], ["publisher", "HMSO"], ["city", "Port Vincentview"], ["year", "1938"], ["pages", "pp. 145-6"], ["url", "http://howe.biz/truman"], ["published_at", "2020-09-14 16:30:23.736285"], ["accessed_at", "2021-08-14 16:30:23.736381"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.737363"], ["updated_at", "2021-09-14 16:30:23.737363"]]
142938
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142939
+ TRANSACTION (0.2ms) rollback transaction
142940
+ TRANSACTION (0.1ms) begin transaction
142941
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142942
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "A Qui Et Minus"], ["description", "Provident explicabo vitae. Magnam dolor quia. Est consectetur aut.\nNon autem tempore. Molestiae est veniam. Quaerat sunt ut."], ["created_at", "2021-09-14 16:30:23.747087"], ["updated_at", "2021-09-14 16:30:23.747087"]]
142943
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142944
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142945
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "In a Dry Season"], ["container_title", "Infinite Jest"], ["publisher", "Brill"], ["city", "Port Ozell"], ["year", "2015"], ["pages", "pp. 145-6"], ["url", "http://pacocha.net/howard_shields"], ["published_at", "2020-09-14 16:30:23.752994"], ["accessed_at", "2021-08-14 16:30:23.753175"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.754705"], ["updated_at", "2021-09-14 16:30:23.754705"]]
142946
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142947
+ TRANSACTION (0.2ms) rollback transaction
142948
+ TRANSACTION (0.1ms) begin transaction
142949
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142950
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Id Voluptas"], ["description", "Qui non vel. Qui reiciendis sint. Tempora distinctio ipsum.\nDolorem nisi et. Minima fugit dolores. Sequi molestiae inventore.\nVoluptas itaque et. Est occaecati iure. Amet ut dicta.\nQuia culpa eos. Sed porro quas. Voluptatum quae quas.\nMinus sunt et. Reiciendis ea neque. Nostrum optio ut."], ["created_at", "2021-09-14 16:30:23.797513"], ["updated_at", "2021-09-14 16:30:23.797513"]]
142951
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142952
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142953
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Pale Kings and Princes"], ["container_title", "The Proper Study"], ["publisher", "Atheneum Books"], ["city", "Bruenton"], ["year", "1968"], ["pages", "pp. 145-6"], ["url", "http://von.com/fumiko"], ["published_at", "2020-09-14 16:30:23.803534"], ["accessed_at", "2021-08-14 16:30:23.803704"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.805111"], ["updated_at", "2021-09-14 16:30:23.805111"]]
142954
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142955
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142956
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Man"], ["middle", ""], ["last", "Brown"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.809235"], ["updated_at", "2021-09-14 16:30:23.809235"]]
142957
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142958
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142959
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Kathrin"], ["middle", "Fay"], ["last", "Shields"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.814056"], ["updated_at", "2021-09-14 16:30:23.814056"]]
142960
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142961
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142962
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Gale"], ["middle", "Baumbach"], ["last", "DuBuque"], ["suffix", "JD"], ["created_at", "2021-09-14 16:30:23.820864"], ["updated_at", "2021-09-14 16:30:23.820864"]]
142963
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142964
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142965
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Lanny"], ["middle", "Herman"], ["last", "Schultz"], ["suffix", "JD"], ["created_at", "2021-09-14 16:30:23.827279"], ["updated_at", "2021-09-14 16:30:23.827279"]]
142966
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142967
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 1], ["LIMIT", 1]]
142968
+ TRANSACTION (0.2ms) rollback transaction
142969
+ TRANSACTION (0.1ms) begin transaction
142970
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142971
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Incidunt"], ["description", "Doloribus qui error. Similique voluptatem et. Dolores rem doloremque.\nSoluta ad voluptatibus. Id molestiae numquam. Aut ea rem.\nArchitecto neque ab. Molestias quis et. Et eligendi ipsa."], ["created_at", "2021-09-14 16:30:23.840914"], ["updated_at", "2021-09-14 16:30:23.840914"]]
142972
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142973
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142974
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Far From the Madding Crowd"], ["container_title", "Edna O'Brien"], ["publisher", "Ian Allan Publishing"], ["city", "North Ione"], ["year", "2007"], ["pages", "pp. 145-6"], ["url", "http://lockman-hessel.net/galen"], ["published_at", "2020-09-14 16:30:23.847860"], ["accessed_at", "2021-08-14 16:30:23.848106"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.849664"], ["updated_at", "2021-09-14 16:30:23.849664"]]
142975
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142976
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142977
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Gabriele"], ["middle", "Wolf"], ["last", "Prohaska"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.853971"], ["updated_at", "2021-09-14 16:30:23.853971"]]
142978
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142979
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142980
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Pearl"], ["middle", ""], ["last", "MacGyver"], ["suffix", "PhD"], ["created_at", "2021-09-14 16:30:23.856916"], ["updated_at", "2021-09-14 16:30:23.856916"]]
142981
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142982
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142983
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Francis"], ["middle", "Gulgowski"], ["last", "Von"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:30:23.860398"], ["updated_at", "2021-09-14 16:30:23.860398"]]
142984
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142985
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142986
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Scot"], ["middle", ""], ["last", "Reichel"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.865263"], ["updated_at", "2021-09-14 16:30:23.865263"]]
142987
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142988
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 2], ["LIMIT", 1]]
142989
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "author"]]
142990
+ TRANSACTION (0.2ms) rollback transaction
142991
+ TRANSACTION (0.1ms) begin transaction
142992
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142993
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sit Praesentium Ut Amet Quisquam"], ["description", "Officiis quaerat dicta. Fugit quis fugiat. Perferendis nam accusantium."], ["created_at", "2021-09-14 16:30:23.873077"], ["updated_at", "2021-09-14 16:30:23.873077"]]
142994
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142995
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
142996
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Mr Standfast"], ["container_title", "The Cricket on the Hearth"], ["publisher", "Tate Publishing & Enterprises"], ["city", "Beerborough"], ["year", "1967"], ["pages", "pp. 145-6"], ["url", "http://franecki.org/codi"], ["published_at", "2020-09-14 16:30:23.879067"], ["accessed_at", "2021-08-14 16:30:23.879258"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.880951"], ["updated_at", "2021-09-14 16:30:23.880951"]]
142997
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
142998
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
142999
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Charles"], ["middle", ""], ["last", "Wehner"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.885914"], ["updated_at", "2021-09-14 16:30:23.885914"]]
143000
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143001
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143002
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Dennis"], ["middle", ""], ["last", "West"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.888996"], ["updated_at", "2021-09-14 16:30:23.888996"]]
143003
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143004
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143005
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Clair"], ["middle", ""], ["last", "Bauch"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.892010"], ["updated_at", "2021-09-14 16:30:23.892010"]]
143006
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143007
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143008
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Marcell"], ["middle", ""], ["last", "West"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.897565"], ["updated_at", "2021-09-14 16:30:23.897565"]]
143009
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143010
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 3], ["LIMIT", 1]]
143011
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "author"]]
143012
+ TRANSACTION (0.2ms) rollback transaction
143013
+ TRANSACTION (0.2ms) begin transaction
143014
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143015
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Nisi Ipsam Excepturi Qui Veniam"], ["description", "Eius facilis a. Eligendi atque autem. Nihil sunt voluptas.\nSapiente vel quibusdam. Iusto quis non. Nostrum et quisquam.\nNon quas quaerat. Est id voluptas. Minima qui ipsa."], ["created_at", "2021-09-14 16:30:23.908679"], ["updated_at", "2021-09-14 16:30:23.908679"]]
143016
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143017
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143018
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Jacob Have I Loved"], ["container_title", "To a God Unknown"], ["publisher", "Heyday Books"], ["city", "Hammestown"], ["year", "1933"], ["pages", "pp. 145-6"], ["url", "http://deckow.co/ronald"], ["published_at", "2020-09-14 16:30:23.915568"], ["accessed_at", "2021-08-14 16:30:23.915680"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.916791"], ["updated_at", "2021-09-14 16:30:23.916791"]]
143019
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143020
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143021
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Fidelia"], ["middle", ""], ["last", "Sporer"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:23.920845"], ["updated_at", "2021-09-14 16:30:23.920845"]]
143022
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143023
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143024
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Lucile"], ["middle", ""], ["last", "Ernser"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.924222"], ["updated_at", "2021-09-14 16:30:23.924222"]]
143025
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143026
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143027
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Floy"], ["middle", ""], ["last", "Bashirian"], ["suffix", "VM"], ["created_at", "2021-09-14 16:30:23.929048"], ["updated_at", "2021-09-14 16:30:23.929048"]]
143028
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143029
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143030
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Gene"], ["middle", "Pacocha"], ["last", "Hettinger"], ["suffix", "II"], ["created_at", "2021-09-14 16:30:23.935223"], ["updated_at", "2021-09-14 16:30:23.935223"]]
143031
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143032
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "author"], ["id", 4], ["LIMIT", 1]]
143033
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "author"]]
143034
+ TRANSACTION (0.3ms) rollback transaction
143035
+ TRANSACTION (0.1ms) begin transaction
143036
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143037
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Adipisci"], ["description", "Consequatur quia nam. Quasi praesentium asperiores. Aut quae molestiae.\nQuidem amet ea. Et sint soluta. Laborum eum velit."], ["created_at", "2021-09-14 16:30:23.949197"], ["updated_at", "2021-09-14 16:30:23.949197"]]
143038
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143039
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143040
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Stranger in a Strange Land"], ["container_title", "Surprised by Joy"], ["publisher", "Cengage Learning"], ["city", "South Sherice"], ["year", "1994"], ["pages", "pp. 145-6"], ["url", "http://walker.info/golden"], ["published_at", "2020-09-14 16:30:23.956563"], ["accessed_at", "2021-08-14 16:30:23.956762"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.958121"], ["updated_at", "2021-09-14 16:30:23.958121"]]
143041
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143042
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143043
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Marcelino"], ["middle", ""], ["last", "Kling"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.966218"], ["updated_at", "2021-09-14 16:30:23.966218"]]
143044
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143045
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143046
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Samuel"], ["middle", "Krajcik"], ["last", "McLaughlin"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.972762"], ["updated_at", "2021-09-14 16:30:23.972762"]]
143047
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143048
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143049
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Alphonse"], ["middle", ""], ["last", "Hintz"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.976731"], ["updated_at", "2021-09-14 16:30:23.976731"]]
143050
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143051
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143052
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Logan"], ["middle", "West"], ["last", "Franecki"], ["suffix", ""], ["created_at", "2021-09-14 16:30:23.981419"], ["updated_at", "2021-09-14 16:30:23.981419"]]
143053
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143054
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 1], ["LIMIT", 1]]
143055
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "editor"]]
143056
+ TRANSACTION (0.2ms) rollback transaction
143057
+ TRANSACTION (0.2ms) begin transaction
143058
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143059
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Laudantium Provident Corrupti"], ["description", "Suscipit asperiores et. Mollitia aliquam saepe. Autem velit a.\nSimilique qui sunt. Dolorum ad reiciendis. Delectus totam praesentium."], ["created_at", "2021-09-14 16:30:23.989946"], ["updated_at", "2021-09-14 16:30:23.989946"]]
143060
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143061
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143062
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Moon by Night"], ["container_title", "The Wives of Bath"], ["publisher", "Banner of Truth Trust"], ["city", "South Medaland"], ["year", "1945"], ["pages", "pp. 145-6"], ["url", "http://reichert-watsica.org/ethel"], ["published_at", "2020-09-14 16:30:23.997574"], ["accessed_at", "2021-08-14 16:30:23.997806"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:23.999096"], ["updated_at", "2021-09-14 16:30:23.999096"]]
143063
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143064
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143065
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Gita"], ["middle", ""], ["last", "Hudson"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.004244"], ["updated_at", "2021-09-14 16:30:24.004244"]]
143066
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143067
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143068
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Jerold"], ["middle", ""], ["last", "Schultz"], ["suffix", "IV"], ["created_at", "2021-09-14 16:30:24.008562"], ["updated_at", "2021-09-14 16:30:24.008562"]]
143069
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143070
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143071
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Afton"], ["middle", ""], ["last", "Hessel"], ["suffix", "CPA"], ["created_at", "2021-09-14 16:30:24.012969"], ["updated_at", "2021-09-14 16:30:24.012969"]]
143072
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143073
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143074
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Autumn"], ["middle", "Langosh"], ["last", "Jakubowski"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:30:24.016956"], ["updated_at", "2021-09-14 16:30:24.016956"]]
143075
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143076
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 2], ["LIMIT", 1]]
143077
+ TRANSACTION (0.2ms) rollback transaction
143078
+ TRANSACTION (0.2ms) begin transaction
143079
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143080
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sapiente Aperiam Corporis Ex Mollitia"], ["description", "Animi sequi assumenda. At similique repudiandae. Dolore corporis explicabo.\nInventore sit qui. Beatae explicabo quisquam. Odio voluptatum nihil.\nFugiat et omnis. Sequi officiis velit. Eum officiis ducimus.\nVeritatis eveniet rem. Accusamus maiores quis. Tenetur consequatur omnis."], ["created_at", "2021-09-14 16:30:24.026600"], ["updated_at", "2021-09-14 16:30:24.026600"]]
143081
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143082
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143083
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Death Be Not Proud"], ["container_title", "The Far-Distant Oxus"], ["publisher", "Harvard University Press"], ["city", "Andriaside"], ["year", "1989"], ["pages", "pp. 145-6"], ["url", "http://walsh.biz/dierdre.huel"], ["published_at", "2020-09-14 16:30:24.034099"], ["accessed_at", "2021-08-14 16:30:24.034229"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.035364"], ["updated_at", "2021-09-14 16:30:24.035364"]]
143084
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143085
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143086
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joie"], ["middle", ""], ["last", "O'Keefe"], ["suffix", "II"], ["created_at", "2021-09-14 16:30:24.039359"], ["updated_at", "2021-09-14 16:30:24.039359"]]
143087
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143088
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143089
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Shanice"], ["middle", "Champlin"], ["last", "Lowe"], ["suffix", "MD"], ["created_at", "2021-09-14 16:30:24.042486"], ["updated_at", "2021-09-14 16:30:24.042486"]]
143090
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143091
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143092
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Eldridge"], ["middle", "Heller"], ["last", "Russel"], ["suffix", "Sr."], ["created_at", "2021-09-14 16:30:24.047274"], ["updated_at", "2021-09-14 16:30:24.047274"]]
143093
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143094
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143095
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Bernie"], ["middle", "Altenwerth"], ["last", "Lockman"], ["suffix", "III"], ["created_at", "2021-09-14 16:30:24.051077"], ["updated_at", "2021-09-14 16:30:24.051077"]]
143096
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143097
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 3], ["LIMIT", 1]]
143098
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "editor"]]
143099
+ TRANSACTION (0.2ms) rollback transaction
143100
+ TRANSACTION (0.2ms) begin transaction
143101
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143102
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Est Enim Eaque"], ["description", "Delectus exercitationem quia. Sit rerum fuga. Incidunt rerum aut.\nCumque omnis ea. Ut mollitia dolores. Qui omnis adipisci."], ["created_at", "2021-09-14 16:30:24.061146"], ["updated_at", "2021-09-14 16:30:24.061146"]]
143103
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143104
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143105
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "The Mirror Crack'd from Side to Side"], ["container_title", "Have His Carcase"], ["publisher", "Bella Books"], ["city", "New Connie"], ["year", "1963"], ["pages", "pp. 145-6"], ["url", "http://ratke.biz/claribel"], ["published_at", "2020-09-14 16:30:24.069233"], ["accessed_at", "2021-08-14 16:30:24.069409"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.071121"], ["updated_at", "2021-09-14 16:30:24.071121"]]
143106
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143107
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143108
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Allena"], ["middle", "Bruen"], ["last", "Douglas"], ["suffix", "PhD"], ["created_at", "2021-09-14 16:30:24.076815"], ["updated_at", "2021-09-14 16:30:24.076815"]]
143109
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143110
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143111
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Corrine"], ["middle", "Roob"], ["last", "Jaskolski"], ["suffix", "CPA"], ["created_at", "2021-09-14 16:30:24.082876"], ["updated_at", "2021-09-14 16:30:24.082876"]]
143112
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143113
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143114
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Kenny"], ["middle", "Ryan"], ["last", "Rau"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.086874"], ["updated_at", "2021-09-14 16:30:24.086874"]]
143115
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143116
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143117
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Ali"], ["middle", ""], ["last", "Veum"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.089818"], ["updated_at", "2021-09-14 16:30:24.089818"]]
143118
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143119
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "editor"], ["id", 4], ["LIMIT", 1]]
143120
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "editor"]]
143121
+ TRANSACTION (0.3ms) rollback transaction
143122
+ TRANSACTION (0.2ms) begin transaction
143123
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143124
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Id Ipsum Sequi Sint Impedit"], ["description", "Delectus impedit quasi. Autem ut explicabo. Consequatur qui in.\nConsequuntur exercitationem sit. Et rem id. Quisquam dolor distinctio.\nEt suscipit quas. Et dolore blanditiis. Exercitationem molestiae qui.\nSed vel culpa. Amet accusantium sunt. Non id et.\nMaxime laboriosam officiis. Voluptas enim aut. Assumenda facilis praesentium."], ["created_at", "2021-09-14 16:30:24.103299"], ["updated_at", "2021-09-14 16:30:24.103299"]]
143125
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143126
+ TRANSACTION (0.3ms) SAVEPOINT active_record_1
143127
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Shall not Perish"], ["container_title", "Fame Is the Spur"], ["publisher", "André Deutsch"], ["city", "Kleinmouth"], ["year", "1966"], ["pages", "pp. 145-6"], ["url", "http://monahan.name/brock_lebsack"], ["published_at", "2020-09-14 16:30:24.110381"], ["accessed_at", "2021-08-14 16:30:24.110571"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.112106"], ["updated_at", "2021-09-14 16:30:24.112106"]]
143128
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143129
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143130
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Mose"], ["middle", "Gottlieb"], ["last", "Bechtelar"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.118393"], ["updated_at", "2021-09-14 16:30:24.118393"]]
143131
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143132
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143133
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Frederic"], ["middle", ""], ["last", "Cronin"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:30:24.122118"], ["updated_at", "2021-09-14 16:30:24.122118"]]
143134
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143135
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143136
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Abram"], ["middle", ""], ["last", "Windler"], ["suffix", "IV"], ["created_at", "2021-09-14 16:30:24.125549"], ["updated_at", "2021-09-14 16:30:24.125549"]]
143137
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143138
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143139
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Rachell"], ["middle", "Wyman"], ["last", "Quitzon"], ["suffix", "DDS"], ["created_at", "2021-09-14 16:30:24.130465"], ["updated_at", "2021-09-14 16:30:24.130465"]]
143140
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143141
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 1], ["LIMIT", 1]]
143142
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "compiler"]]
143143
+ TRANSACTION (0.3ms) rollback transaction
143144
+ TRANSACTION (0.2ms) begin transaction
143145
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143146
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quos"], ["description", "Aspernatur et nulla. Deleniti distinctio numquam. Consectetur blanditiis fugiat.\nNostrum at id. Et laborum minus. Aut sit qui."], ["created_at", "2021-09-14 16:30:24.140199"], ["updated_at", "2021-09-14 16:30:24.140199"]]
143147
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143148
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143149
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Down to a Sunless Sea"], ["container_title", "By Grand Central Station I Sat Down and Wept"], ["publisher", "Book Works"], ["city", "South Deloris"], ["year", "1957"], ["pages", "pp. 145-6"], ["url", "http://hane.name/willis"], ["published_at", "2020-09-14 16:30:24.147741"], ["accessed_at", "2021-08-14 16:30:24.147902"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.149378"], ["updated_at", "2021-09-14 16:30:24.149378"]]
143150
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143151
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143152
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Andria"], ["middle", "Reilly"], ["last", "Schaden"], ["suffix", "DVM"], ["created_at", "2021-09-14 16:30:24.156836"], ["updated_at", "2021-09-14 16:30:24.156836"]]
143153
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143154
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143155
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Verona"], ["middle", ""], ["last", "Schultz"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.161737"], ["updated_at", "2021-09-14 16:30:24.161737"]]
143156
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143157
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143158
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Neely"], ["middle", "Schultz"], ["last", "Block"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.166090"], ["updated_at", "2021-09-14 16:30:24.166090"]]
143159
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143160
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143161
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Wenona"], ["middle", ""], ["last", "Douglas"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.169427"], ["updated_at", "2021-09-14 16:30:24.169427"]]
143162
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143163
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 2], ["LIMIT", 1]]
143164
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "compiler"]]
143165
+ TRANSACTION (0.2ms) rollback transaction
143166
+ TRANSACTION (0.2ms) begin transaction
143167
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143168
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ut Harum"], ["description", "Dolorum qui laboriosam. Ipsa maxime in. Est ducimus necessitatibus.\nVoluptatem eaque ea. Hic aut excepturi. Beatae impedit placeat."], ["created_at", "2021-09-14 16:30:24.178378"], ["updated_at", "2021-09-14 16:30:24.178378"]]
143169
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143170
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143171
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "The Line of Beauty"], ["container_title", "The Way Through the Woods"], ["publisher", "Felony & Mayhem Press"], ["city", "New Israelmouth"], ["year", "1964"], ["pages", "pp. 145-6"], ["url", "http://witting.name/claris"], ["published_at", "2020-09-14 16:30:24.185255"], ["accessed_at", "2021-08-14 16:30:24.185371"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.186545"], ["updated_at", "2021-09-14 16:30:24.186545"]]
143172
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143173
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143174
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Lan"], ["middle", "Fritsch"], ["last", "Parker"], ["suffix", "IV"], ["created_at", "2021-09-14 16:30:24.192257"], ["updated_at", "2021-09-14 16:30:24.192257"]]
143175
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143176
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143177
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Jeneva"], ["middle", ""], ["last", "Kutch"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.197804"], ["updated_at", "2021-09-14 16:30:24.197804"]]
143178
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143179
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143180
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Janyce"], ["middle", "Schumm"], ["last", "Schaden"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.201957"], ["updated_at", "2021-09-14 16:30:24.201957"]]
143181
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143182
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143183
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Lavelle"], ["middle", "Schmidt"], ["last", "Hand"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.206689"], ["updated_at", "2021-09-14 16:30:24.206689"]]
143184
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143185
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 3], ["LIMIT", 1]]
143186
+ TRANSACTION (0.3ms) rollback transaction
143187
+ TRANSACTION (0.1ms) begin transaction
143188
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143189
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Ab Aliquam Ut"], ["description", "Rerum officiis est. Reiciendis qui inventore. Voluptas numquam molestias.\nNisi quidem laudantium. Sapiente est qui. Veritatis assumenda nostrum.\nVeritatis quia dicta. Dolore molestiae in. Magnam autem qui."], ["created_at", "2021-09-14 16:30:24.216477"], ["updated_at", "2021-09-14 16:30:24.216477"]]
143190
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143191
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143192
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "By Grand Central Station I Sat Down and Wept"], ["container_title", "A Scanner Darkly"], ["publisher", "HarperTrophy"], ["city", "West Coleport"], ["year", "1982"], ["pages", "pp. 145-6"], ["url", "http://gerhold-stehr.biz/archie.stiedemann"], ["published_at", "2020-09-14 16:30:24.222197"], ["accessed_at", "2021-08-14 16:30:24.222366"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.223635"], ["updated_at", "2021-09-14 16:30:24.223635"]]
143193
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143194
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143195
+ WorksCited::Contributor Create (0.4ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Phil"], ["middle", "Davis"], ["last", "Upton"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.230029"], ["updated_at", "2021-09-14 16:30:24.230029"]]
143196
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143197
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143198
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Wiley"], ["middle", "Ziemann"], ["last", "Armstrong"], ["suffix", "DO"], ["created_at", "2021-09-14 16:30:24.237468"], ["updated_at", "2021-09-14 16:30:24.237468"]]
143199
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143200
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143201
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Bobette"], ["middle", "Bayer"], ["last", "Deckow"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.243681"], ["updated_at", "2021-09-14 16:30:24.243681"]]
143202
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143203
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143204
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Tobias"], ["middle", ""], ["last", "Turcotte"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.250161"], ["updated_at", "2021-09-14 16:30:24.250161"]]
143205
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143206
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "compiler"], ["id", 4], ["LIMIT", 1]]
143207
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "compiler"]]
143208
+ TRANSACTION (0.3ms) rollback transaction
143209
+ TRANSACTION (0.1ms) begin transaction
143210
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143211
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Enim Ipsum Aliquid Fuga Minus"], ["description", "Commodi aperiam alias. Dolorem dolorum est. Deleniti temporibus voluptatum.\nVero fugit quo. Consequuntur consectetur mollitia. Ut tempora sed.\nAlias ea nostrum. Amet similique nostrum. Iusto atque laboriosam."], ["created_at", "2021-09-14 16:30:24.266552"], ["updated_at", "2021-09-14 16:30:24.266552"]]
143212
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143213
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143214
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "The Green Bay Tree"], ["container_title", "Ego Dominus Tuus"], ["publisher", "Kessinger Publishing"], ["city", "South Meta"], ["year", "1999"], ["pages", "pp. 145-6"], ["url", "http://davis.co/sherman.mann"], ["published_at", "2020-09-14 16:30:24.272525"], ["accessed_at", "2021-08-14 16:30:24.272660"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.273793"], ["updated_at", "2021-09-14 16:30:24.273793"]]
143215
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143216
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143217
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Eloy"], ["middle", ""], ["last", "Kilback"], ["suffix", "LLD"], ["created_at", "2021-09-14 16:30:24.278417"], ["updated_at", "2021-09-14 16:30:24.278417"]]
143218
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143219
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143220
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Buster"], ["middle", "Sporer"], ["last", "Strosin"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.282770"], ["updated_at", "2021-09-14 16:30:24.282770"]]
143221
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143222
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143223
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Vina"], ["middle", ""], ["last", "Wehner"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:24.286141"], ["updated_at", "2021-09-14 16:30:24.286141"]]
143224
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143225
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143226
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Clementina"], ["middle", ""], ["last", "Labadie"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.289241"], ["updated_at", "2021-09-14 16:30:24.289241"]]
143227
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143228
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 1], ["LIMIT", 1]]
143229
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "translator"]]
143230
+ TRANSACTION (0.3ms) rollback transaction
143231
+ TRANSACTION (0.1ms) begin transaction
143232
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143233
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Consequatur Sunt Velit Omnis Natus"], ["description", "Vero et sint. Vero cupiditate eum. Dicta qui architecto.\nNisi dolores officia. Voluptatibus impedit dolore. Quis aut ut.\nAsperiores soluta cupiditate. Tempora totam aut. Numquam occaecati possimus.\nVel unde alias. Ut dolorem praesentium. Eum distinctio aut."], ["created_at", "2021-09-14 16:30:24.300662"], ["updated_at", "2021-09-14 16:30:24.300662"]]
143234
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143235
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143236
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "O Pioneers!"], ["container_title", "No Highway"], ["publisher", "Kodansha"], ["city", "Port Selenechester"], ["year", "1964"], ["pages", "pp. 145-6"], ["url", "http://king.io/theron_buckridge"], ["published_at", "2020-09-14 16:30:24.306131"], ["accessed_at", "2021-08-14 16:30:24.306233"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.307292"], ["updated_at", "2021-09-14 16:30:24.307292"]]
143237
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143238
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143239
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Rafael"], ["middle", ""], ["last", "Adams"], ["suffix", "DDS"], ["created_at", "2021-09-14 16:30:24.312326"], ["updated_at", "2021-09-14 16:30:24.312326"]]
143240
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143241
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143242
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Latoya"], ["middle", ""], ["last", "Schamberger"], ["suffix", "Ret."], ["created_at", "2021-09-14 16:30:24.318014"], ["updated_at", "2021-09-14 16:30:24.318014"]]
143243
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143244
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143245
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Josie"], ["middle", ""], ["last", "Hegmann"], ["suffix", "VM"], ["created_at", "2021-09-14 16:30:24.321678"], ["updated_at", "2021-09-14 16:30:24.321678"]]
143246
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143247
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143248
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Gisele"], ["middle", ""], ["last", "Pfeffer"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.325923"], ["updated_at", "2021-09-14 16:30:24.325923"]]
143249
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143250
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 2], ["LIMIT", 1]]
143251
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "translator"]]
143252
+ TRANSACTION (0.2ms) rollback transaction
143253
+ TRANSACTION (0.1ms) begin transaction
143254
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143255
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quaerat Facilis Et Nihil"], ["description", "Fugiat earum est. Accusantium nulla impedit. A non molestias.\nEos enim porro. Ea quam id. Natus fugiat rem.\nQuia quibusdam in. Id tempora voluptatibus. Vitae sint incidunt.\nAssumenda possimus ad. Dolorum cum voluptas. Voluptates molestiae ipsa."], ["created_at", "2021-09-14 16:30:24.339949"], ["updated_at", "2021-09-14 16:30:24.339949"]]
143256
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143257
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143258
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "Behold the Man"], ["container_title", "The Violent Bear It Away"], ["publisher", "Berkley Books"], ["city", "Marksfurt"], ["year", "1970"], ["pages", "pp. 145-6"], ["url", "http://abbott.com/renata"], ["published_at", "2020-09-14 16:30:24.345981"], ["accessed_at", "2021-08-14 16:30:24.346130"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.347510"], ["updated_at", "2021-09-14 16:30:24.347510"]]
143259
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143260
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143261
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Misha"], ["middle", "Herzog"], ["last", "Christiansen"], ["suffix", "Esq."], ["created_at", "2021-09-14 16:30:24.352148"], ["updated_at", "2021-09-14 16:30:24.352148"]]
143262
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143263
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143264
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Benton"], ["middle", "Rau"], ["last", "Shields"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.355413"], ["updated_at", "2021-09-14 16:30:24.355413"]]
143265
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143266
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143267
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Harland"], ["middle", ""], ["last", "Crooks"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.358783"], ["updated_at", "2021-09-14 16:30:24.358783"]]
143268
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143269
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143270
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Dirk"], ["middle", ""], ["last", "Kozey"], ["suffix", "I"], ["created_at", "2021-09-14 16:30:24.371550"], ["updated_at", "2021-09-14 16:30:24.371550"]]
143271
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143272
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 3], ["LIMIT", 1]]
143273
+ WorksCited::Contributor Load (0.1ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? ORDER BY "works_cited_contributors"."last" ASC [["contributor_role", "translator"]]
143274
+ TRANSACTION (0.3ms) rollback transaction
143275
+ TRANSACTION (0.1ms) begin transaction
143276
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143277
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Est Occaecati"], ["description", "Provident voluptate praesentium. Aut odio sed. Incidunt et sunt."], ["created_at", "2021-09-14 16:30:24.381382"], ["updated_at", "2021-09-14 16:30:24.381382"]]
143278
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143279
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143280
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "After Many a Summer Dies the Swan"], ["container_title", "Great Work of Time"], ["publisher", "David & Charles"], ["city", "Elsychester"], ["year", "1969"], ["pages", "pp. 145-6"], ["url", "http://hessel.info/amira"], ["published_at", "2020-09-14 16:30:24.387674"], ["accessed_at", "2021-08-14 16:30:24.387794"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.389528"], ["updated_at", "2021-09-14 16:30:24.389528"]]
143281
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143282
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143283
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Bailey"], ["middle", "Zemlak"], ["last", "Quitzon"], ["suffix", "JD"], ["created_at", "2021-09-14 16:30:24.395979"], ["updated_at", "2021-09-14 16:30:24.395979"]]
143284
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143285
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143286
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Peter"], ["middle", "Sawayn"], ["last", "Beier"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.400213"], ["updated_at", "2021-09-14 16:30:24.400213"]]
143287
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143288
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143289
+ WorksCited::Contributor Create (0.1ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["first", "Sam"], ["middle", "Altenwerth"], ["last", "Schroeder"], ["suffix", ""], ["created_at", "2021-09-14 16:30:24.403662"], ["updated_at", "2021-09-14 16:30:24.403662"]]
143290
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143291
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143292
+ WorksCited::Contributor Create (0.2ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["first", "Raymundo"], ["middle", ""], ["last", "Rowe"], ["suffix", "III"], ["created_at", "2021-09-14 16:30:24.407140"], ["updated_at", "2021-09-14 16:30:24.407140"]]
143293
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143294
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."id" = ? LIMIT ? [["contributor_role", "translator"], ["id", 4], ["LIMIT", 1]]
143295
+ TRANSACTION (0.3ms) rollback transaction
143296
+ TRANSACTION (0.1ms) begin transaction
143297
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143298
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Alias Sunt Totam Omnis"], ["description", "Molestias odio earum. Qui ea recusandae. Distinctio qui recusandae."], ["created_at", "2021-09-14 16:30:24.416036"], ["updated_at", "2021-09-14 16:30:24.416036"]]
143299
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143300
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143301
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "Butter In a Lordly Dish"], ["container_title", "Look to Windward"], ["publisher", "T & T Clark"], ["city", "West Ahmedmouth"], ["year", "1969"], ["pages", "pp. 145-6"], ["url", "http://zulauf-hoppe.name/alfonzo.stanton"], ["published_at", "2020-09-14 16:30:24.422964"], ["accessed_at", "2021-08-14 16:30:24.423100"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.424206"], ["updated_at", "2021-09-14 16:30:24.424206"]]
143302
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143303
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143304
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:24.429013"], ["updated_at", "2021-09-14 16:30:24.429013"]]
143305
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143306
+ TRANSACTION (0.2ms) rollback transaction
143307
+ TRANSACTION (0.2ms) begin transaction
143308
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143309
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Necessitatibus Sint Sit"], ["description", "Dignissimos vel vitae. Maxime velit et. Et earum ut.\nAnimi voluptas ut. Id ducimus eligendi. Aut accusantium impedit."], ["created_at", "2021-09-14 16:30:24.436665"], ["updated_at", "2021-09-14 16:30:24.436665"]]
143310
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143311
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143312
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Ego Dominus Tuus"], ["container_title", "A Darkling Plain"], ["publisher", "Bison Books"], ["city", "Kaneshahaven"], ["year", "2005"], ["pages", "pp. 145-6"], ["url", "http://boyer-satterfield.info/kina"], ["published_at", "2020-09-14 16:30:24.442671"], ["accessed_at", "2021-08-14 16:30:24.442767"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.444086"], ["updated_at", "2021-09-14 16:30:24.444086"]]
143313
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143314
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143315
+ WorksCited::Contributor Create (0.3ms) INSERT INTO "works_cited_contributors" ("works_cited_citation_id", "contributor_role", "first", "middle", "last", "suffix", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["works_cited_citation_id", 1], ["contributor_role", "author"], ["first", "Joseph"], ["middle", "James"], ["last", "Jackson"], ["suffix", "Jr."], ["created_at", "2021-09-14 16:30:24.448712"], ["updated_at", "2021-09-14 16:30:24.448712"]]
143316
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143317
+ TRANSACTION (0.3ms) rollback transaction
143318
+ TRANSACTION (0.2ms) begin transaction
143319
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143320
+ Doodad Create (0.7ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Alias"], ["description", "Aliquam quas minima. Provident et id. Rerum omnis minus."], ["created_at", "2021-09-14 16:30:24.467884"], ["updated_at", "2021-09-14 16:30:24.467884"]]
143321
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143322
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143323
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "The Far-Distant Oxus"], ["container_title", "The Last Enemy"], ["publisher", "Anova Books"], ["city", "Lake Loretaborough"], ["year", "1999"], ["pages", "pp. 145-6"], ["url", "http://kuhlman.info/deshawn"], ["published_at", "2020-09-14 16:30:24.476313"], ["accessed_at", "2021-08-14 16:30:24.476517"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.478573"], ["updated_at", "2021-09-14 16:30:24.478573"]]
143324
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143325
+ Started GET "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143326
+ Processing by WorksCited::CitationsController#show as HTML
143327
+ Parameters: {"id"=>"1"}
143328
+ WorksCited::Citation Load (0.5ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143329
+ Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.5ms | Allocations: 2229)
143330
+ TRANSACTION (0.3ms) rollback transaction
143331
+ TRANSACTION (0.2ms) begin transaction
143332
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143333
+ Doodad Create (0.6ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quo Velit Impedit Dolores Omnis"], ["description", "Qui voluptatibus praesentium. Adipisci fugiat doloremque. In aliquid dolores.\nEt cum odio. Laborum dolor et. Delectus dolorem dolore.\nQuo voluptatibus saepe. Iusto voluptatem fugit. Est quo nulla.\nEt sit autem. Et magnam aliquam. Possimus at sequi.\nQui officiis quisquam. Voluptates occaecati tempora. Voluptatibus adipisci qui."], ["created_at", "2021-09-14 16:30:24.542500"], ["updated_at", "2021-09-14 16:30:24.542500"]]
143334
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143335
+ Doodad Load (0.3ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143336
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143337
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "Time of our Darkness"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.550486"], ["updated_at", "2021-09-14 16:30:24.550486"]]
143338
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143339
+ Started GET "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143340
+ Processing by WorksCited::CitationsController#index as HTML
143341
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 1068)
143342
+ TRANSACTION (0.3ms) rollback transaction
143343
+ Started GET "/works_cited/citations/new" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143344
+ Processing by WorksCited::CitationsController#new as HTML
143345
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 1060)
143346
+ TRANSACTION (0.1ms) begin transaction
143347
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143348
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Qui Perspiciatis Eius"], ["description", "Tempora nemo a. Provident quis eos. Non ut unde.\nQuia ullam vero. Aliquid dolor odit. Explicabo quis maiores.\nConsequatur quae non. Magnam eos est. Corrupti saepe delectus.\nPlaceat est dignissimos. Recusandae blanditiis sed. Vel itaque qui."], ["created_at", "2021-09-14 16:30:24.583347"], ["updated_at", "2021-09-14 16:30:24.583347"]]
143349
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143350
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143351
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Far From the Madding Crowd"], ["container_title", "Frequent Hearses"], ["publisher", "Reed Publishing"], ["city", "East Adelaidachester"], ["year", "1990"], ["pages", "pp. 145-6"], ["url", "http://pouros.info/keenan"], ["published_at", "2020-09-14 16:30:24.590393"], ["accessed_at", "2021-08-14 16:30:24.590539"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.591853"], ["updated_at", "2021-09-14 16:30:24.591853"]]
143352
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143353
+ Started GET "/works_cited/citations/1/edit" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143354
+ Processing by WorksCited::CitationsController#edit as HTML
143355
+ Parameters: {"id"=>"1"}
143356
+ WorksCited::Citation Load (0.2ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143357
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms | Allocations: 988)
143358
+ TRANSACTION (0.2ms) rollback transaction
143359
+ TRANSACTION (0.2ms) begin transaction
143360
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143361
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Accusantium"], ["description", "Voluptas sed eaque. Nihil optio est. Nostrum distinctio et.\nSapiente autem et. Enim ab ea. Commodi odit magni.\nConsectetur non ut. Eaque et iusto. Distinctio ullam sit.\nLabore nesciunt eaque. Voluptates optio incidunt. Impedit est autem.\nEnim repellat adipisci. Quisquam sit dignissimos. Est temporibus sunt."], ["created_at", "2021-09-14 16:30:24.616202"], ["updated_at", "2021-09-14 16:30:24.616202"]]
143362
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143363
+ Started PATCH "/works_cited/preview" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143364
+ Processing by WorksCited::CitationsController#preview as HTML
143365
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"The Way of All Flesh", "record"=>"Doodad:1"}}
143366
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143367
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms | Allocations: 911)
143368
+ TRANSACTION (0.3ms) rollback transaction
143369
+ TRANSACTION (0.2ms) begin transaction
143370
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143371
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Possimus Libero Et"], ["description", "Animi facilis ab. Mollitia sint omnis. Et veniam et."], ["created_at", "2021-09-14 16:30:24.640612"], ["updated_at", "2021-09-14 16:30:24.640612"]]
143372
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143373
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143374
+ Processing by WorksCited::CitationsController#create as HTML
143375
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"A Swiftly Tilting Planet", "record"=>"Doodad:1"}}
143376
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143377
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms | Allocations: 1144)
143378
+ TRANSACTION (0.2ms) rollback transaction
143379
+ TRANSACTION (0.2ms) begin transaction
143380
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143381
+ Doodad Create (0.5ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Id Sit Doloribus Provident Modi"], ["description", "Ab ea rerum. Veritatis sunt aut. Inventore dolore ea.\nVoluptate animi ipsam. Est voluptates laboriosam. Officia animi ut.\nMollitia occaecati inventore. Porro eaque repellendus. Accusamus odio nesciunt."], ["created_at", "2021-09-14 16:30:24.659735"], ["updated_at", "2021-09-14 16:30:24.659735"]]
143382
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143383
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143384
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "The Stars' Tennis Balls"], ["container_title", "The Glory and the Dream"], ["publisher", "Del Rey Books"], ["city", "Port Delbertbury"], ["year", "1945"], ["pages", "pp. 145-6"], ["url", "http://ortiz-lebsack.info/larae"], ["published_at", "2020-09-14 16:30:24.667738"], ["accessed_at", "2021-08-14 16:30:24.667840"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.668943"], ["updated_at", "2021-09-14 16:30:24.668943"]]
143385
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143386
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143387
+ Processing by WorksCited::CitationsController#update as HTML
143388
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"New Title", "record_id"=>"1", "record_type"=>"Doodad"}, "id"=>"1"}
143389
+ WorksCited::Citation Load (0.1ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143390
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms | Allocations: 919)
143391
+ TRANSACTION (0.3ms) rollback transaction
143392
+ TRANSACTION (0.1ms) begin transaction
143393
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143394
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Beatae Et Molestiae"], ["description", "Dolorem alias ad. Eius sit exercitationem. Voluptates soluta nam.\nVoluptate est officiis. Natus ab nihil. Nihil sit qui.\nSunt aut qui. Fugit optio consequatur. Fugiat et eos.\nCupiditate iusto voluptatem. Beatae est officia. Quibusdam perspiciatis temporibus."], ["created_at", "2021-09-14 16:30:24.687923"], ["updated_at", "2021-09-14 16:30:24.687923"]]
143395
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143396
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143397
+ WorksCited::Citation Create (0.2ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "electronic"], ["media", "print"], ["title", "Tiger! Tiger!"], ["container_title", "Tender Is the Night"], ["publisher", "Carlton Publishing Group"], ["city", "Webermouth"], ["year", "1953"], ["pages", "pp. 145-6"], ["url", "http://maggio.info/dirk"], ["published_at", "2020-09-14 16:30:24.692631"], ["accessed_at", "2021-08-14 16:30:24.692729"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.693979"], ["updated_at", "2021-09-14 16:30:24.693979"]]
143398
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143399
+ Started DELETE "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143400
+ Processing by WorksCited::CitationsController#destroy as HTML
143401
+ Parameters: {"id"=>"1"}
143402
+ WorksCited::Citation Load (0.1ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143403
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms | Allocations: 936)
143404
+ TRANSACTION (0.2ms) rollback transaction
143405
+ TRANSACTION (0.1ms) begin transaction
143406
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143407
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "raphael@roob.name"], ["LIMIT", 1]]
143408
+ User Create (0.3ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "raphael@roob.name"], ["encrypted_password", "$2a$04$HkreX.ys/XXUnXt4v8keXuscscOLRMM6MXPuIj/e/zJrX3wOCZ.Be"], ["created_at", "2021-09-14 16:30:24.722170"], ["updated_at", "2021-09-14 16:30:24.722170"]]
143409
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143410
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143411
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Dicta Voluptatem"], ["description", "Quaerat commodi molestiae. Vitae ex ab. Eos ut sequi.\nEst voluptatem nulla. Dicta autem ea. Tempora aliquam debitis."], ["created_at", "2021-09-14 16:30:24.728992"], ["updated_at", "2021-09-14 16:30:24.728992"]]
143412
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143413
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143414
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "periodical"], ["media", "print"], ["title", "The Moving Finger"], ["container_title", "Beneath the Bleeding"], ["publisher", "Boydell & Brewer"], ["city", "Deliaborough"], ["year", "1944"], ["pages", "pp. 145-6"], ["url", "http://miller.biz/everette"], ["published_at", "2020-09-14 16:30:24.737681"], ["accessed_at", "2021-08-14 16:30:24.737909"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.739881"], ["updated_at", "2021-09-14 16:30:24.739881"]]
143415
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143416
+ Started GET "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143417
+ Processing by WorksCited::CitationsController#show as HTML
143418
+ Parameters: {"id"=>"1"}
143419
+ WorksCited::Citation Load (0.3ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143420
+ Rendering layout layouts/application.html.erb
143421
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/show.html.haml within layouts/application
143422
+ WorksCited::Contributor Exists? (0.5ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "editor"], ["LIMIT", 1]]
143423
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "compiler"], ["LIMIT", 1]]
143424
+ WorksCited::Contributor Exists? (0.2ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "translator"], ["LIMIT", 1]]
143425
+ WorksCited::Contributor Exists? (0.1ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? AND "works_cited_contributors"."contributor_role" = ? LIMIT ? [["works_cited_citation_id", 1], ["contributor_role", "author"], ["LIMIT", 1]]
143426
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_periodical.html.haml (Duration: 7.8ms | Allocations: 1104)
143427
+ WorksCited::Contributor Exists? (0.3ms) SELECT 1 AS one FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? LIMIT ? [["works_cited_citation_id", 1], ["LIMIT", 1]]
143428
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/show.html.haml within layouts/application (Duration: 25.0ms | Allocations: 7239)
143429
+ Rendered layout layouts/application.html.erb (Duration: 140.4ms | Allocations: 31353)
143430
+ Completed 200 OK in 151ms (Views: 145.1ms | ActiveRecord: 1.5ms | Allocations: 33497)
143431
+ TRANSACTION (0.4ms) rollback transaction
143432
+ TRANSACTION (0.2ms) begin transaction
143433
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143434
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nerissa.terry@jenkins-robel.info"], ["LIMIT", 1]]
143435
+ User Create (0.7ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "nerissa.terry@jenkins-robel.info"], ["encrypted_password", "$2a$04$8e/88kjkWvUwazpw5rmEYu/j2swvpIjbkDTSPnA8ovU5Rkbl2i.ri"], ["created_at", "2021-09-14 16:30:24.914438"], ["updated_at", "2021-09-14 16:30:24.914438"]]
143436
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143437
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143438
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Consequatur Doloribus Animi"], ["description", "Ex libero architecto. Ullam sit animi. Qui nihil voluptatum."], ["created_at", "2021-09-14 16:30:24.920086"], ["updated_at", "2021-09-14 16:30:24.920086"]]
143439
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143440
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143441
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143442
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "Blue Remembered Earth"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:24.924035"], ["updated_at", "2021-09-14 16:30:24.924035"]]
143443
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143444
+ Started GET "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143445
+ Processing by WorksCited::CitationsController#index as HTML
143446
+ Rendering layout layouts/application.html.erb
143447
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/index.html.haml within layouts/application
143448
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" INNER JOIN "works_cited_contributors" ON "works_cited_contributors"."contributor_role" = ? AND "works_cited_contributors"."works_cited_citation_id" = "works_cited_citations"."id" GROUP BY "works_cited_citations"."id" ORDER BY MIN(works_cited_contributors.last) ASC LIMIT ? OFFSET ? [["contributor_role", "author"], ["LIMIT", 25], ["OFFSET", 0]]
143449
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/index.html.haml within layouts/application (Duration: 14.3ms | Allocations: 4830)
143450
+ Rendered layout layouts/application.html.erb (Duration: 15.8ms | Allocations: 5282)
143451
+ Completed 200 OK in 22ms (Views: 16.5ms | ActiveRecord: 0.4ms | Allocations: 6461)
143452
+ TRANSACTION (0.3ms) rollback transaction
143453
+ TRANSACTION (0.2ms) begin transaction
143454
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143455
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kiersten@kuhic.net"], ["LIMIT", 1]]
143456
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "kiersten@kuhic.net"], ["encrypted_password", "$2a$04$w2n22IdBxfkuYh.1a9cgL.dr4y/.NktDMGJGlbwIRdaawHBSdwpMe"], ["created_at", "2021-09-14 16:30:24.967208"], ["updated_at", "2021-09-14 16:30:24.967208"]]
143457
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143458
+ Started GET "/works_cited/citations/new" for 127.0.0.1 at 2021-09-14 10:30:24 -0600
143459
+ Processing by WorksCited::CitationsController#new as HTML
143460
+ Doodad Exists? (0.4ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143461
+ Thing Exists? (0.1ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143462
+ Rendering layout layouts/application.html.erb
143463
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application
143464
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 34.8ms | Allocations: 12540)
143465
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 19.0ms | Allocations: 7154)
143466
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 27.8ms | Allocations: 9484)
143467
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 19.9ms | Allocations: 8015)
143468
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 25.8ms | Allocations: 8400)
143469
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 9.4ms | Allocations: 2996)
143470
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 2.5ms | Allocations: 901)
143471
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 14.0ms | Allocations: 6959)
143472
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 246.3ms | Allocations: 82080)
143473
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application (Duration: 249.8ms | Allocations: 83400)
143474
+ Rendered layout layouts/application.html.erb (Duration: 251.5ms | Allocations: 83851)
143475
+ Completed 200 OK in 373ms (Views: 252.3ms | ActiveRecord: 0.5ms | Allocations: 110152)
143476
+ TRANSACTION (0.2ms) rollback transaction
143477
+ TRANSACTION (0.1ms) begin transaction
143478
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143479
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lelia@von-murphy.io"], ["LIMIT", 1]]
143480
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "lelia@von-murphy.io"], ["encrypted_password", "$2a$04$71PcF9BCzkH9WELmhOHOcOb1UfEYqZt2C/CUlxEcMsrdJcNwuoO/C"], ["created_at", "2021-09-14 16:30:25.356495"], ["updated_at", "2021-09-14 16:30:25.356495"]]
143481
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143482
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143483
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Maiores Et Est"], ["description", "Enim id dolor. Sed omnis illo. Voluptas est voluptas."], ["created_at", "2021-09-14 16:30:25.361403"], ["updated_at", "2021-09-14 16:30:25.361403"]]
143484
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143485
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143486
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "Ah, Wilderness!"], ["container_title", "Cover Her Face"], ["publisher", "Pan Books"], ["city", "Fayborough"], ["year", "1972"], ["pages", "pp. 145-6"], ["url", "http://schulist.info/monte_rippin"], ["published_at", "2020-09-14 16:30:25.366628"], ["accessed_at", "2021-08-14 16:30:25.366779"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:25.368344"], ["updated_at", "2021-09-14 16:30:25.368344"]]
143487
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143488
+ Started GET "/works_cited/citations/1/edit" for 127.0.0.1 at 2021-09-14 10:30:25 -0600
143489
+ Processing by WorksCited::CitationsController#edit as HTML
143490
+ Parameters: {"id"=>"1"}
143491
+ WorksCited::Citation Load (0.2ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143492
+ Doodad Exists? (0.2ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143493
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads"
143494
+ Thing Exists? (0.2ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143495
+ Rendering layout layouts/application.html.erb
143496
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/edit.html.haml within layouts/application
143497
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143498
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 17.4ms | Allocations: 5805)
143499
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 17.3ms | Allocations: 5469)
143500
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 29.8ms | Allocations: 7577)
143501
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 20.4ms | Allocations: 6566)
143502
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 22.1ms | Allocations: 6888)
143503
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 5.5ms | Allocations: 1993)
143504
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 0.1ms | Allocations: 13)
143505
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 15.4ms | Allocations: 4575)
143506
+ WorksCited::Contributor Load (0.4ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1]]
143507
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 150.4ms | Allocations: 43238)
143508
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/edit.html.haml within layouts/application (Duration: 154.3ms | Allocations: 44480)
143509
+ Rendered layout layouts/application.html.erb (Duration: 155.9ms | Allocations: 44931)
143510
+ Completed 200 OK in 165ms (Views: 156.5ms | ActiveRecord: 1.5ms | Allocations: 46407)
143511
+ TRANSACTION (0.3ms) rollback transaction
143512
+ TRANSACTION (0.1ms) begin transaction
143513
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143514
+ User Exists? (17.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "romeo_kuphal@stehr.io"], ["LIMIT", 1]]
143515
+ User Create (0.5ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "romeo_kuphal@stehr.io"], ["encrypted_password", "$2a$04$mOmszs8kOLjpwuPbAHuab.HtuumJOiFLkBJsElfwmRnsIDQhtbaSq"], ["created_at", "2021-09-14 16:30:25.572822"], ["updated_at", "2021-09-14 16:30:25.572822"]]
143516
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143517
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143518
+ Doodad Create (0.2ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Illum Et Porro Omnis"], ["description", "Eum quaerat tenetur. Laborum suscipit voluptatem. Modi tempore minima."], ["created_at", "2021-09-14 16:30:25.579433"], ["updated_at", "2021-09-14 16:30:25.579433"]]
143519
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143520
+ Started PATCH "/works_cited/preview" for 127.0.0.1 at 2021-09-14 10:30:25 -0600
143521
+ Processing by WorksCited::CitationsController#preview as HTML
143522
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"No Country for Old Men", "record"=>"Doodad:1"}}
143523
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143524
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/preview.html.haml
143525
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/citation/_book.html.haml (Duration: 0.4ms | Allocations: 66)
143526
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/preview.html.haml (Duration: 4.5ms | Allocations: 1315)
143527
+ Completed 200 OK in 10ms (Views: 6.1ms | ActiveRecord: 0.2ms | Allocations: 2335)
143528
+ TRANSACTION (0.3ms) rollback transaction
143529
+ TRANSACTION (0.1ms) begin transaction
143530
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143531
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "retta_sauer@russel-mcdermott.co"], ["LIMIT", 1]]
143532
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "retta_sauer@russel-mcdermott.co"], ["encrypted_password", "$2a$04$UYicTPLPGBj9JzB2dRWj8eN/FYRU/RNCL1rGXkm0CufoVdDzuUnnq"], ["created_at", "2021-09-14 16:30:25.610069"], ["updated_at", "2021-09-14 16:30:25.610069"]]
143533
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143534
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_citations"
143535
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143536
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptas Accusantium Aut Eum"], ["description", "Nemo sit et. Qui nobis molestiae. Reiciendis tempore eius.\nNeque ullam placeat. Ut fugit distinctio. Illum laboriosam in.\nSuscipit labore ex. Rerum nihil inventore. At enim voluptatem.\nSint itaque voluptas. Qui aut id. Ut consequuntur doloremque.\nQuia consectetur et. Dolorum et omnis. A ipsam assumenda."], ["created_at", "2021-09-14 16:30:25.626179"], ["updated_at", "2021-09-14 16:30:25.626179"]]
143537
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143538
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:30:25 -0600
143539
+ Processing by WorksCited::CitationsController#create as HTML
143540
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"In a Dry Season", "record"=>"Doodad:1"}}
143541
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143542
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143543
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads"
143544
+ Thing Exists? (0.2ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143545
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143546
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "In a Dry Season"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:25.642811"], ["updated_at", "2021-09-14 16:30:25.642811"]]
143547
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143548
+ Redirected to http://www.example.com/works_cited/citations/1
143549
+ Completed 302 Found in 14ms (ActiveRecord: 1.5ms | Allocations: 1889)
143550
+  (0.3ms) SELECT COUNT(*) FROM "works_cited_citations"
143551
+ TRANSACTION (0.4ms) rollback transaction
143552
+ TRANSACTION (0.1ms) begin transaction
143553
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143554
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "humberto@boehm.com"], ["LIMIT", 1]]
143555
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "humberto@boehm.com"], ["encrypted_password", "$2a$04$CFuZdDOglstq27zFRaTPsur4Rh7vjjGFclVGeZpBO4.TJ/7faCbIa"], ["created_at", "2021-09-14 16:30:25.661076"], ["updated_at", "2021-09-14 16:30:25.661076"]]
143556
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143557
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143558
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Voluptas Hic Occaecati Facilis Molestias"], ["description", "Odio nostrum mollitia. Voluptas natus mollitia. Et et accusantium."], ["created_at", "2021-09-14 16:30:25.667955"], ["updated_at", "2021-09-14 16:30:25.667955"]]
143559
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143560
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:30:25 -0600
143561
+ Processing by WorksCited::CitationsController#create as HTML
143562
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"To Your Scattered Bodies Go", "record"=>"Doodad:1"}}
143563
+ Doodad Load (0.2ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143564
+ Doodad Exists? (0.2ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143565
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads"
143566
+ Thing Exists? (0.2ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143567
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143568
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "title", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["title", "To Your Scattered Bodies Go"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:25.682659"], ["updated_at", "2021-09-14 16:30:25.682659"]]
143569
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143570
+ Redirected to http://www.example.com/works_cited/citations/1
143571
+ Completed 302 Found in 12ms (ActiveRecord: 1.4ms | Allocations: 1847)
143572
+ WorksCited::Citation Load (0.4ms) SELECT "works_cited_citations".* FROM "works_cited_citations" ORDER BY "works_cited_citations"."id" DESC LIMIT ? [["LIMIT", 1]]
143573
+ TRANSACTION (0.4ms) rollback transaction
143574
+ TRANSACTION (0.2ms) begin transaction
143575
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143576
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kim@haag.com"], ["LIMIT", 1]]
143577
+ User Create (0.5ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "kim@haag.com"], ["encrypted_password", "$2a$04$o0gM9kSKtj.EzU9hwAhn8Obe3xzxITm8j1hiTrQR8joCOUuU5ZBF."], ["created_at", "2021-09-14 16:30:25.704277"], ["updated_at", "2021-09-14 16:30:25.704277"]]
143578
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143579
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_citations"
143580
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:30:25 -0600
143581
+ Processing by WorksCited::CitationsController#create as HTML
143582
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>nil, "record"=>nil}}
143583
+ Doodad Exists? (0.2ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143584
+ Thing Exists? (0.1ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143585
+ Rendering layout layouts/application.html.erb
143586
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application
143587
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 26.8ms | Allocations: 6628)
143588
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 20.5ms | Allocations: 6367)
143589
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 31.2ms | Allocations: 8538)
143590
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 26.9ms | Allocations: 7569)
143591
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 25.6ms | Allocations: 7909)
143592
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 10.5ms | Allocations: 2856)
143593
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 0.1ms | Allocations: 13)
143594
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 15.0ms | Allocations: 4419)
143595
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 182.1ms | Allocations: 50596)
143596
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application (Duration: 182.7ms | Allocations: 50687)
143597
+ Rendered layout layouts/application.html.erb (Duration: 184.2ms | Allocations: 51141)
143598
+ Completed 200 OK in 192ms (Views: 185.2ms | ActiveRecord: 0.3ms | Allocations: 52677)
143599
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_citations"
143600
+ TRANSACTION (0.3ms) rollback transaction
143601
+ TRANSACTION (0.2ms) begin transaction
143602
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143603
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "issac.farrell@wolff.com"], ["LIMIT", 1]]
143604
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "issac.farrell@wolff.com"], ["encrypted_password", "$2a$04$meot1kr7xvd8azsb5jm/0.REbOb6dDaW8.Dgy./PMlXLmKZO8FTbO"], ["created_at", "2021-09-14 16:30:25.920249"], ["updated_at", "2021-09-14 16:30:25.920249"]]
143605
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143606
+ Started POST "/works_cited/citations" for 127.0.0.1 at 2021-09-14 10:30:25 -0600
143607
+ Processing by WorksCited::CitationsController#create as HTML
143608
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>nil, "record"=>nil}}
143609
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143610
+ Thing Exists? (0.1ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143611
+ Rendering layout layouts/application.html.erb
143612
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application
143613
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 20.3ms | Allocations: 6581)
143614
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 21.6ms | Allocations: 6357)
143615
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 25.0ms | Allocations: 8528)
143616
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 24.2ms | Allocations: 7569)
143617
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 25.6ms | Allocations: 7909)
143618
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 10.7ms | Allocations: 2856)
143619
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 0.1ms | Allocations: 13)
143620
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 14.0ms | Allocations: 4394)
143621
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 164.3ms | Allocations: 50444)
143622
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/new.html.haml within layouts/application (Duration: 164.8ms | Allocations: 50535)
143623
+ Rendered layout layouts/application.html.erb (Duration: 165.9ms | Allocations: 50987)
143624
+ Completed 200 OK in 175ms (Views: 167.0ms | ActiveRecord: 0.5ms | Allocations: 52510)
143625
+ TRANSACTION (0.4ms) rollback transaction
143626
+ TRANSACTION (0.2ms) begin transaction
143627
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143628
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "penni@jast.org"], ["LIMIT", 1]]
143629
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "penni@jast.org"], ["encrypted_password", "$2a$04$vx0PQ91Wc4agn11b30UCrecxiDgNuxODDObO7dFPb6V1COpQBZ7z."], ["created_at", "2021-09-14 16:30:26.117057"], ["updated_at", "2021-09-14 16:30:26.117057"]]
143630
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143631
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143632
+ Doodad Create (0.2ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Laborum At Necessitatibus"], ["description", "Quisquam non enim. Quam tempora repellendus. Quod adipisci iste.\nCulpa consequatur qui. Sit velit qui. Natus eaque voluptas.\nTotam enim eius. Quo blanditiis ut. Explicabo nihil quasi.\nAut vitae sed. Totam rerum possimus. In minima doloremque."], ["created_at", "2021-09-14 16:30:26.125704"], ["updated_at", "2021-09-14 16:30:26.125704"]]
143633
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143634
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143635
+ WorksCited::Citation Create (0.6ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "tweet"], ["media", "print"], ["title", "Dance Dance Dance"], ["container_title", "No Highway"], ["publisher", "Mark Batty Publisher"], ["city", "Kyongchester"], ["year", "1962"], ["pages", "pp. 145-6"], ["url", "http://becker.net/anh.keebler"], ["published_at", "2020-09-14 16:30:26.132499"], ["accessed_at", "2021-08-14 16:30:26.132846"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:26.135923"], ["updated_at", "2021-09-14 16:30:26.135923"]]
143636
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143637
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:26 -0600
143638
+ Processing by WorksCited::CitationsController#update as HTML
143639
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"New Title", "record_id"=>"1", "record_type"=>"Doodad"}, "id"=>"1"}
143640
+ WorksCited::Citation Load (0.2ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143641
+ Doodad Exists? (0.4ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143642
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads"
143643
+ Thing Exists? (0.1ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143644
+ Unpermitted parameters: :record_id, :record_type
143645
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143646
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143647
+ WorksCited::Citation Update (0.4ms) UPDATE "works_cited_citations" SET "citation_type" = ?, "title" = ?, "updated_at" = ? WHERE "works_cited_citations"."id" = ? [["citation_type", "book"], ["title", "New Title"], ["updated_at", "2021-09-14 16:30:26.160682"], ["id", 1]]
143648
+ TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1
143649
+ Redirected to http://www.example.com/works_cited/citations/1
143650
+ Completed 302 Found in 17ms (ActiveRecord: 1.7ms | Allocations: 2120)
143651
+ WorksCited::Citation Load (0.2ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143652
+ TRANSACTION (0.3ms) rollback transaction
143653
+ TRANSACTION (0.2ms) begin transaction
143654
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143655
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "josiah@gleichner.org"], ["LIMIT", 1]]
143656
+ User Create (0.4ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "josiah@gleichner.org"], ["encrypted_password", "$2a$04$0WH55gVnXiY1By.naOuaB.BFHCiKbyHP0cIAZ7n3FFQMvBJYU7zdG"], ["created_at", "2021-09-14 16:30:26.180583"], ["updated_at", "2021-09-14 16:30:26.180583"]]
143657
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143658
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143659
+ Doodad Create (0.4ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Aut Pariatur Rerum Autem"], ["description", "Ducimus et quidem. Qui voluptatem dolor. Nostrum in voluptatem.\nFuga quos et. Omnis est facere. Alias placeat fugit.\nLabore qui aut. Beatae deleniti dolorum. Minima distinctio deserunt.\nQuaerat fugit et. Eos et et. Quia velit quod."], ["created_at", "2021-09-14 16:30:26.188902"], ["updated_at", "2021-09-14 16:30:26.188902"]]
143660
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143661
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143662
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "interview"], ["media", "print"], ["title", "Cover Her Face"], ["container_title", "A Farewell to Arms"], ["publisher", "Liberty Fund"], ["city", "Lake Libury"], ["year", "1959"], ["pages", "pp. 145-6"], ["url", "http://beier.org/jacquelynn"], ["published_at", "2020-09-14 16:30:26.196868"], ["accessed_at", "2021-08-14 16:30:26.197028"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:26.198459"], ["updated_at", "2021-09-14 16:30:26.198459"]]
143663
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143664
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:26 -0600
143665
+ Processing by WorksCited::CitationsController#update as HTML
143666
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>"New Title", "record_id"=>"1", "record_type"=>"Doodad"}, "id"=>"1"}
143667
+ WorksCited::Citation Load (0.1ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143668
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143669
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads"
143670
+ Thing Exists? (0.3ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143671
+ Unpermitted parameters: :record_id, :record_type
143672
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143673
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads" WHERE "doodads"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143674
+ WorksCited::Citation Update (0.3ms) UPDATE "works_cited_citations" SET "citation_type" = ?, "title" = ?, "updated_at" = ? WHERE "works_cited_citations"."id" = ? [["citation_type", "book"], ["title", "New Title"], ["updated_at", "2021-09-14 16:30:26.216199"], ["id", 1]]
143675
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143676
+ Redirected to http://www.example.com/works_cited/citations/1
143677
+ Completed 302 Found in 13ms (ActiveRecord: 1.5ms | Allocations: 2061)
143678
+ WorksCited::Citation Load (0.2ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143679
+ TRANSACTION (0.4ms) rollback transaction
143680
+ TRANSACTION (0.1ms) begin transaction
143681
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143682
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "albertine@rogahn.org"], ["LIMIT", 1]]
143683
+ User Create (0.5ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "albertine@rogahn.org"], ["encrypted_password", "$2a$04$ho7udlJYNeTfLgnGu.HJeO8.wMNagvgRrJMs57NgeJ3yBuAkRq2.i"], ["created_at", "2021-09-14 16:30:26.235204"], ["updated_at", "2021-09-14 16:30:26.235204"]]
143684
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143685
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143686
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Explicabo Corrupti"], ["description", "Quo quidem ab. Expedita mollitia consequuntur. Quia qui hic.\nIn non officia. Cupiditate corrupti sunt. Ut nemo est."], ["created_at", "2021-09-14 16:30:26.241045"], ["updated_at", "2021-09-14 16:30:26.241045"]]
143687
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143688
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143689
+ WorksCited::Citation Create (0.4ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "Edna O'Brien"], ["container_title", "The Man Within"], ["publisher", "Elsevier"], ["city", "Lehnerview"], ["year", "1964"], ["pages", "pp. 145-6"], ["url", "http://jast.biz/hugo"], ["published_at", "2020-09-14 16:30:26.247404"], ["accessed_at", "2021-08-14 16:30:26.247565"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:26.249245"], ["updated_at", "2021-09-14 16:30:26.249245"]]
143690
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143691
+ Started PATCH "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:26 -0600
143692
+ Processing by WorksCited::CitationsController#update as HTML
143693
+ Parameters: {"citation"=>{"citation_type"=>"book", "title"=>nil, "record"=>nil}, "id"=>"1"}
143694
+ WorksCited::Citation Load (0.2ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143695
+ Doodad Exists? (0.3ms) SELECT 1 AS one FROM "doodads" LIMIT ? [["LIMIT", 1]]
143696
+ Doodad Load (0.1ms) SELECT "doodads".* FROM "doodads"
143697
+ Thing Exists? (0.2ms) SELECT 1 AS one FROM "things" LIMIT ? [["LIMIT", 1]]
143698
+ Rendering layout layouts/application.html.erb
143699
+ Rendering /home/loren/Code/works_cited/app/views/works_cited/citations/edit.html.haml within layouts/application
143700
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_book.html.haml (Duration: 19.1ms | Allocations: 6614)
143701
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_periodical.html.haml (Duration: 21.6ms | Allocations: 6403)
143702
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_electronic.html.haml (Duration: 39.9ms | Allocations: 8583)
143703
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_interview.html.haml (Duration: 24.1ms | Allocations: 7594)
143704
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_email.html.haml (Duration: 22.9ms | Allocations: 7934)
143705
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_tweet.html.haml (Duration: 9.2ms | Allocations: 2877)
143706
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citation_types/fields/_default.html.haml (Duration: 0.1ms | Allocations: 13)
143707
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/contributors/_fields.html.haml (Duration: 14.3ms | Allocations: 4394)
143708
+ WorksCited::Contributor Load (0.2ms) SELECT "works_cited_contributors".* FROM "works_cited_contributors" WHERE "works_cited_contributors"."works_cited_citation_id" = ? ORDER BY "works_cited_contributors"."last" ASC, "works_cited_contributors"."first" ASC, "works_cited_contributors"."middle" ASC, "works_cited_contributors"."suffix" ASC, "works_cited_contributors"."handle" ASC [["works_cited_citation_id", 1]]
143709
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/_form.html.haml (Duration: 179.8ms | Allocations: 51129)
143710
+ Rendered /home/loren/Code/works_cited/app/views/works_cited/citations/edit.html.haml within layouts/application (Duration: 180.6ms | Allocations: 51272)
143711
+ Rendered layout layouts/application.html.erb (Duration: 181.6ms | Allocations: 51720)
143712
+ Completed 200 OK in 190ms (Views: 182.5ms | ActiveRecord: 0.9ms | Allocations: 53378)
143713
+ TRANSACTION (0.3ms) rollback transaction
143714
+ TRANSACTION (0.2ms) begin transaction
143715
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143716
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joi_douglas@greenholt-kirlin.io"], ["LIMIT", 1]]
143717
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "joi_douglas@greenholt-kirlin.io"], ["encrypted_password", "$2a$04$Aa0aLGWLBTeUFHgExbyyjuH3ublPeDOasDYSxPU1Yy2/4pqeQgFoq"], ["created_at", "2021-09-14 16:30:26.463045"], ["updated_at", "2021-09-14 16:30:26.463045"]]
143718
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143719
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143720
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Quis Et Autem Rerum"], ["description", "Dignissimos magnam sit. Voluptatem eos enim. Voluptatem corporis ipsa.\nEt expedita dolorem. Dolore consequatur sapiente. Praesentium qui aliquam.\nVeniam non magni. Architecto molestiae laudantium. Corrupti nihil illum.\nArchitecto veritatis voluptatem. Quia velit tenetur. Maiores enim laborum."], ["created_at", "2021-09-14 16:30:26.473301"], ["updated_at", "2021-09-14 16:30:26.473301"]]
143721
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143722
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143723
+ WorksCited::Citation Create (0.5ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "book"], ["media", "print"], ["title", "The Wealth of Nations"], ["container_title", "Nectar in a Sieve"], ["publisher", "Bison Books"], ["city", "Rosieshire"], ["year", "2008"], ["pages", "pp. 145-6"], ["url", "http://mckenzie.org/modesto"], ["published_at", "2020-09-14 16:30:26.480749"], ["accessed_at", "2021-08-14 16:30:26.480990"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:26.482707"], ["updated_at", "2021-09-14 16:30:26.482707"]]
143724
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143725
+  (0.2ms) SELECT COUNT(*) FROM "works_cited_citations"
143726
+ Started DELETE "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:26 -0600
143727
+ Processing by WorksCited::CitationsController#destroy as HTML
143728
+ Parameters: {"id"=>"1"}
143729
+ WorksCited::Citation Load (0.2ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143730
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143731
+ WorksCited::Citation Destroy (0.3ms) DELETE FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? [["id", 1]]
143732
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143733
+ Redirected to http://www.example.com/works_cited/citations
143734
+ Completed 302 Found in 6ms (ActiveRecord: 0.9ms | Allocations: 875)
143735
+  (0.5ms) SELECT COUNT(*) FROM "works_cited_citations"
143736
+ TRANSACTION (0.3ms) rollback transaction
143737
+ TRANSACTION (0.2ms) begin transaction
143738
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143739
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sierra@stehr.info"], ["LIMIT", 1]]
143740
+ User Create (0.6ms) INSERT INTO "users" ("admin", "email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["admin", 1], ["email", "sierra@stehr.info"], ["encrypted_password", "$2a$04$Cb38Ah3.BdhEk6cYcHzZhuTODvpPY/VXks37YlERfdP/i4.9knIMS"], ["created_at", "2021-09-14 16:30:26.514915"], ["updated_at", "2021-09-14 16:30:26.514915"]]
143741
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143742
+ TRANSACTION (0.2ms) SAVEPOINT active_record_1
143743
+ Doodad Create (0.3ms) INSERT INTO "doodads" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Laudantium"], ["description", "Autem vitae iusto. Molestias dolorum impedit. Nesciunt esse enim.\nQui delectus dolor. Nostrum et ad. Voluptates autem aut.\nDolor incidunt ea. Quam distinctio inventore. Molestias enim quibusdam."], ["created_at", "2021-09-14 16:30:26.522148"], ["updated_at", "2021-09-14 16:30:26.522148"]]
143744
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143745
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143746
+ WorksCited::Citation Create (0.3ms) INSERT INTO "works_cited_citations" ("citation_type", "media", "title", "container_title", "publisher", "city", "year", "pages", "url", "published_at", "accessed_at", "record_type", "record_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["citation_type", "email"], ["media", "print"], ["title", "A Time to Kill"], ["container_title", "The Little Foxes"], ["publisher", "Open University Press"], ["city", "New Karlberg"], ["year", "1986"], ["pages", "pp. 145-6"], ["url", "http://stoltenberg-schiller.name/alida.walter"], ["published_at", "2020-09-14 16:30:26.529638"], ["accessed_at", "2021-08-14 16:30:26.529786"], ["record_type", "Doodad"], ["record_id", 1], ["created_at", "2021-09-14 16:30:26.531093"], ["updated_at", "2021-09-14 16:30:26.531093"]]
143747
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143748
+ Started DELETE "/works_cited/citations/1" for 127.0.0.1 at 2021-09-14 10:30:26 -0600
143749
+ Processing by WorksCited::CitationsController#destroy as HTML
143750
+ Parameters: {"id"=>"1"}
143751
+ WorksCited::Citation Load (0.1ms) SELECT "works_cited_citations".* FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
143752
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
143753
+ WorksCited::Citation Destroy (0.3ms) DELETE FROM "works_cited_citations" WHERE "works_cited_citations"."id" = ? [["id", 1]]
143754
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
143755
+ Redirected to http://www.example.com/works_cited/citations
143756
+ Completed 302 Found in 5ms (ActiveRecord: 0.7ms | Allocations: 859)
143757
+ TRANSACTION (0.3ms) rollback transaction