tablo_connect 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 36a33873b4cfebfe6874e83841056e5a69e0269a
4
- data.tar.gz: bac56827c7ba0ac85a192b1af22045eef86461f7
3
+ metadata.gz: b024f7790404954ac14c778ac0fa9a3831ed8f17
4
+ data.tar.gz: b90e132e3e0f0315721d14b52a869f4edb291134
5
5
  SHA512:
6
- metadata.gz: 6240ddfeab4163647e2ff303ba973d071351eba901e9323b6a5b6c1ca18c9ecbdf81c2af8d7446b9a4267e17b7b719a799b7cf01ad4b66020e3d071be9468d11
7
- data.tar.gz: b954c3c7b96c10f1b685d6e10e8043f604d05f8f26d328922b48fc41e447fc98b5fcdbed0759fedc482bd33da71f4f683ae0b78cd3c4ece160ee7b3fed5d231c
6
+ metadata.gz: 2aff0b9c2e3590da31dce8801716da909068088af2c0ef07aec62d2632fe4c9784923fabbef5d7b51c3084197e9d64bbaba6cf2f46f1a71fc14beddd946cd184
7
+ data.tar.gz: 2f6c2c7682dd16603f15a9ad10373c61378c106096307a01ad6c9126b8a25ecc0c9300a117b54af5ddc3473e58128b668bbb3f8424d9c7500042ccca9bc4a985
data/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  ###Add to your Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'tablo_connect', git: 'https://github.com/tridnguyen/tablo_connect.git', branch: 'master'
12
+ gem 'tablo_connect'
13
13
  ```
14
14
 
15
15
  ###Add an initializer file in your rails project (tablo_connect.rb) with the following:
@@ -30,14 +30,17 @@ end
30
30
  ```bundle exec rake db:migrate```
31
31
 
32
32
  ###Start the server:
33
- ```rails s```
33
+ ```bundle exec rails s```
34
34
 
35
35
  ###View in your browser:
36
- ```http://localhost:3000/tablo```
36
+
37
+ ```
38
+ http://localhost:3000/tablo
39
+ ```
37
40
 
38
41
  ##Upcoming Features
39
42
  * Automate stripping commercials using comskip and MEncoder
40
43
 
41
44
  ##Contributing
42
45
  When submitting pull requests, please include rspecs and karma unit tests for any new code. Please do not submit pull requests
43
- until rspecs and karma unit tests are all green.
46
+ until rspecs and karma unit tests are all green.
@@ -1,4 +1,4 @@
1
1
  <div ng-switch="syncing">
2
- <a ng-click="syncRecordings()" ng-switch-when="false" class="btn btn-info">sync</a>
2
+ <a ng-click="syncRecordings()" ng-switch-when="false" class="btn btn-info">Sync with Tablo</a>
3
3
  <p ng-switch-when="true">Sync in progress. This may take some time depending on the number of recordings on your tablo.</p>
4
4
  </div>
@@ -61,7 +61,7 @@ module TabloConnect
61
61
  item.episode = details.try(:[], :recEpisode).try(:[], :jsonFromTribune).try(:[], :program).try(:[], :episodeNum)
62
62
  item.season = details.try(:[], :recEpisode).try(:[], :jsonFromTribune).try(:[], :program).try(:[], :seasonNum)
63
63
  item.rec_date = details.try(:[], :recEpisode).try(:[], :jsonForClient).try(:[], :airDate)
64
- item.air_date = details.try(:[], :recSeries).try(:[], :jsonForClient).try(:[], :originalAirDate)
64
+ item.air_date = details.try(:[], :recEpisode).try(:[], :jsonForClient).try(:[], :originalAirDate)
65
65
  item.image_id = details.try(:[], :recSeries).try(:[], :imageJson).try(:[], :images).try(:[], 0).try(:[], :imageID)
66
66
  item.save!
67
67
  end
@@ -1,3 +1,3 @@
1
1
  module TabloConnect
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -141,7 +141,7 @@ module TabloConnect
141
141
  end
142
142
 
143
143
  describe ".update_show" do
144
- let(:details) { {:recEpisode => {:jsonFromTribune => {:program => {:episodeNum => 63, :episodeTitle => "The Story of Mother Goose", :longDescription => "Mother Goose helps Red write a new song.", :origAirDate => "2010-07-12", :releaseDate => "2010-09-25", :releaseYear => 2010, :seasonNum => 1, :title => "Super Why!"}},:jsonForClient => {:airDate => "2015-10-18T19:30Z"}}, :recSeries => {:jsonForClient => {:originalAirDate => "2007-09-03"}, :imageJson => {:images => [{:type => "image", :imageID => 177446, :imageType => "series_3x4_small", :imageStyle => "thumbnail"}]}}} }
144
+ let(:details) { {:recEpisode => {:jsonFromTribune => {:program => {:episodeNum => 63, :episodeTitle => "The Story of Mother Goose", :longDescription => "Mother Goose helps Red write a new song.", :origAirDate => "2010-07-12", :releaseDate => "2010-09-25", :releaseYear => 2010, :seasonNum => 1, :title => "Super Why!"}},:jsonForClient => {:originalAirDate => "2000-10-01", :airDate => "2015-10-18T19:30Z"}}, :recSeries => {:jsonForClient => {:originalAirDate => "2007-09-03"}, :imageJson => {:images => [{:type => "image", :imageID => 177446, :imageType => "series_3x4_small", :imageStyle => "thumbnail"}]}}} }
145
145
 
146
146
  context "when the item is not found" do
147
147
  it "creates the item" do
@@ -195,7 +195,7 @@ module TabloConnect
195
195
  it "updates the air_date" do
196
196
  controller.send(:update_show, show.tablo_id, details)
197
197
  show.reload
198
- expect(show.air_date.strftime('%F')).to eq details[:recSeries][:jsonForClient][:originalAirDate]
198
+ expect(show.air_date.strftime('%F')).to eq details[:recEpisode][:jsonForClient][:originalAirDate]
199
199
  end
200
200
 
201
201
  it "updates the image_id" do
Binary file
@@ -5559,3 +5559,2638 @@ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5559
5559
  SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 00:18:41.406844"], ["id", 1]]
5560
5560
   (0.0ms) RELEASE SAVEPOINT active_record_1
5561
5561
   (0.8ms) rollback transaction
5562
+  (1.6ms) DELETE FROM "tablo_connect_movies";
5563
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
5564
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_movies';
5565
+  (1.1ms) DELETE FROM "tablo_connect_shows";
5566
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
5567
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
5568
+  (0.1ms) begin transaction
5569
+  (0.0ms) commit transaction
5570
+  (0.0ms) begin transaction
5571
+  (0.1ms) SAVEPOINT active_record_1
5572
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1 LIMIT 1
5573
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["title", "B starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.117839"], ["updated_at", "2015-11-09 05:18:24.117839"]]
5574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5575
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
5576
+ SQL (0.1ms) DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? [["tablo_id", 1]]
5577
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_movies"
5578
+  (0.5ms) rollback transaction
5579
+  (0.1ms) begin transaction
5580
+  (0.0ms) commit transaction
5581
+  (0.0ms) begin transaction
5582
+  (0.0ms) SAVEPOINT active_record_1
5583
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 2 LIMIT 1
5584
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 2], ["title", "B starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.142850"], ["updated_at", "2015-11-09 05:18:24.142850"]]
5585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5586
+  (0.0ms) SAVEPOINT active_record_1
5587
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 3 LIMIT 1
5588
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 3], ["title", "A starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.145028"], ["updated_at", "2015-11-09 05:18:24.145028"]]
5589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5590
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
5591
+  (0.7ms) rollback transaction
5592
+  (0.0ms) begin transaction
5593
+  (0.0ms) commit transaction
5594
+  (0.0ms) begin transaction
5595
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."id" ASC LIMIT 1
5596
+  (0.0ms) SAVEPOINT active_record_1
5597
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 0], ["created_at", "2015-11-09 05:18:24.155371"], ["updated_at", "2015-11-09 05:18:24.155371"]]
5598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5599
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 0 LIMIT 1
5600
+  (0.6ms) rollback transaction
5601
+  (0.0ms) begin transaction
5602
+  (0.0ms) commit transaction
5603
+  (0.0ms) begin transaction
5604
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" IS NULL LIMIT 1
5605
+  (0.0ms) rollback transaction
5606
+  (0.1ms) begin transaction
5607
+  (0.0ms) commit transaction
5608
+  (0.0ms) begin transaction
5609
+  (0.1ms) rollback transaction
5610
+  (0.0ms) begin transaction
5611
+  (0.1ms) commit transaction
5612
+  (0.0ms) begin transaction
5613
+  (0.0ms) rollback transaction
5614
+  (0.1ms) begin transaction
5615
+  (0.1ms) commit transaction
5616
+  (0.1ms) begin transaction
5617
+  (0.1ms) SAVEPOINT active_record_1
5618
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1
5619
+ SQL (0.4ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.259416"], ["updated_at", "2015-11-09 05:18:24.259416"]]
5620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5621
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
5622
+  (0.0ms) SAVEPOINT active_record_1
5623
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5624
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.263702"], ["id", 1]]
5625
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5626
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5627
+  (0.8ms) rollback transaction
5628
+  (0.0ms) begin transaction
5629
+  (0.0ms) commit transaction
5630
+  (0.0ms) begin transaction
5631
+  (0.0ms) SAVEPOINT active_record_1
5632
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 2 LIMIT 1
5633
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 2], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.269041"], ["updated_at", "2015-11-09 05:18:24.269041"]]
5634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5635
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 2]]
5636
+  (0.0ms) SAVEPOINT active_record_1
5637
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 2 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5638
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.271791"], ["id", 1]]
5639
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5640
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5641
+  (0.6ms) rollback transaction
5642
+  (0.1ms) begin transaction
5643
+  (0.0ms) commit transaction
5644
+  (0.0ms) begin transaction
5645
+  (0.0ms) SAVEPOINT active_record_1
5646
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 3 LIMIT 1
5647
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 3], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.277076"], ["updated_at", "2015-11-09 05:18:24.277076"]]
5648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5649
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 3]]
5650
+  (0.0ms) SAVEPOINT active_record_1
5651
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 3 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5652
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.279592"], ["id", 1]]
5653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5654
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5655
+  (0.8ms) rollback transaction
5656
+  (0.1ms) begin transaction
5657
+  (0.1ms) commit transaction
5658
+  (0.0ms) begin transaction
5659
+  (0.1ms) SAVEPOINT active_record_1
5660
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 4 LIMIT 1
5661
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 4], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.285385"], ["updated_at", "2015-11-09 05:18:24.285385"]]
5662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5663
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 4]]
5664
+  (0.0ms) SAVEPOINT active_record_1
5665
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 4 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5666
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.288663"], ["id", 1]]
5667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5668
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5669
+  (0.7ms) rollback transaction
5670
+  (0.1ms) begin transaction
5671
+  (0.0ms) commit transaction
5672
+  (0.0ms) begin transaction
5673
+  (0.0ms) SAVEPOINT active_record_1
5674
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 5 LIMIT 1
5675
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 5], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.294694"], ["updated_at", "2015-11-09 05:18:24.294694"]]
5676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5677
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 5]]
5678
+  (0.0ms) SAVEPOINT active_record_1
5679
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 5 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5680
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.297644"], ["id", 1]]
5681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5682
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5683
+  (0.7ms) rollback transaction
5684
+  (0.1ms) begin transaction
5685
+  (0.0ms) commit transaction
5686
+  (0.0ms) begin transaction
5687
+  (0.1ms) SAVEPOINT active_record_1
5688
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 6 LIMIT 1
5689
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 6], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.303126"], ["updated_at", "2015-11-09 05:18:24.303126"]]
5690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5691
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
5692
+  (0.0ms) SAVEPOINT active_record_1
5693
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 6 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5694
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.305783"], ["id", 1]]
5695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5696
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5697
+  (0.6ms) rollback transaction
5698
+  (0.1ms) begin transaction
5699
+  (0.0ms) commit transaction
5700
+  (0.0ms) begin transaction
5701
+  (0.0ms) SAVEPOINT active_record_1
5702
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7 LIMIT 1
5703
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 7], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.311917"], ["updated_at", "2015-11-09 05:18:24.311917"]]
5704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5705
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 7]]
5706
+  (0.0ms) SAVEPOINT active_record_1
5707
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 7 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5708
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.314727"], ["id", 1]]
5709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5710
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5711
+  (0.7ms) rollback transaction
5712
+  (0.0ms) begin transaction
5713
+  (0.1ms) commit transaction
5714
+  (0.0ms) begin transaction
5715
+  (0.0ms) SAVEPOINT active_record_1
5716
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 8 LIMIT 1
5717
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 8], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.320181"], ["updated_at", "2015-11-09 05:18:24.320181"]]
5718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5719
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 8]]
5720
+  (0.0ms) SAVEPOINT active_record_1
5721
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 8 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5722
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.322945"], ["id", 1]]
5723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5724
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
5725
+  (0.7ms) rollback transaction
5726
+  (0.0ms) begin transaction
5727
+  (0.0ms) commit transaction
5728
+  (0.0ms) begin transaction
5729
+  (0.0ms) SAVEPOINT active_record_1
5730
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 9 LIMIT 1
5731
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 9], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.328393"], ["updated_at", "2015-11-09 05:18:24.328393"]]
5732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5733
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
5734
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 9]]
5735
+  (0.0ms) SAVEPOINT active_record_1
5736
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 9 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5737
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.331437"], ["id", 1]]
5738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5739
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_shows"
5740
+  (0.7ms) rollback transaction
5741
+  (0.0ms) begin transaction
5742
+  (0.0ms) commit transaction
5743
+  (0.1ms) begin transaction
5744
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
5745
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
5746
+  (0.0ms) SAVEPOINT active_record_1
5747
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1234 LIMIT 1
5748
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 1234], ["created_at", "2015-11-09 05:18:24.336811"], ["updated_at", "2015-11-09 05:18:24.336811"]]
5749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5750
+  (0.0ms) SAVEPOINT active_record_1
5751
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1234 AND "tablo_connect_shows"."id" != 1) LIMIT 1
5752
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "season" = ?, "rec_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["season", 1], ["rec_date", "2015-10-18 19:30:00.000000"], ["image_id", 177446], ["updated_at", "2015-11-09 05:18:24.339047"], ["id", 1]]
5753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5754
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
5755
+  (0.7ms) rollback transaction
5756
+  (0.1ms) begin transaction
5757
+  (0.0ms) commit transaction
5758
+  (0.0ms) begin transaction
5759
+  (0.1ms) rollback transaction
5760
+  (0.0ms) begin transaction
5761
+  (0.1ms) commit transaction
5762
+  (0.0ms) begin transaction
5763
+ Processing by TabloConnect::SyncController#index as HTML
5764
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
5765
+  (0.1ms) rollback transaction
5766
+  (0.1ms) begin transaction
5767
+  (0.0ms) commit transaction
5768
+  (0.1ms) begin transaction
5769
+ Processing by TabloConnect::SyncController#index as HTML
5770
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
5771
+  (0.1ms) rollback transaction
5772
+  (0.0ms) begin transaction
5773
+  (0.0ms) commit transaction
5774
+  (0.0ms) begin transaction
5775
+ Processing by TabloConnect::SyncController#index as HTML
5776
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
5777
+  (0.0ms) rollback transaction
5778
+  (0.0ms) begin transaction
5779
+  (0.0ms) commit transaction
5780
+  (0.1ms) begin transaction
5781
+ Processing by TabloConnect::SyncController#index as HTML
5782
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
5783
+  (0.0ms) rollback transaction
5784
+  (0.0ms) begin transaction
5785
+  (0.0ms) commit transaction
5786
+  (0.1ms) begin transaction
5787
+  (0.0ms) SAVEPOINT active_record_1
5788
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 4 LIMIT 1
5789
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 4], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.364524"], ["updated_at", "2015-11-09 05:18:24.364524"]]
5790
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5791
+  (0.0ms) SAVEPOINT active_record_1
5792
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 10 LIMIT 1
5793
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 10], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.367052"], ["updated_at", "2015-11-09 05:18:24.367052"]]
5794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5795
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
5796
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
5797
+ SQL (0.1ms) DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10
5798
+  (0.7ms) rollback transaction
5799
+  (0.1ms) begin transaction
5800
+  (0.0ms) commit transaction
5801
+  (0.0ms) begin transaction
5802
+  (0.1ms) SAVEPOINT active_record_1
5803
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 5 LIMIT 1
5804
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 5], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.373478"], ["updated_at", "2015-11-09 05:18:24.373478"]]
5805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5806
+  (0.0ms) SAVEPOINT active_record_1
5807
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11 LIMIT 1
5808
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 11], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.376143"], ["updated_at", "2015-11-09 05:18:24.376143"]]
5809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5810
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
5811
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
5812
+ SQL (0.1ms) DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11
5813
+  (0.7ms) rollback transaction
5814
+  (0.1ms) begin transaction
5815
+  (0.0ms) commit transaction
5816
+  (0.0ms) begin transaction
5817
+  (0.1ms) SAVEPOINT active_record_1
5818
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 6 LIMIT 1
5819
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 6], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.383529"], ["updated_at", "2015-11-09 05:18:24.383529"]]
5820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5821
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
5822
+  (0.0ms) SAVEPOINT active_record_1
5823
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 6 AND "tablo_connect_movies"."id" != 1) LIMIT 1
5824
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:18:24.386303"], ["id", 1]]
5825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5826
+ TabloConnect::Movie Load (0.2ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
5827
+  (0.5ms) rollback transaction
5828
+  (0.0ms) begin transaction
5829
+  (0.0ms) commit transaction
5830
+  (0.0ms) begin transaction
5831
+  (0.1ms) SAVEPOINT active_record_1
5832
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 7 LIMIT 1
5833
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 7], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.391713"], ["updated_at", "2015-11-09 05:18:24.391713"]]
5834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5835
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
5836
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 7]]
5837
+  (0.1ms) SAVEPOINT active_record_1
5838
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 7 AND "tablo_connect_movies"."id" != 1) LIMIT 1
5839
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:18:24.394957"], ["id", 1]]
5840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5841
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_movies"
5842
+  (0.7ms) rollback transaction
5843
+  (0.0ms) begin transaction
5844
+  (0.0ms) commit transaction
5845
+  (0.0ms) begin transaction
5846
+  (0.1ms) SAVEPOINT active_record_1
5847
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8 LIMIT 1
5848
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 8], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.400111"], ["updated_at", "2015-11-09 05:18:24.400111"]]
5849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5850
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 8]]
5851
+  (0.0ms) SAVEPOINT active_record_1
5852
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 8 AND "tablo_connect_movies"."id" != 1) LIMIT 1
5853
+ SQL (0.2ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:18:24.402739"], ["id", 1]]
5854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5855
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
5856
+  (0.8ms) rollback transaction
5857
+  (0.1ms) begin transaction
5858
+  (0.0ms) commit transaction
5859
+  (0.0ms) begin transaction
5860
+  (0.0ms) SAVEPOINT active_record_1
5861
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 9 LIMIT 1
5862
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 9], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.407731"], ["updated_at", "2015-11-09 05:18:24.407731"]]
5863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5864
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 9]]
5865
+  (0.0ms) SAVEPOINT active_record_1
5866
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 9 AND "tablo_connect_movies"."id" != 1) LIMIT 1
5867
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:18:24.410326"], ["id", 1]]
5868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5869
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
5870
+  (0.6ms) rollback transaction
5871
+  (0.1ms) begin transaction
5872
+  (0.0ms) commit transaction
5873
+  (0.0ms) begin transaction
5874
+  (0.0ms) SAVEPOINT active_record_1
5875
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10 LIMIT 1
5876
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 10], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.415518"], ["updated_at", "2015-11-09 05:18:24.415518"]]
5877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5878
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 10]]
5879
+  (0.1ms) SAVEPOINT active_record_1
5880
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 10 AND "tablo_connect_movies"."id" != 1) LIMIT 1
5881
+ SQL (0.2ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:18:24.418079"], ["id", 1]]
5882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5883
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
5884
+  (0.7ms) rollback transaction
5885
+  (0.0ms) begin transaction
5886
+  (0.0ms) commit transaction
5887
+  (0.0ms) begin transaction
5888
+  (0.0ms) SAVEPOINT active_record_1
5889
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 11 LIMIT 1
5890
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 11], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.422926"], ["updated_at", "2015-11-09 05:18:24.422926"]]
5891
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5892
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 11]]
5893
+  (0.0ms) SAVEPOINT active_record_1
5894
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 11 AND "tablo_connect_movies"."id" != 1) LIMIT 1
5895
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:18:24.426074"], ["id", 1]]
5896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5897
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
5898
+  (0.7ms) rollback transaction
5899
+  (0.1ms) begin transaction
5900
+  (0.0ms) commit transaction
5901
+  (0.0ms) begin transaction
5902
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
5903
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
5904
+  (0.0ms) SAVEPOINT active_record_1
5905
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1234 LIMIT 1
5906
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 1234], ["created_at", "2015-11-09 05:18:24.431746"], ["updated_at", "2015-11-09 05:18:24.431746"]]
5907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5908
+  (0.0ms) SAVEPOINT active_record_1
5909
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1234 AND "tablo_connect_movies"."id" != 1) LIMIT 1
5910
+ SQL (0.2ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:18:24.433475"], ["id", 1]]
5911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5912
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
5913
+  (0.6ms) rollback transaction
5914
+  (0.1ms) begin transaction
5915
+  (0.0ms) commit transaction
5916
+  (0.0ms) begin transaction
5917
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" IS NULL LIMIT 1
5918
+  (0.1ms) rollback transaction
5919
+  (0.1ms) begin transaction
5920
+  (0.0ms) commit transaction
5921
+  (0.1ms) begin transaction
5922
+  (0.1ms) SAVEPOINT active_record_1
5923
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 12 LIMIT 1
5924
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 12], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.445736"], ["updated_at", "2015-11-09 05:18:24.445736"]]
5925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5926
+  (0.0ms) SAVEPOINT active_record_1
5927
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 13 LIMIT 1
5928
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 13], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.448367"], ["updated_at", "2015-11-09 05:18:24.448367"]]
5929
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5930
+  (0.0ms) SAVEPOINT active_record_1
5931
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 14 LIMIT 1
5932
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 14], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.450883"], ["updated_at", "2015-11-09 05:18:24.450883"]]
5933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5934
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
5935
+ TabloConnect::Show Load (0.2ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
5936
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
5937
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
5938
+  (1.0ms) rollback transaction
5939
+  (0.1ms) begin transaction
5940
+  (0.0ms) commit transaction
5941
+  (0.0ms) begin transaction
5942
+  (0.1ms) SAVEPOINT active_record_1
5943
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 15 LIMIT 1
5944
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 15], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.458692"], ["updated_at", "2015-11-09 05:18:24.458692"]]
5945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5946
+  (0.0ms) SAVEPOINT active_record_1
5947
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 16 LIMIT 1
5948
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 16], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.461846"], ["updated_at", "2015-11-09 05:18:24.461846"]]
5949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5950
+  (0.0ms) SAVEPOINT active_record_1
5951
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 17 LIMIT 1
5952
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 17], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.464297"], ["updated_at", "2015-11-09 05:18:24.464297"]]
5953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5954
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
5955
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
5956
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
5957
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
5958
+  (0.7ms) rollback transaction
5959
+  (0.1ms) begin transaction
5960
+  (0.0ms) commit transaction
5961
+  (0.0ms) begin transaction
5962
+  (0.0ms) SAVEPOINT active_record_1
5963
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 18 LIMIT 1
5964
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 18], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.473716"], ["updated_at", "2015-11-09 05:18:24.473716"]]
5965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5966
+  (0.0ms) SAVEPOINT active_record_1
5967
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 19 LIMIT 1
5968
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 19], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.476122"], ["updated_at", "2015-11-09 05:18:24.476122"]]
5969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5970
+  (0.0ms) SAVEPOINT active_record_1
5971
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 20 LIMIT 1
5972
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 20], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.478548"], ["updated_at", "2015-11-09 05:18:24.478548"]]
5973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5974
+  (0.2ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
5975
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
5976
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
5977
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
5978
+  (0.7ms) rollback transaction
5979
+  (0.0ms) begin transaction
5980
+  (0.1ms) commit transaction
5981
+  (0.0ms) begin transaction
5982
+  (0.0ms) SAVEPOINT active_record_1
5983
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 21 LIMIT 1
5984
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 21], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.485011"], ["updated_at", "2015-11-09 05:18:24.485011"]]
5985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5986
+  (0.0ms) SAVEPOINT active_record_1
5987
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 22 LIMIT 1
5988
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 22], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.487378"], ["updated_at", "2015-11-09 05:18:24.487378"]]
5989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5990
+  (0.0ms) SAVEPOINT active_record_1
5991
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 23 LIMIT 1
5992
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 23], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.489615"], ["updated_at", "2015-11-09 05:18:24.489615"]]
5993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5994
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
5995
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
5996
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
5997
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
5998
+  (0.8ms) rollback transaction
5999
+  (0.1ms) begin transaction
6000
+  (0.0ms) commit transaction
6001
+  (0.1ms) begin transaction
6002
+  (0.1ms) SAVEPOINT active_record_1
6003
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 24 LIMIT 1
6004
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 24], ["show", "Alf"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.496165"], ["updated_at", "2015-11-09 05:18:24.496165"]]
6005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6006
+  (0.0ms) SAVEPOINT active_record_1
6007
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 25 LIMIT 1
6008
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 25], ["show", "Alf"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.498649"], ["updated_at", "2015-11-09 05:18:24.498649"]]
6009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6010
+  (0.0ms) SAVEPOINT active_record_1
6011
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 26 LIMIT 1
6012
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 26], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.500815"], ["updated_at", "2015-11-09 05:18:24.500815"]]
6013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6014
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? [["show", "Alf"]]
6015
+  (0.8ms) rollback transaction
6016
+  (0.1ms) begin transaction
6017
+  (0.1ms) commit transaction
6018
+  (0.0ms) begin transaction
6019
+  (0.0ms) SAVEPOINT active_record_1
6020
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 27 LIMIT 1
6021
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 27], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.505971"], ["updated_at", "2015-11-09 05:18:24.505971"]]
6022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6023
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6024
+  (0.5ms) rollback transaction
6025
+  (0.0ms) begin transaction
6026
+  (0.0ms) commit transaction
6027
+  (0.0ms) begin transaction
6028
+  (0.0ms) SAVEPOINT active_record_1
6029
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28 LIMIT 1
6030
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 28], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.510810"], ["updated_at", "2015-11-09 05:18:24.510810"]]
6031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6032
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6033
+  (0.5ms) rollback transaction
6034
+  (0.1ms) begin transaction
6035
+  (0.0ms) commit transaction
6036
+  (0.0ms) begin transaction
6037
+  (0.1ms) SAVEPOINT active_record_1
6038
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 29 LIMIT 1
6039
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 29], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.515542"], ["updated_at", "2015-11-09 05:18:24.515542"]]
6040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6041
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6042
+ SQL (0.1ms) DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? [["tablo_id", 29]]
6043
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6044
+  (0.4ms) rollback transaction
6045
+  (0.0ms) begin transaction
6046
+  (0.0ms) commit transaction
6047
+  (0.0ms) begin transaction
6048
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" ORDER BY "tablo_connect_shows"."id" ASC LIMIT 1
6049
+  (0.0ms) SAVEPOINT active_record_1
6050
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 0], ["created_at", "2015-11-09 05:18:24.522323"], ["updated_at", "2015-11-09 05:18:24.522323"]]
6051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6052
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 0 LIMIT 1
6053
+  (0.4ms) rollback transaction
6054
+  (0.1ms) begin transaction
6055
+  (0.0ms) commit transaction
6056
+  (0.0ms) begin transaction
6057
+  (0.1ms) SAVEPOINT active_record_1
6058
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 30 LIMIT 1
6059
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 30], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.530596"], ["updated_at", "2015-11-09 05:18:24.530596"]]
6060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6061
+ Processing by TabloConnect::ShowsController#index as HTML
6062
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
6063
+  (0.6ms) rollback transaction
6064
+  (0.1ms) begin transaction
6065
+  (0.0ms) commit transaction
6066
+  (0.0ms) begin transaction
6067
+  (0.1ms) SAVEPOINT active_record_1
6068
+ TabloConnect::Show Exists (0.3ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 31 LIMIT 1
6069
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 31], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.538221"], ["updated_at", "2015-11-09 05:18:24.538221"]]
6070
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6071
+ Processing by TabloConnect::ShowsController#index as HTML
6072
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6073
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Angle of Attack"]]
6074
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
6075
+  (0.5ms) rollback transaction
6076
+  (0.1ms) begin transaction
6077
+  (0.0ms) commit transaction
6078
+  (0.1ms) begin transaction
6079
+  (0.1ms) SAVEPOINT active_record_1
6080
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 32 LIMIT 1
6081
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 32], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.546061"], ["updated_at", "2015-11-09 05:18:24.546061"]]
6082
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6083
+ Processing by TabloConnect::ShowsController#index as HTML
6084
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6085
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Angle of Attack"]]
6086
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms)
6087
+  (0.6ms) rollback transaction
6088
+  (0.1ms) begin transaction
6089
+  (0.0ms) commit transaction
6090
+  (0.0ms) begin transaction
6091
+  (0.0ms) SAVEPOINT active_record_1
6092
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 33 LIMIT 1
6093
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 33], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.553873"], ["updated_at", "2015-11-09 05:18:24.553873"]]
6094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6095
+ Processing by TabloConnect::ShowsController#episodes as HTML
6096
+ Parameters: {"show"=>"Angle of Attack"}
6097
+ TabloConnect::Show Load (0.2ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."season" ASC, "tablo_connect_shows"."episode" ASC, "tablo_connect_shows"."rec_date" ASC, "tablo_connect_shows"."title" ASC [["show", "Angle of Attack"]]
6098
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
6099
+  (0.5ms) rollback transaction
6100
+  (0.0ms) begin transaction
6101
+  (0.0ms) commit transaction
6102
+  (0.0ms) begin transaction
6103
+  (0.0ms) SAVEPOINT active_record_1
6104
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 34 LIMIT 1
6105
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 34], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.561748"], ["updated_at", "2015-11-09 05:18:24.561748"]]
6106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6107
+ Processing by TabloConnect::ShowsController#episodes as HTML
6108
+ Parameters: {"show"=>"Angle of Attack"}
6109
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."season" ASC, "tablo_connect_shows"."episode" ASC, "tablo_connect_shows"."rec_date" ASC, "tablo_connect_shows"."title" ASC [["show", "Angle of Attack"]]
6110
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
6111
+  (0.5ms) rollback transaction
6112
+  (0.1ms) begin transaction
6113
+  (0.1ms) commit transaction
6114
+  (0.0ms) begin transaction
6115
+  (0.0ms) SAVEPOINT active_record_1
6116
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 35 LIMIT 1
6117
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 35], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.569245"], ["updated_at", "2015-11-09 05:18:24.569245"]]
6118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6119
+ Processing by TabloConnect::ShowsController#episodes as HTML
6120
+ Parameters: {"show"=>"Angle of Attack"}
6121
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
6122
+  (0.5ms) rollback transaction
6123
+  (0.1ms) begin transaction
6124
+  (0.0ms) commit transaction
6125
+  (0.0ms) begin transaction
6126
+  (0.0ms) SAVEPOINT active_record_1
6127
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 12 LIMIT 1
6128
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 12], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.575732"], ["updated_at", "2015-11-09 05:18:24.575732"]]
6129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6130
+ Processing by TabloConnect::MoviesController#index as HTML
6131
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
6132
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
6133
+  (0.5ms) rollback transaction
6134
+  (0.1ms) begin transaction
6135
+  (0.0ms) commit transaction
6136
+  (0.1ms) begin transaction
6137
+  (0.0ms) SAVEPOINT active_record_1
6138
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 13 LIMIT 1
6139
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 13], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.582869"], ["updated_at", "2015-11-09 05:18:24.582869"]]
6140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6141
+ Processing by TabloConnect::MoviesController#index as HTML
6142
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
6143
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
6144
+  (0.4ms) rollback transaction
6145
+  (0.1ms) begin transaction
6146
+  (0.0ms) commit transaction
6147
+  (0.0ms) begin transaction
6148
+  (0.0ms) SAVEPOINT active_record_1
6149
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 14 LIMIT 1
6150
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 14], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.589527"], ["updated_at", "2015-11-09 05:18:24.589527"]]
6151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6152
+ Processing by TabloConnect::MoviesController#index as HTML
6153
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
6154
+  (0.5ms) rollback transaction
6155
+  (0.1ms) begin transaction
6156
+  (0.0ms) commit transaction
6157
+  (0.0ms) begin transaction
6158
+  (0.1ms) SAVEPOINT active_record_1
6159
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 36 LIMIT 1
6160
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 36], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.596684"], ["updated_at", "2015-11-09 05:18:24.596684"]]
6161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6162
+  (0.5ms) rollback transaction
6163
+  (0.0ms) begin transaction
6164
+  (0.0ms) commit transaction
6165
+  (0.0ms) begin transaction
6166
+  (0.0ms) SAVEPOINT active_record_1
6167
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 37 LIMIT 1
6168
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 37], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.601840"], ["updated_at", "2015-11-09 05:18:24.601840"]]
6169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6170
+  (0.4ms) rollback transaction
6171
+  (0.0ms) begin transaction
6172
+  (0.0ms) commit transaction
6173
+  (0.0ms) begin transaction
6174
+  (0.0ms) SAVEPOINT active_record_1
6175
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 38 LIMIT 1
6176
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 38], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.606584"], ["updated_at", "2015-11-09 05:18:24.606584"]]
6177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6178
+  (0.4ms) rollback transaction
6179
+  (0.1ms) begin transaction
6180
+  (0.0ms) commit transaction
6181
+  (0.0ms) begin transaction
6182
+  (0.0ms) SAVEPOINT active_record_1
6183
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 39 LIMIT 1
6184
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 39], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.611644"], ["updated_at", "2015-11-09 05:18:24.611644"]]
6185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6186
+  (0.4ms) rollback transaction
6187
+  (0.1ms) begin transaction
6188
+  (0.0ms) commit transaction
6189
+  (0.1ms) begin transaction
6190
+  (0.0ms) SAVEPOINT active_record_1
6191
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 40 LIMIT 1
6192
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 40], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.617777"], ["updated_at", "2015-11-09 05:18:24.617777"]]
6193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6194
+  (0.5ms) rollback transaction
6195
+  (0.1ms) begin transaction
6196
+  (0.0ms) commit transaction
6197
+  (0.0ms) begin transaction
6198
+  (0.0ms) SAVEPOINT active_record_1
6199
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 41 LIMIT 1
6200
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 41], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.623745"], ["updated_at", "2015-11-09 05:18:24.623745"]]
6201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6202
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 41]]
6203
+  (0.4ms) rollback transaction
6204
+  (0.1ms) begin transaction
6205
+  (0.0ms) commit transaction
6206
+  (0.0ms) begin transaction
6207
+  (0.1ms) SAVEPOINT active_record_1
6208
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 42 LIMIT 1
6209
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 42], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.633152"], ["updated_at", "2015-11-09 05:18:24.633152"]]
6210
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6211
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 99999]]
6212
+  (0.5ms) rollback transaction
6213
+  (0.0ms) begin transaction
6214
+  (0.1ms) commit transaction
6215
+  (0.0ms) begin transaction
6216
+  (0.0ms) SAVEPOINT active_record_1
6217
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 43 LIMIT 1
6218
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 43], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.638958"], ["updated_at", "2015-11-09 05:18:24.638958"]]
6219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6220
+  (0.4ms) rollback transaction
6221
+  (0.1ms) begin transaction
6222
+  (0.0ms) commit transaction
6223
+  (0.0ms) begin transaction
6224
+  (0.0ms) SAVEPOINT active_record_1
6225
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 44 LIMIT 1
6226
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 44], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.644368"], ["updated_at", "2015-11-09 05:18:24.644368"]]
6227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6228
+  (0.5ms) rollback transaction
6229
+  (0.0ms) begin transaction
6230
+  (0.0ms) commit transaction
6231
+  (0.0ms) begin transaction
6232
+  (0.0ms) SAVEPOINT active_record_1
6233
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 45 LIMIT 1
6234
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 45], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.649465"], ["updated_at", "2015-11-09 05:18:24.649465"]]
6235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6236
+  (0.4ms) rollback transaction
6237
+  (0.1ms) begin transaction
6238
+  (0.0ms) commit transaction
6239
+  (0.0ms) begin transaction
6240
+  (0.1ms) SAVEPOINT active_record_1
6241
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 46 LIMIT 1
6242
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 46], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.655306"], ["updated_at", "2015-11-09 05:18:24.655306"]]
6243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6244
+ Processing by TabloConnect::CopyController#index as HTML
6245
+ Parameters: {"tablo_id"=>"46", "type"=>"show"}
6246
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 46]]
6247
+  (0.0ms) SAVEPOINT active_record_1
6248
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 46 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6249
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:18:24.659855"], ["id", 1]]
6250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6251
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
6252
+  (0.6ms) rollback transaction
6253
+  (0.0ms) begin transaction
6254
+  (0.0ms) commit transaction
6255
+  (0.0ms) begin transaction
6256
+  (0.0ms) SAVEPOINT active_record_1
6257
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 47 LIMIT 1
6258
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 47], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.664888"], ["updated_at", "2015-11-09 05:18:24.664888"]]
6259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6260
+ Processing by TabloConnect::CopyController#index as HTML
6261
+ Parameters: {"tablo_id"=>"47", "type"=>"show"}
6262
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 47]]
6263
+  (0.0ms) SAVEPOINT active_record_1
6264
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 47 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6265
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:18:24.668729"], ["id", 1]]
6266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6267
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.5ms)
6268
+  (0.7ms) rollback transaction
6269
+  (0.0ms) begin transaction
6270
+  (0.0ms) commit transaction
6271
+  (0.0ms) begin transaction
6272
+  (0.0ms) SAVEPOINT active_record_1
6273
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 48 LIMIT 1
6274
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 48], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.673864"], ["updated_at", "2015-11-09 05:18:24.673864"]]
6275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6276
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 48]]
6277
+ Processing by TabloConnect::CopyController#index as HTML
6278
+ Parameters: {"tablo_id"=>"48", "type"=>"show"}
6279
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 48]]
6280
+  (0.0ms) SAVEPOINT active_record_1
6281
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 48 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6282
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:18:24.677672"], ["id", 1]]
6283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6284
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.4ms)
6285
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6286
+  (0.9ms) rollback transaction
6287
+  (0.0ms) begin transaction
6288
+  (0.0ms) commit transaction
6289
+  (0.0ms) begin transaction
6290
+  (0.0ms) SAVEPOINT active_record_1
6291
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 49 LIMIT 1
6292
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 49], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.683005"], ["updated_at", "2015-11-09 05:18:24.683005"]]
6293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6294
+ Processing by TabloConnect::CopyController#index as HTML
6295
+ Parameters: {"tablo_id"=>"49", "type"=>"show"}
6296
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 49]]
6297
+  (0.0ms) SAVEPOINT active_record_1
6298
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 49 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6299
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:18:24.687024"], ["id", 1]]
6300
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6301
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
6302
+  (0.6ms) rollback transaction
6303
+  (0.1ms) begin transaction
6304
+  (0.0ms) commit transaction
6305
+  (0.0ms) begin transaction
6306
+  (0.0ms) SAVEPOINT active_record_1
6307
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 50 LIMIT 1
6308
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 50], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.692706"], ["updated_at", "2015-11-09 05:18:24.692706"]]
6309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6310
+ Processing by TabloConnect::CopyController#index as HTML
6311
+ Parameters: {"tablo_id"=>"99999", "type"=>"some_type"}
6312
+ Filter chain halted as :set_item rendered or redirected
6313
+ Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
6314
+  (0.5ms) rollback transaction
6315
+  (0.2ms) begin transaction
6316
+  (0.0ms) commit transaction
6317
+  (0.0ms) begin transaction
6318
+  (0.1ms) SAVEPOINT active_record_1
6319
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 51 LIMIT 1
6320
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 51], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.699943"], ["updated_at", "2015-11-09 05:18:24.699943"]]
6321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6322
+  (0.0ms) SAVEPOINT active_record_1
6323
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 51 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6324
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:18:24.702335"], ["id", 1]]
6325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6326
+  (0.0ms) SAVEPOINT active_record_1
6327
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 51 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6328
+ SQL (0.0ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 0], ["updated_at", "2015-11-09 05:18:24.703997"], ["id", 1]]
6329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6330
+  (0.7ms) rollback transaction
6331
+  (0.1ms) begin transaction
6332
+  (0.0ms) commit transaction
6333
+  (0.0ms) begin transaction
6334
+  (0.0ms) SAVEPOINT active_record_1
6335
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 52 LIMIT 1
6336
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 52], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.708584"], ["updated_at", "2015-11-09 05:18:24.708584"]]
6337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6338
+  (0.0ms) SAVEPOINT active_record_1
6339
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 52 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6340
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 2], ["updated_at", "2015-11-09 05:18:24.710884"], ["id", 1]]
6341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6342
+  (0.7ms) rollback transaction
6343
+  (0.1ms) begin transaction
6344
+  (0.0ms) commit transaction
6345
+  (0.0ms) begin transaction
6346
+  (0.0ms) SAVEPOINT active_record_1
6347
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 53 LIMIT 1
6348
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 53], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.715831"], ["updated_at", "2015-11-09 05:18:24.715831"]]
6349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6350
+  (0.0ms) SAVEPOINT active_record_1
6351
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 53 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6352
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:18:24.718301"], ["id", 1]]
6353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6354
+  (0.7ms) rollback transaction
6355
+  (0.0ms) begin transaction
6356
+  (0.0ms) commit transaction
6357
+  (0.0ms) begin transaction
6358
+  (0.0ms) SAVEPOINT active_record_1
6359
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 54 LIMIT 1
6360
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 54], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.722752"], ["updated_at", "2015-11-09 05:18:24.722752"]]
6361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6362
+  (0.0ms) SAVEPOINT active_record_1
6363
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 54 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6364
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 2], ["updated_at", "2015-11-09 05:18:24.725584"], ["id", 1]]
6365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6366
+  (0.7ms) rollback transaction
6367
+  (0.0ms) begin transaction
6368
+  (0.0ms) commit transaction
6369
+  (0.0ms) begin transaction
6370
+  (0.0ms) SAVEPOINT active_record_1
6371
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 55 LIMIT 1
6372
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 55], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.730565"], ["updated_at", "2015-11-09 05:18:24.730565"]]
6373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6374
+ Processing by TabloConnect::CopyController#status as HTML
6375
+ Parameters: {"tablo_id"=>"55", "type"=>"show"}
6376
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 55]]
6377
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
6378
+  (0.5ms) rollback transaction
6379
+  (0.1ms) begin transaction
6380
+  (0.1ms) commit transaction
6381
+  (0.0ms) begin transaction
6382
+  (0.1ms) SAVEPOINT active_record_1
6383
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 56 LIMIT 1
6384
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 56], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.737225"], ["updated_at", "2015-11-09 05:18:24.737225"]]
6385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6386
+ Processing by TabloConnect::CopyController#status as HTML
6387
+ Parameters: {"tablo_id"=>"56", "type"=>"show"}
6388
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 56]]
6389
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
6390
+  (0.5ms) rollback transaction
6391
+  (0.1ms) begin transaction
6392
+  (0.0ms) commit transaction
6393
+  (0.0ms) begin transaction
6394
+  (0.0ms) SAVEPOINT active_record_1
6395
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 57 LIMIT 1
6396
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 57], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.744144"], ["updated_at", "2015-11-09 05:18:24.744144"]]
6397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6398
+ Processing by TabloConnect::CopyController#status as HTML
6399
+ Parameters: {"tablo_id"=>"57", "type"=>"show"}
6400
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 57]]
6401
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
6402
+  (0.5ms) rollback transaction
6403
+  (0.1ms) begin transaction
6404
+  (0.0ms) commit transaction
6405
+  (0.0ms) begin transaction
6406
+  (0.0ms) SAVEPOINT active_record_1
6407
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 58 LIMIT 1
6408
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 58], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.750777"], ["updated_at", "2015-11-09 05:18:24.750777"]]
6409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6410
+  (0.4ms) rollback transaction
6411
+  (0.0ms) begin transaction
6412
+  (0.0ms) commit transaction
6413
+  (0.0ms) begin transaction
6414
+  (0.0ms) SAVEPOINT active_record_1
6415
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 59 LIMIT 1
6416
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 59], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.755482"], ["updated_at", "2015-11-09 05:18:24.755482"]]
6417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6418
+  (0.4ms) rollback transaction
6419
+  (0.0ms) begin transaction
6420
+  (0.1ms) commit transaction
6421
+  (0.0ms) begin transaction
6422
+  (0.1ms) SAVEPOINT active_record_1
6423
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 60 LIMIT 1
6424
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 60], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:18:24.760922"], ["updated_at", "2015-11-09 05:18:24.760922"]]
6425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6426
+  (0.4ms) rollback transaction
6427
+  (2.9ms) DELETE FROM "tablo_connect_movies";
6428
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
6429
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_movies';
6430
+  (0.9ms) DELETE FROM "tablo_connect_shows";
6431
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
6432
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
6433
+  (0.0ms) begin transaction
6434
+  (0.0ms) commit transaction
6435
+  (0.0ms) begin transaction
6436
+  (0.1ms) SAVEPOINT active_record_1
6437
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1
6438
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.305638"], ["updated_at", "2015-11-09 05:19:03.305638"]]
6439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6440
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6441
+ SQL (0.1ms) DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? [["tablo_id", 1]]
6442
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6443
+  (0.5ms) rollback transaction
6444
+  (0.0ms) begin transaction
6445
+  (0.0ms) commit transaction
6446
+  (0.0ms) begin transaction
6447
+  (0.0ms) SAVEPOINT active_record_1
6448
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 2 LIMIT 1
6449
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 2], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.316990"], ["updated_at", "2015-11-09 05:19:03.316990"]]
6450
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6451
+  (0.0ms) SAVEPOINT active_record_1
6452
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 3 LIMIT 1
6453
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 3], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.319490"], ["updated_at", "2015-11-09 05:19:03.319490"]]
6454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6455
+  (0.0ms) SAVEPOINT active_record_1
6456
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 4 LIMIT 1
6457
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 4], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.321921"], ["updated_at", "2015-11-09 05:19:03.321921"]]
6458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6459
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6460
+ TabloConnect::Show Load (0.2ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
6461
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
6462
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
6463
+  (0.8ms) rollback transaction
6464
+  (0.0ms) begin transaction
6465
+  (0.0ms) commit transaction
6466
+  (0.0ms) begin transaction
6467
+  (0.0ms) SAVEPOINT active_record_1
6468
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 5 LIMIT 1
6469
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 5], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.331350"], ["updated_at", "2015-11-09 05:19:03.331350"]]
6470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6471
+  (0.0ms) SAVEPOINT active_record_1
6472
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 6 LIMIT 1
6473
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 6], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.333868"], ["updated_at", "2015-11-09 05:19:03.333868"]]
6474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6475
+  (0.0ms) SAVEPOINT active_record_1
6476
+ TabloConnect::Show Exists (0.0ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7 LIMIT 1
6477
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 7], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.336108"], ["updated_at", "2015-11-09 05:19:03.336108"]]
6478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6479
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6480
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
6481
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
6482
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
6483
+  (0.9ms) rollback transaction
6484
+  (0.1ms) begin transaction
6485
+  (0.0ms) commit transaction
6486
+  (0.1ms) begin transaction
6487
+  (0.0ms) SAVEPOINT active_record_1
6488
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 8 LIMIT 1
6489
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 8], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.342901"], ["updated_at", "2015-11-09 05:19:03.342901"]]
6490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6491
+  (0.1ms) SAVEPOINT active_record_1
6492
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 9 LIMIT 1
6493
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 9], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.346353"], ["updated_at", "2015-11-09 05:19:03.346353"]]
6494
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6495
+  (0.1ms) SAVEPOINT active_record_1
6496
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 10 LIMIT 1
6497
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 10], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.349491"], ["updated_at", "2015-11-09 05:19:03.349491"]]
6498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6499
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6500
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
6501
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
6502
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
6503
+  (0.8ms) rollback transaction
6504
+  (0.1ms) begin transaction
6505
+  (0.0ms) commit transaction
6506
+  (0.0ms) begin transaction
6507
+  (0.0ms) SAVEPOINT active_record_1
6508
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11 LIMIT 1
6509
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 11], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.357512"], ["updated_at", "2015-11-09 05:19:03.357512"]]
6510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6511
+  (0.0ms) SAVEPOINT active_record_1
6512
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 12 LIMIT 1
6513
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 12], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.360011"], ["updated_at", "2015-11-09 05:19:03.360011"]]
6514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6515
+  (0.0ms) SAVEPOINT active_record_1
6516
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 13 LIMIT 1
6517
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 13], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.368836"], ["updated_at", "2015-11-09 05:19:03.368836"]]
6518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6519
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6520
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
6521
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
6522
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
6523
+  (0.8ms) rollback transaction
6524
+  (0.0ms) begin transaction
6525
+  (0.0ms) commit transaction
6526
+  (0.0ms) begin transaction
6527
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" ORDER BY "tablo_connect_shows"."id" ASC LIMIT 1
6528
+  (0.0ms) SAVEPOINT active_record_1
6529
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 0], ["created_at", "2015-11-09 05:19:03.376544"], ["updated_at", "2015-11-09 05:19:03.376544"]]
6530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6531
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 0 LIMIT 1
6532
+  (0.6ms) rollback transaction
6533
+  (0.1ms) begin transaction
6534
+  (0.0ms) commit transaction
6535
+  (0.0ms) begin transaction
6536
+  (0.0ms) SAVEPOINT active_record_1
6537
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 14 LIMIT 1
6538
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 14], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.388761"], ["updated_at", "2015-11-09 05:19:03.388761"]]
6539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6540
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6541
+  (0.4ms) rollback transaction
6542
+  (0.0ms) begin transaction
6543
+  (0.0ms) commit transaction
6544
+  (0.0ms) begin transaction
6545
+  (0.0ms) SAVEPOINT active_record_1
6546
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 15 LIMIT 1
6547
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 15], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.393427"], ["updated_at", "2015-11-09 05:19:03.393427"]]
6548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6549
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
6550
+  (0.4ms) rollback transaction
6551
+  (0.1ms) begin transaction
6552
+  (0.1ms) commit transaction
6553
+  (0.0ms) begin transaction
6554
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" IS NULL LIMIT 1
6555
+  (0.1ms) rollback transaction
6556
+  (0.0ms) begin transaction
6557
+  (0.0ms) commit transaction
6558
+  (0.0ms) begin transaction
6559
+  (0.0ms) SAVEPOINT active_record_1
6560
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 16 LIMIT 1
6561
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 16], ["show", "Alf"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.402928"], ["updated_at", "2015-11-09 05:19:03.402928"]]
6562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6563
+  (0.0ms) SAVEPOINT active_record_1
6564
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 17 LIMIT 1
6565
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 17], ["show", "Alf"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.405342"], ["updated_at", "2015-11-09 05:19:03.405342"]]
6566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6567
+  (0.0ms) SAVEPOINT active_record_1
6568
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 18 LIMIT 1
6569
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 18], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.407476"], ["updated_at", "2015-11-09 05:19:03.407476"]]
6570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6571
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? [["show", "Alf"]]
6572
+  (0.8ms) rollback transaction
6573
+  (0.1ms) begin transaction
6574
+  (0.0ms) commit transaction
6575
+  (0.0ms) begin transaction
6576
+  (0.1ms) SAVEPOINT active_record_1
6577
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1 LIMIT 1
6578
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.421273"], ["updated_at", "2015-11-09 05:19:03.421273"]]
6579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6580
+ Processing by TabloConnect::MoviesController#index as HTML
6581
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
6582
+  (0.5ms) rollback transaction
6583
+  (0.1ms) begin transaction
6584
+  (0.0ms) commit transaction
6585
+  (0.0ms) begin transaction
6586
+  (0.0ms) SAVEPOINT active_record_1
6587
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 2 LIMIT 1
6588
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 2], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.437645"], ["updated_at", "2015-11-09 05:19:03.437645"]]
6589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6590
+ Processing by TabloConnect::MoviesController#index as HTML
6591
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
6592
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
6593
+  (0.5ms) rollback transaction
6594
+  (0.1ms) begin transaction
6595
+  (0.0ms) commit transaction
6596
+  (0.0ms) begin transaction
6597
+  (0.0ms) SAVEPOINT active_record_1
6598
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 3 LIMIT 1
6599
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 3], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.443937"], ["updated_at", "2015-11-09 05:19:03.443937"]]
6600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6601
+ Processing by TabloConnect::MoviesController#index as HTML
6602
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
6603
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
6604
+  (0.5ms) rollback transaction
6605
+  (0.0ms) begin transaction
6606
+  (0.0ms) commit transaction
6607
+  (0.1ms) begin transaction
6608
+  (0.0ms) rollback transaction
6609
+  (0.0ms) begin transaction
6610
+  (0.0ms) commit transaction
6611
+  (0.0ms) begin transaction
6612
+  (0.0ms) rollback transaction
6613
+  (0.0ms) begin transaction
6614
+  (0.0ms) commit transaction
6615
+  (0.0ms) begin transaction
6616
+  (0.1ms) rollback transaction
6617
+  (0.0ms) begin transaction
6618
+  (0.0ms) commit transaction
6619
+  (0.0ms) begin transaction
6620
+  (0.0ms) SAVEPOINT active_record_1
6621
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 19 LIMIT 1
6622
+ SQL (0.4ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 19], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.457619"], ["updated_at", "2015-11-09 05:19:03.457619"]]
6623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6624
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 19]]
6625
+  (0.0ms) SAVEPOINT active_record_1
6626
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 19 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6627
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.462116"], ["id", 1]]
6628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6629
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6630
+  (0.8ms) rollback transaction
6631
+  (0.0ms) begin transaction
6632
+  (0.0ms) commit transaction
6633
+  (0.0ms) begin transaction
6634
+  (0.0ms) SAVEPOINT active_record_1
6635
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 20 LIMIT 1
6636
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 20], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.467673"], ["updated_at", "2015-11-09 05:19:03.467673"]]
6637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6638
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 20]]
6639
+  (0.1ms) SAVEPOINT active_record_1
6640
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 20 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6641
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.470760"], ["id", 1]]
6642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6643
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6644
+  (0.7ms) rollback transaction
6645
+  (0.1ms) begin transaction
6646
+  (0.0ms) commit transaction
6647
+  (0.0ms) begin transaction
6648
+  (0.0ms) SAVEPOINT active_record_1
6649
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 21 LIMIT 1
6650
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 21], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.476009"], ["updated_at", "2015-11-09 05:19:03.476009"]]
6651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6652
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 21]]
6653
+  (0.0ms) SAVEPOINT active_record_1
6654
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 21 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6655
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.478613"], ["id", 1]]
6656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6657
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6658
+  (0.6ms) rollback transaction
6659
+  (0.1ms) begin transaction
6660
+  (0.0ms) commit transaction
6661
+  (0.1ms) begin transaction
6662
+  (0.1ms) SAVEPOINT active_record_1
6663
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 22 LIMIT 1
6664
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 22], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.483598"], ["updated_at", "2015-11-09 05:19:03.483598"]]
6665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6666
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 22]]
6667
+  (0.0ms) SAVEPOINT active_record_1
6668
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 22 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6669
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.486483"], ["id", 1]]
6670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6671
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6672
+  (0.6ms) rollback transaction
6673
+  (0.1ms) begin transaction
6674
+  (0.0ms) commit transaction
6675
+  (0.0ms) begin transaction
6676
+  (0.0ms) SAVEPOINT active_record_1
6677
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 23 LIMIT 1
6678
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 23], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.491673"], ["updated_at", "2015-11-09 05:19:03.491673"]]
6679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6680
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 23]]
6681
+  (0.0ms) SAVEPOINT active_record_1
6682
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 23 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6683
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.494260"], ["id", 1]]
6684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6685
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6686
+  (0.6ms) rollback transaction
6687
+  (0.1ms) begin transaction
6688
+  (0.0ms) commit transaction
6689
+  (0.0ms) begin transaction
6690
+  (0.0ms) SAVEPOINT active_record_1
6691
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 24 LIMIT 1
6692
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 24], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.499367"], ["updated_at", "2015-11-09 05:19:03.499367"]]
6693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6694
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6695
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 24]]
6696
+  (0.1ms) SAVEPOINT active_record_1
6697
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 24 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6698
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.502453"], ["id", 1]]
6699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6700
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6701
+  (0.6ms) rollback transaction
6702
+  (0.1ms) begin transaction
6703
+  (0.0ms) commit transaction
6704
+  (0.0ms) begin transaction
6705
+  (0.0ms) SAVEPOINT active_record_1
6706
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 25 LIMIT 1
6707
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 25], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.507821"], ["updated_at", "2015-11-09 05:19:03.507821"]]
6708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6709
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 25]]
6710
+  (0.0ms) SAVEPOINT active_record_1
6711
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 25 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6712
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.511158"], ["id", 1]]
6713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6714
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6715
+  (0.7ms) rollback transaction
6716
+  (0.1ms) begin transaction
6717
+  (0.0ms) commit transaction
6718
+  (0.0ms) begin transaction
6719
+  (0.0ms) SAVEPOINT active_record_1
6720
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 26 LIMIT 1
6721
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 26], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.516755"], ["updated_at", "2015-11-09 05:19:03.516755"]]
6722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6723
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 26]]
6724
+  (0.1ms) SAVEPOINT active_record_1
6725
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 26 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6726
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.519970"], ["id", 1]]
6727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6728
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6729
+  (0.7ms) rollback transaction
6730
+  (0.1ms) begin transaction
6731
+  (0.0ms) commit transaction
6732
+  (0.0ms) begin transaction
6733
+  (0.0ms) SAVEPOINT active_record_1
6734
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 27 LIMIT 1
6735
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 27], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.525301"], ["updated_at", "2015-11-09 05:19:03.525301"]]
6736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6737
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 27]]
6738
+  (0.0ms) SAVEPOINT active_record_1
6739
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 27 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6740
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.527932"], ["id", 1]]
6741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6742
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
6743
+  (0.7ms) rollback transaction
6744
+  (0.0ms) begin transaction
6745
+  (0.0ms) commit transaction
6746
+  (0.0ms) begin transaction
6747
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6748
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
6749
+  (0.0ms) SAVEPOINT active_record_1
6750
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1234 LIMIT 1
6751
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 1234], ["created_at", "2015-11-09 05:19:03.533139"], ["updated_at", "2015-11-09 05:19:03.533139"]]
6752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6753
+  (0.0ms) SAVEPOINT active_record_1
6754
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1234 AND "tablo_connect_shows"."id" != 1) LIMIT 1
6755
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "season" = ?, "rec_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["season", 1], ["rec_date", "2015-10-18 19:30:00.000000"], ["image_id", 177446], ["updated_at", "2015-11-09 05:19:03.534984"], ["id", 1]]
6756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6757
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
6758
+  (0.8ms) rollback transaction
6759
+  (0.0ms) begin transaction
6760
+  (0.1ms) commit transaction
6761
+  (0.0ms) begin transaction
6762
+  (0.0ms) SAVEPOINT active_record_1
6763
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 4 LIMIT 1
6764
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 4], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.540207"], ["updated_at", "2015-11-09 05:19:03.540207"]]
6765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6766
+  (0.0ms) SAVEPOINT active_record_1
6767
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28 LIMIT 1
6768
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 28], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.542454"], ["updated_at", "2015-11-09 05:19:03.542454"]]
6769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6770
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
6771
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
6772
+ SQL (0.1ms) DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28
6773
+  (0.7ms) rollback transaction
6774
+  (0.1ms) begin transaction
6775
+  (0.0ms) commit transaction
6776
+  (0.0ms) begin transaction
6777
+  (0.0ms) SAVEPOINT active_record_1
6778
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 5 LIMIT 1
6779
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 5], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.548971"], ["updated_at", "2015-11-09 05:19:03.548971"]]
6780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6781
+  (0.0ms) SAVEPOINT active_record_1
6782
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 29 LIMIT 1
6783
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 29], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.551641"], ["updated_at", "2015-11-09 05:19:03.551641"]]
6784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6785
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
6786
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
6787
+ SQL (0.1ms) DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 29
6788
+  (0.9ms) rollback transaction
6789
+  (0.1ms) begin transaction
6790
+  (0.0ms) commit transaction
6791
+  (0.0ms) begin transaction
6792
+ Processing by TabloConnect::SyncController#index as HTML
6793
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
6794
+  (0.0ms) rollback transaction
6795
+  (0.0ms) begin transaction
6796
+  (0.0ms) commit transaction
6797
+  (0.1ms) begin transaction
6798
+ Processing by TabloConnect::SyncController#index as HTML
6799
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
6800
+  (0.0ms) rollback transaction
6801
+  (0.1ms) begin transaction
6802
+  (0.0ms) commit transaction
6803
+  (0.0ms) begin transaction
6804
+ Processing by TabloConnect::SyncController#index as HTML
6805
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
6806
+  (0.1ms) rollback transaction
6807
+  (0.1ms) begin transaction
6808
+  (0.0ms) commit transaction
6809
+  (0.0ms) begin transaction
6810
+ Processing by TabloConnect::SyncController#index as HTML
6811
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
6812
+  (0.1ms) rollback transaction
6813
+  (0.1ms) begin transaction
6814
+  (0.0ms) commit transaction
6815
+  (0.0ms) begin transaction
6816
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
6817
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
6818
+  (0.1ms) SAVEPOINT active_record_1
6819
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1234 LIMIT 1
6820
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 1234], ["created_at", "2015-11-09 05:19:03.571815"], ["updated_at", "2015-11-09 05:19:03.571815"]]
6821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6822
+  (0.0ms) SAVEPOINT active_record_1
6823
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1234 AND "tablo_connect_movies"."id" != 1) LIMIT 1
6824
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:19:03.574134"], ["id", 1]]
6825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6826
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
6827
+  (0.7ms) rollback transaction
6828
+  (0.0ms) begin transaction
6829
+  (0.0ms) commit transaction
6830
+  (0.1ms) begin transaction
6831
+  (0.0ms) SAVEPOINT active_record_1
6832
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 6 LIMIT 1
6833
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 6], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.579065"], ["updated_at", "2015-11-09 05:19:03.579065"]]
6834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6835
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_movies"
6836
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
6837
+  (0.1ms) SAVEPOINT active_record_1
6838
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 6 AND "tablo_connect_movies"."id" != 1) LIMIT 1
6839
+ SQL (0.2ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:19:03.581805"], ["id", 1]]
6840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6841
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
6842
+  (0.6ms) rollback transaction
6843
+  (0.1ms) begin transaction
6844
+  (0.1ms) commit transaction
6845
+  (0.0ms) begin transaction
6846
+  (0.0ms) SAVEPOINT active_record_1
6847
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 7 LIMIT 1
6848
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 7], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.586962"], ["updated_at", "2015-11-09 05:19:03.586962"]]
6849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6850
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 7]]
6851
+  (0.0ms) SAVEPOINT active_record_1
6852
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 7 AND "tablo_connect_movies"."id" != 1) LIMIT 1
6853
+ SQL (0.2ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:19:03.589405"], ["id", 1]]
6854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6855
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
6856
+  (0.7ms) rollback transaction
6857
+  (0.0ms) begin transaction
6858
+  (0.0ms) commit transaction
6859
+  (0.0ms) begin transaction
6860
+  (0.1ms) SAVEPOINT active_record_1
6861
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8 LIMIT 1
6862
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 8], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.594615"], ["updated_at", "2015-11-09 05:19:03.594615"]]
6863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6864
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 8]]
6865
+  (0.0ms) SAVEPOINT active_record_1
6866
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 8 AND "tablo_connect_movies"."id" != 1) LIMIT 1
6867
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:19:03.597163"], ["id", 1]]
6868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6869
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
6870
+  (0.7ms) rollback transaction
6871
+  (0.0ms) begin transaction
6872
+  (0.0ms) commit transaction
6873
+  (0.1ms) begin transaction
6874
+  (0.0ms) SAVEPOINT active_record_1
6875
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 9 LIMIT 1
6876
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 9], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.601887"], ["updated_at", "2015-11-09 05:19:03.601887"]]
6877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6878
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 9]]
6879
+  (0.0ms) SAVEPOINT active_record_1
6880
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 9 AND "tablo_connect_movies"."id" != 1) LIMIT 1
6881
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:19:03.604484"], ["id", 1]]
6882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6883
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
6884
+  (0.6ms) rollback transaction
6885
+  (0.0ms) begin transaction
6886
+  (0.0ms) commit transaction
6887
+  (0.0ms) begin transaction
6888
+  (0.0ms) SAVEPOINT active_record_1
6889
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10 LIMIT 1
6890
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 10], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.609265"], ["updated_at", "2015-11-09 05:19:03.609265"]]
6891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6892
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 10]]
6893
+  (0.0ms) SAVEPOINT active_record_1
6894
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 10 AND "tablo_connect_movies"."id" != 1) LIMIT 1
6895
+ SQL (0.2ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:19:03.611763"], ["id", 1]]
6896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6897
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
6898
+  (0.8ms) rollback transaction
6899
+  (0.0ms) begin transaction
6900
+  (0.0ms) commit transaction
6901
+  (0.0ms) begin transaction
6902
+  (0.0ms) SAVEPOINT active_record_1
6903
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 11 LIMIT 1
6904
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 11], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.616483"], ["updated_at", "2015-11-09 05:19:03.616483"]]
6905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6906
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 11]]
6907
+  (0.0ms) SAVEPOINT active_record_1
6908
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 11 AND "tablo_connect_movies"."id" != 1) LIMIT 1
6909
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:19:03.619242"], ["id", 1]]
6910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6911
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
6912
+  (0.7ms) rollback transaction
6913
+  (0.1ms) begin transaction
6914
+  (0.0ms) commit transaction
6915
+  (0.0ms) begin transaction
6916
+  (0.1ms) SAVEPOINT active_record_1
6917
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 12 LIMIT 1
6918
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 12], ["title", "B starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.625037"], ["updated_at", "2015-11-09 05:19:03.625037"]]
6919
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6920
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
6921
+ SQL (0.1ms) DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? [["tablo_id", 12]]
6922
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
6923
+  (0.4ms) rollback transaction
6924
+  (0.1ms) begin transaction
6925
+  (0.1ms) commit transaction
6926
+  (0.0ms) begin transaction
6927
+  (0.1ms) SAVEPOINT active_record_1
6928
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 13 LIMIT 1
6929
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 13], ["title", "B starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.631575"], ["updated_at", "2015-11-09 05:19:03.631575"]]
6930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6931
+  (0.0ms) SAVEPOINT active_record_1
6932
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 14 LIMIT 1
6933
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 14], ["title", "A starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.634267"], ["updated_at", "2015-11-09 05:19:03.634267"]]
6934
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6935
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
6936
+  (0.8ms) rollback transaction
6937
+  (0.0ms) begin transaction
6938
+  (0.0ms) commit transaction
6939
+  (0.0ms) begin transaction
6940
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."id" ASC LIMIT 1
6941
+  (0.1ms) SAVEPOINT active_record_1
6942
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 0], ["created_at", "2015-11-09 05:19:03.640943"], ["updated_at", "2015-11-09 05:19:03.640943"]]
6943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6944
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 0 LIMIT 1
6945
+  (0.5ms) rollback transaction
6946
+  (0.1ms) begin transaction
6947
+  (0.0ms) commit transaction
6948
+  (0.0ms) begin transaction
6949
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" IS NULL LIMIT 1
6950
+  (0.0ms) rollback transaction
6951
+  (0.1ms) begin transaction
6952
+  (0.1ms) commit transaction
6953
+  (0.1ms) begin transaction
6954
+  (0.0ms) SAVEPOINT active_record_1
6955
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 30 LIMIT 1
6956
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 30], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.654185"], ["updated_at", "2015-11-09 05:19:03.654185"]]
6957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6958
+  (0.5ms) rollback transaction
6959
+  (0.1ms) begin transaction
6960
+  (0.0ms) commit transaction
6961
+  (0.0ms) begin transaction
6962
+  (0.0ms) SAVEPOINT active_record_1
6963
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 31 LIMIT 1
6964
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 31], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.659154"], ["updated_at", "2015-11-09 05:19:03.659154"]]
6965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6966
+  (0.4ms) rollback transaction
6967
+  (0.1ms) begin transaction
6968
+  (0.0ms) commit transaction
6969
+  (0.0ms) begin transaction
6970
+  (0.0ms) SAVEPOINT active_record_1
6971
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 32 LIMIT 1
6972
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 32], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.664147"], ["updated_at", "2015-11-09 05:19:03.664147"]]
6973
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6974
+  (0.5ms) rollback transaction
6975
+  (0.1ms) begin transaction
6976
+  (0.0ms) commit transaction
6977
+  (0.0ms) begin transaction
6978
+  (0.0ms) SAVEPOINT active_record_1
6979
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 33 LIMIT 1
6980
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 33], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.670129"], ["updated_at", "2015-11-09 05:19:03.670129"]]
6981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6982
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 99999]]
6983
+  (0.5ms) rollback transaction
6984
+  (0.0ms) begin transaction
6985
+  (0.0ms) commit transaction
6986
+  (0.0ms) begin transaction
6987
+  (0.0ms) SAVEPOINT active_record_1
6988
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 34 LIMIT 1
6989
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 34], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.677213"], ["updated_at", "2015-11-09 05:19:03.677213"]]
6990
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6991
+  (0.5ms) rollback transaction
6992
+  (0.1ms) begin transaction
6993
+  (0.0ms) commit transaction
6994
+  (0.0ms) begin transaction
6995
+  (0.0ms) SAVEPOINT active_record_1
6996
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 35 LIMIT 1
6997
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 35], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.682794"], ["updated_at", "2015-11-09 05:19:03.682794"]]
6998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6999
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 35]]
7000
+  (0.4ms) rollback transaction
7001
+  (0.1ms) begin transaction
7002
+  (0.0ms) commit transaction
7003
+  (0.0ms) begin transaction
7004
+  (0.0ms) SAVEPOINT active_record_1
7005
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 36 LIMIT 1
7006
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 36], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.688012"], ["updated_at", "2015-11-09 05:19:03.688012"]]
7007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7008
+  (0.4ms) rollback transaction
7009
+  (0.1ms) begin transaction
7010
+  (0.0ms) commit transaction
7011
+  (0.0ms) begin transaction
7012
+  (0.0ms) SAVEPOINT active_record_1
7013
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 37 LIMIT 1
7014
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 37], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.693108"], ["updated_at", "2015-11-09 05:19:03.693108"]]
7015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7016
+  (0.4ms) rollback transaction
7017
+  (0.0ms) begin transaction
7018
+  (0.0ms) commit transaction
7019
+  (0.0ms) begin transaction
7020
+  (0.0ms) SAVEPOINT active_record_1
7021
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 38 LIMIT 1
7022
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 38], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.697583"], ["updated_at", "2015-11-09 05:19:03.697583"]]
7023
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7024
+  (0.1ms) SAVEPOINT active_record_1
7025
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 38 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7026
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 2], ["updated_at", "2015-11-09 05:19:03.700112"], ["id", 1]]
7027
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7028
+  (0.5ms) rollback transaction
7029
+  (0.1ms) begin transaction
7030
+  (0.0ms) commit transaction
7031
+  (0.0ms) begin transaction
7032
+  (0.0ms) SAVEPOINT active_record_1
7033
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 39 LIMIT 1
7034
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 39], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.705130"], ["updated_at", "2015-11-09 05:19:03.705130"]]
7035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7036
+  (0.0ms) SAVEPOINT active_record_1
7037
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 39 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7038
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 2], ["updated_at", "2015-11-09 05:19:03.707732"], ["id", 1]]
7039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7040
+  (0.7ms) rollback transaction
7041
+  (0.1ms) begin transaction
7042
+  (0.0ms) commit transaction
7043
+  (0.1ms) begin transaction
7044
+  (0.0ms) SAVEPOINT active_record_1
7045
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 40 LIMIT 1
7046
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 40], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.712491"], ["updated_at", "2015-11-09 05:19:03.712491"]]
7047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7048
+  (0.0ms) SAVEPOINT active_record_1
7049
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 40 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7050
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:19:03.715203"], ["id", 1]]
7051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7052
+  (0.6ms) rollback transaction
7053
+  (0.1ms) begin transaction
7054
+  (0.0ms) commit transaction
7055
+  (0.0ms) begin transaction
7056
+  (0.0ms) SAVEPOINT active_record_1
7057
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 41 LIMIT 1
7058
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 41], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.719696"], ["updated_at", "2015-11-09 05:19:03.719696"]]
7059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7060
+  (0.1ms) SAVEPOINT active_record_1
7061
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 41 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7062
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:19:03.721851"], ["id", 1]]
7063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7064
+  (0.0ms) SAVEPOINT active_record_1
7065
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 41 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7066
+ SQL (0.0ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 0], ["updated_at", "2015-11-09 05:19:03.723439"], ["id", 1]]
7067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7068
+  (0.6ms) rollback transaction
7069
+  (0.1ms) begin transaction
7070
+  (0.0ms) commit transaction
7071
+  (0.0ms) begin transaction
7072
+  (0.0ms) SAVEPOINT active_record_1
7073
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 42 LIMIT 1
7074
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 42], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.727947"], ["updated_at", "2015-11-09 05:19:03.727947"]]
7075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7076
+  (0.5ms) rollback transaction
7077
+  (0.0ms) begin transaction
7078
+  (0.0ms) commit transaction
7079
+  (0.0ms) begin transaction
7080
+  (0.0ms) SAVEPOINT active_record_1
7081
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 43 LIMIT 1
7082
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 43], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.732570"], ["updated_at", "2015-11-09 05:19:03.732570"]]
7083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7084
+  (0.4ms) rollback transaction
7085
+  (0.1ms) begin transaction
7086
+  (0.0ms) commit transaction
7087
+  (0.0ms) begin transaction
7088
+  (0.1ms) SAVEPOINT active_record_1
7089
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 44 LIMIT 1
7090
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 44], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.737885"], ["updated_at", "2015-11-09 05:19:03.737885"]]
7091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7092
+  (0.5ms) rollback transaction
7093
+  (0.1ms) begin transaction
7094
+  (0.0ms) commit transaction
7095
+  (0.0ms) begin transaction
7096
+  (0.0ms) SAVEPOINT active_record_1
7097
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 45 LIMIT 1
7098
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 45], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.742926"], ["updated_at", "2015-11-09 05:19:03.742926"]]
7099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7100
+  (0.5ms) rollback transaction
7101
+  (0.0ms) begin transaction
7102
+  (0.0ms) commit transaction
7103
+  (0.0ms) begin transaction
7104
+  (0.0ms) SAVEPOINT active_record_1
7105
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 46 LIMIT 1
7106
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 46], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.747653"], ["updated_at", "2015-11-09 05:19:03.747653"]]
7107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7108
+  (0.4ms) rollback transaction
7109
+  (0.1ms) begin transaction
7110
+  (0.0ms) commit transaction
7111
+  (0.0ms) begin transaction
7112
+  (0.0ms) SAVEPOINT active_record_1
7113
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 47 LIMIT 1
7114
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 47], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.752478"], ["updated_at", "2015-11-09 05:19:03.752478"]]
7115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7116
+ Processing by TabloConnect::CopyController#status as HTML
7117
+ Parameters: {"tablo_id"=>"47", "type"=>"show"}
7118
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 47]]
7119
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
7120
+  (0.5ms) rollback transaction
7121
+  (0.1ms) begin transaction
7122
+  (0.0ms) commit transaction
7123
+  (0.0ms) begin transaction
7124
+  (0.0ms) SAVEPOINT active_record_1
7125
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 48 LIMIT 1
7126
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 48], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.759409"], ["updated_at", "2015-11-09 05:19:03.759409"]]
7127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7128
+ Processing by TabloConnect::CopyController#status as HTML
7129
+ Parameters: {"tablo_id"=>"48", "type"=>"show"}
7130
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 48]]
7131
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
7132
+  (0.5ms) rollback transaction
7133
+  (0.1ms) begin transaction
7134
+  (0.0ms) commit transaction
7135
+  (0.0ms) begin transaction
7136
+  (0.0ms) SAVEPOINT active_record_1
7137
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 49 LIMIT 1
7138
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 49], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.765881"], ["updated_at", "2015-11-09 05:19:03.765881"]]
7139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7140
+ Processing by TabloConnect::CopyController#status as HTML
7141
+ Parameters: {"tablo_id"=>"49", "type"=>"show"}
7142
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 49]]
7143
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
7144
+  (0.5ms) rollback transaction
7145
+  (0.1ms) begin transaction
7146
+  (0.0ms) commit transaction
7147
+  (0.1ms) begin transaction
7148
+  (0.0ms) SAVEPOINT active_record_1
7149
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 50 LIMIT 1
7150
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 50], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.772754"], ["updated_at", "2015-11-09 05:19:03.772754"]]
7151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7152
+ Processing by TabloConnect::CopyController#index as HTML
7153
+ Parameters: {"tablo_id"=>"50", "type"=>"show"}
7154
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 50]]
7155
+  (0.0ms) SAVEPOINT active_record_1
7156
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 50 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7157
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:19:03.777113"], ["id", 1]]
7158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7159
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
7160
+  (0.7ms) rollback transaction
7161
+  (0.1ms) begin transaction
7162
+  (0.0ms) commit transaction
7163
+  (0.0ms) begin transaction
7164
+  (0.0ms) SAVEPOINT active_record_1
7165
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 51 LIMIT 1
7166
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 51], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.782475"], ["updated_at", "2015-11-09 05:19:03.782475"]]
7167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7168
+ Processing by TabloConnect::CopyController#index as HTML
7169
+ Parameters: {"tablo_id"=>"51", "type"=>"show"}
7170
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 51]]
7171
+  (0.0ms) SAVEPOINT active_record_1
7172
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 51 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7173
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:19:03.786269"], ["id", 1]]
7174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7175
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
7176
+  (0.6ms) rollback transaction
7177
+  (0.0ms) begin transaction
7178
+  (0.0ms) commit transaction
7179
+  (0.0ms) begin transaction
7180
+  (0.0ms) SAVEPOINT active_record_1
7181
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 52 LIMIT 1
7182
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 52], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.791309"], ["updated_at", "2015-11-09 05:19:03.791309"]]
7183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7184
+ Processing by TabloConnect::CopyController#index as HTML
7185
+ Parameters: {"tablo_id"=>"52", "type"=>"show"}
7186
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 52]]
7187
+  (0.0ms) SAVEPOINT active_record_1
7188
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 52 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7189
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:19:03.794968"], ["id", 1]]
7190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7191
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.4ms)
7192
+  (0.7ms) rollback transaction
7193
+  (0.1ms) begin transaction
7194
+  (0.0ms) commit transaction
7195
+  (0.0ms) begin transaction
7196
+  (0.1ms) SAVEPOINT active_record_1
7197
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 53 LIMIT 1
7198
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 53], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.800339"], ["updated_at", "2015-11-09 05:19:03.800339"]]
7199
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7200
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 53]]
7201
+ Processing by TabloConnect::CopyController#index as HTML
7202
+ Parameters: {"tablo_id"=>"53", "type"=>"show"}
7203
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 53]]
7204
+  (0.0ms) SAVEPOINT active_record_1
7205
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 53 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7206
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:19:03.804500"], ["id", 1]]
7207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7208
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
7209
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7210
+  (0.7ms) rollback transaction
7211
+  (0.1ms) begin transaction
7212
+  (0.0ms) commit transaction
7213
+  (0.0ms) begin transaction
7214
+  (0.0ms) SAVEPOINT active_record_1
7215
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 54 LIMIT 1
7216
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 54], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.810344"], ["updated_at", "2015-11-09 05:19:03.810344"]]
7217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7218
+ Processing by TabloConnect::CopyController#index as HTML
7219
+ Parameters: {"tablo_id"=>"99999", "type"=>"some_type"}
7220
+ Filter chain halted as :set_item rendered or redirected
7221
+ Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
7222
+  (0.5ms) rollback transaction
7223
+  (0.1ms) begin transaction
7224
+  (0.0ms) commit transaction
7225
+  (0.0ms) begin transaction
7226
+  (0.1ms) SAVEPOINT active_record_1
7227
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 55 LIMIT 1
7228
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 55], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.817767"], ["updated_at", "2015-11-09 05:19:03.817767"]]
7229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7230
+ Processing by TabloConnect::ShowsController#episodes as HTML
7231
+ Parameters: {"show"=>"Angle of Attack"}
7232
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
7233
+  (0.5ms) rollback transaction
7234
+  (0.1ms) begin transaction
7235
+  (0.1ms) commit transaction
7236
+  (0.0ms) begin transaction
7237
+  (0.1ms) SAVEPOINT active_record_1
7238
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 56 LIMIT 1
7239
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 56], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.826773"], ["updated_at", "2015-11-09 05:19:03.826773"]]
7240
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7241
+ Processing by TabloConnect::ShowsController#episodes as HTML
7242
+ Parameters: {"show"=>"Angle of Attack"}
7243
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."season" ASC, "tablo_connect_shows"."episode" ASC, "tablo_connect_shows"."rec_date" ASC, "tablo_connect_shows"."title" ASC [["show", "Angle of Attack"]]
7244
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
7245
+  (0.5ms) rollback transaction
7246
+  (0.0ms) begin transaction
7247
+  (0.0ms) commit transaction
7248
+  (0.0ms) begin transaction
7249
+  (0.0ms) SAVEPOINT active_record_1
7250
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 57 LIMIT 1
7251
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 57], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.834461"], ["updated_at", "2015-11-09 05:19:03.834461"]]
7252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7253
+ Processing by TabloConnect::ShowsController#episodes as HTML
7254
+ Parameters: {"show"=>"Angle of Attack"}
7255
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."season" ASC, "tablo_connect_shows"."episode" ASC, "tablo_connect_shows"."rec_date" ASC, "tablo_connect_shows"."title" ASC [["show", "Angle of Attack"]]
7256
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
7257
+  (0.5ms) rollback transaction
7258
+  (0.1ms) begin transaction
7259
+  (0.0ms) commit transaction
7260
+  (0.0ms) begin transaction
7261
+  (0.0ms) SAVEPOINT active_record_1
7262
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 58 LIMIT 1
7263
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 58], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.841250"], ["updated_at", "2015-11-09 05:19:03.841250"]]
7264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7265
+ Processing by TabloConnect::ShowsController#index as HTML
7266
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
7267
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Angle of Attack"]]
7268
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
7269
+  (0.6ms) rollback transaction
7270
+  (0.1ms) begin transaction
7271
+  (0.1ms) commit transaction
7272
+  (0.1ms) begin transaction
7273
+  (0.1ms) SAVEPOINT active_record_1
7274
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 59 LIMIT 1
7275
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 59], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.848816"], ["updated_at", "2015-11-09 05:19:03.848816"]]
7276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7277
+ Processing by TabloConnect::ShowsController#index as HTML
7278
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
7279
+  (0.4ms) rollback transaction
7280
+  (0.1ms) begin transaction
7281
+  (0.0ms) commit transaction
7282
+  (0.0ms) begin transaction
7283
+  (0.0ms) SAVEPOINT active_record_1
7284
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 60 LIMIT 1
7285
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 60], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:19:03.855419"], ["updated_at", "2015-11-09 05:19:03.855419"]]
7286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7287
+ Processing by TabloConnect::ShowsController#index as HTML
7288
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
7289
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Angle of Attack"]]
7290
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
7291
+  (0.5ms) rollback transaction
7292
+  (2.5ms) DELETE FROM "tablo_connect_movies";
7293
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
7294
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_movies';
7295
+  (1.0ms) DELETE FROM "tablo_connect_shows";
7296
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
7297
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
7298
+  (0.0ms) begin transaction
7299
+  (0.0ms) commit transaction
7300
+  (0.0ms) begin transaction
7301
+  (0.1ms) SAVEPOINT active_record_1
7302
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1
7303
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:20:30.623238"], ["updated_at", "2015-11-09 05:20:30.623238"]]
7304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7305
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
7306
+  (0.0ms) SAVEPOINT active_record_1
7307
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7308
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", nil], ["image_id", 177446], ["updated_at", "2015-11-09 05:20:30.632281"], ["id", 1]]
7309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7310
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7311
+  (0.7ms) rollback transaction
7312
+  (3.0ms) DELETE FROM "tablo_connect_movies";
7313
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
7314
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_movies';
7315
+  (1.0ms) DELETE FROM "tablo_connect_shows";
7316
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
7317
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
7318
+  (0.1ms) begin transaction
7319
+  (0.0ms) commit transaction
7320
+  (0.0ms) begin transaction
7321
+  (0.1ms) SAVEPOINT active_record_1
7322
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1
7323
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:29.690115"], ["updated_at", "2015-11-09 05:23:29.690115"]]
7324
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7325
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
7326
+  (0.0ms) SAVEPOINT active_record_1
7327
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7328
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:29.700247"], ["id", 1]]
7329
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7330
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7331
+  (0.8ms) rollback transaction
7332
+  (3.2ms) DELETE FROM "tablo_connect_movies";
7333
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
7334
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_movies';
7335
+  (1.0ms) DELETE FROM "tablo_connect_shows";
7336
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
7337
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
7338
+  (0.1ms) begin transaction
7339
+  (0.0ms) commit transaction
7340
+  (0.0ms) begin transaction
7341
+  (0.1ms) SAVEPOINT active_record_1
7342
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1 LIMIT 1
7343
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.551920"], ["updated_at", "2015-11-09 05:23:34.551920"]]
7344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7345
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
7346
+  (0.0ms) SAVEPOINT active_record_1
7347
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1 AND "tablo_connect_movies"."id" != 1) LIMIT 1
7348
+ SQL (0.4ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:23:34.561457"], ["id", 1]]
7349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7350
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
7351
+  (0.8ms) rollback transaction
7352
+  (0.0ms) begin transaction
7353
+  (0.0ms) commit transaction
7354
+  (0.0ms) begin transaction
7355
+  (0.0ms) SAVEPOINT active_record_1
7356
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 2 LIMIT 1
7357
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 2], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.568055"], ["updated_at", "2015-11-09 05:23:34.568055"]]
7358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7359
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 2]]
7360
+  (0.0ms) SAVEPOINT active_record_1
7361
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 2 AND "tablo_connect_movies"."id" != 1) LIMIT 1
7362
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:23:34.570362"], ["id", 1]]
7363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7364
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
7365
+  (0.7ms) rollback transaction
7366
+  (0.0ms) begin transaction
7367
+  (0.0ms) commit transaction
7368
+  (0.0ms) begin transaction
7369
+  (0.0ms) SAVEPOINT active_record_1
7370
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 3 LIMIT 1
7371
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 3], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.574972"], ["updated_at", "2015-11-09 05:23:34.574972"]]
7372
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7373
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 3]]
7374
+  (0.1ms) SAVEPOINT active_record_1
7375
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 3 AND "tablo_connect_movies"."id" != 1) LIMIT 1
7376
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:23:34.578155"], ["id", 1]]
7377
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7378
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
7379
+  (0.8ms) rollback transaction
7380
+  (0.0ms) begin transaction
7381
+  (0.0ms) commit transaction
7382
+  (0.0ms) begin transaction
7383
+  (0.0ms) SAVEPOINT active_record_1
7384
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 4 LIMIT 1
7385
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 4], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.583965"], ["updated_at", "2015-11-09 05:23:34.583965"]]
7386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7387
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 4]]
7388
+  (0.0ms) SAVEPOINT active_record_1
7389
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 4 AND "tablo_connect_movies"."id" != 1) LIMIT 1
7390
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:23:34.586403"], ["id", 1]]
7391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7392
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
7393
+  (0.7ms) rollback transaction
7394
+  (0.1ms) begin transaction
7395
+  (0.0ms) commit transaction
7396
+  (0.0ms) begin transaction
7397
+  (0.0ms) SAVEPOINT active_record_1
7398
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 5 LIMIT 1
7399
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 5], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.591287"], ["updated_at", "2015-11-09 05:23:34.591287"]]
7400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7401
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
7402
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 5]]
7403
+  (0.0ms) SAVEPOINT active_record_1
7404
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 5 AND "tablo_connect_movies"."id" != 1) LIMIT 1
7405
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:23:34.596373"], ["id", 1]]
7406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7407
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_movies"
7408
+  (0.7ms) rollback transaction
7409
+  (0.0ms) begin transaction
7410
+  (0.0ms) commit transaction
7411
+  (0.0ms) begin transaction
7412
+  (0.0ms) SAVEPOINT active_record_1
7413
+ TabloConnect::Movie Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 6 LIMIT 1
7414
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 6], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.601286"], ["updated_at", "2015-11-09 05:23:34.601286"]]
7415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7416
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
7417
+  (0.1ms) SAVEPOINT active_record_1
7418
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 6 AND "tablo_connect_movies"."id" != 1) LIMIT 1
7419
+ SQL (0.3ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:23:34.604148"], ["id", 1]]
7420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7421
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
7422
+  (0.6ms) rollback transaction
7423
+  (0.0ms) begin transaction
7424
+  (0.0ms) commit transaction
7425
+  (0.0ms) begin transaction
7426
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_movies"
7427
+ TabloConnect::Movie Load (0.0ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
7428
+  (0.0ms) SAVEPOINT active_record_1
7429
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1234 LIMIT 1
7430
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 1234], ["created_at", "2015-11-09 05:23:34.609709"], ["updated_at", "2015-11-09 05:23:34.609709"]]
7431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7432
+  (0.0ms) SAVEPOINT active_record_1
7433
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1234 AND "tablo_connect_movies"."id" != 1) LIMIT 1
7434
+ SQL (0.2ms) UPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ? [["title", "Thomas & Friends: Sodor's Legend of the Lost Treasure"], ["description", "Thomas races against Sailor John (John Hurt) to find treasure from an old pirate ship."], ["release_year", 2015], ["air_date", "2015-10-18 19:30:00.000000"], ["image_id", 372899], ["updated_at", "2015-11-09 05:23:34.611716"], ["id", 1]]
7435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7436
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_movies"
7437
+  (0.7ms) rollback transaction
7438
+  (0.0ms) begin transaction
7439
+  (0.0ms) commit transaction
7440
+  (0.0ms) begin transaction
7441
+  (0.1ms) rollback transaction
7442
+  (0.0ms) begin transaction
7443
+  (0.1ms) commit transaction
7444
+  (0.0ms) begin transaction
7445
+  (0.0ms) rollback transaction
7446
+  (0.0ms) begin transaction
7447
+  (0.0ms) commit transaction
7448
+  (0.0ms) begin transaction
7449
+  (0.0ms) SAVEPOINT active_record_1
7450
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 7 LIMIT 1
7451
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 7], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.634246"], ["updated_at", "2015-11-09 05:23:34.634246"]]
7452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7453
+  (0.1ms) SAVEPOINT active_record_1
7454
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1
7455
+ SQL (0.4ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 1], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.644637"], ["updated_at", "2015-11-09 05:23:34.644637"]]
7456
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7457
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
7458
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
7459
+ SQL (0.1ms) DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7
7460
+  (0.8ms) rollback transaction
7461
+  (0.0ms) begin transaction
7462
+  (0.0ms) commit transaction
7463
+  (0.0ms) begin transaction
7464
+  (0.0ms) SAVEPOINT active_record_1
7465
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8 LIMIT 1
7466
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 8], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.651751"], ["updated_at", "2015-11-09 05:23:34.651751"]]
7467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7468
+  (0.0ms) SAVEPOINT active_record_1
7469
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 2 LIMIT 1
7470
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 2], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.654457"], ["updated_at", "2015-11-09 05:23:34.654457"]]
7471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7472
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
7473
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
7474
+ SQL (0.1ms) DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8
7475
+  (0.9ms) rollback transaction
7476
+  (0.1ms) begin transaction
7477
+  (0.1ms) commit transaction
7478
+  (0.0ms) begin transaction
7479
+ Processing by TabloConnect::SyncController#index as HTML
7480
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
7481
+  (0.0ms) rollback transaction
7482
+  (0.0ms) begin transaction
7483
+  (0.0ms) commit transaction
7484
+  (0.0ms) begin transaction
7485
+ Processing by TabloConnect::SyncController#index as HTML
7486
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
7487
+  (0.0ms) rollback transaction
7488
+  (0.0ms) begin transaction
7489
+  (0.0ms) commit transaction
7490
+  (0.0ms) begin transaction
7491
+ Processing by TabloConnect::SyncController#index as HTML
7492
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
7493
+  (0.0ms) rollback transaction
7494
+  (0.0ms) begin transaction
7495
+  (0.0ms) commit transaction
7496
+  (0.0ms) begin transaction
7497
+ Processing by TabloConnect::SyncController#index as HTML
7498
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
7499
+  (0.0ms) rollback transaction
7500
+  (0.0ms) begin transaction
7501
+  (0.0ms) commit transaction
7502
+  (0.1ms) begin transaction
7503
+  (0.0ms) rollback transaction
7504
+  (0.0ms) begin transaction
7505
+  (0.0ms) commit transaction
7506
+  (0.0ms) begin transaction
7507
+  (0.1ms) SAVEPOINT active_record_1
7508
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 3 LIMIT 1
7509
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 3], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.676552"], ["updated_at", "2015-11-09 05:23:34.676552"]]
7510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7511
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 3]]
7512
+  (0.1ms) SAVEPOINT active_record_1
7513
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 3 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7514
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.679413"], ["id", 1]]
7515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7516
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7517
+  (0.7ms) rollback transaction
7518
+  (0.1ms) begin transaction
7519
+  (0.0ms) commit transaction
7520
+  (0.0ms) begin transaction
7521
+  (0.1ms) SAVEPOINT active_record_1
7522
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 4 LIMIT 1
7523
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 4], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.685056"], ["updated_at", "2015-11-09 05:23:34.685056"]]
7524
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7525
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
7526
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 4]]
7527
+  (0.0ms) SAVEPOINT active_record_1
7528
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 4 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7529
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.688459"], ["id", 1]]
7530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7531
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
7532
+  (0.7ms) rollback transaction
7533
+  (0.0ms) begin transaction
7534
+  (0.0ms) commit transaction
7535
+  (0.0ms) begin transaction
7536
+  (0.0ms) SAVEPOINT active_record_1
7537
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 5 LIMIT 1
7538
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 5], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.693580"], ["updated_at", "2015-11-09 05:23:34.693580"]]
7539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7540
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 5]]
7541
+  (0.0ms) SAVEPOINT active_record_1
7542
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 5 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7543
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.696185"], ["id", 1]]
7544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7545
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7546
+  (0.8ms) rollback transaction
7547
+  (0.0ms) begin transaction
7548
+  (0.0ms) commit transaction
7549
+  (0.0ms) begin transaction
7550
+  (0.0ms) SAVEPOINT active_record_1
7551
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 6 LIMIT 1
7552
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 6], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.701380"], ["updated_at", "2015-11-09 05:23:34.701380"]]
7553
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7554
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
7555
+  (0.1ms) SAVEPOINT active_record_1
7556
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 6 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7557
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.704850"], ["id", 1]]
7558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7559
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7560
+  (0.8ms) rollback transaction
7561
+  (0.1ms) begin transaction
7562
+  (0.0ms) commit transaction
7563
+  (0.1ms) begin transaction
7564
+  (0.1ms) SAVEPOINT active_record_1
7565
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7 LIMIT 1
7566
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 7], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.711087"], ["updated_at", "2015-11-09 05:23:34.711087"]]
7567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7568
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 7]]
7569
+  (0.1ms) SAVEPOINT active_record_1
7570
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 7 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7571
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.714823"], ["id", 1]]
7572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7573
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7574
+  (0.8ms) rollback transaction
7575
+  (0.1ms) begin transaction
7576
+  (0.1ms) commit transaction
7577
+  (0.1ms) begin transaction
7578
+  (0.1ms) SAVEPOINT active_record_1
7579
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 8 LIMIT 1
7580
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 8], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.720913"], ["updated_at", "2015-11-09 05:23:34.720913"]]
7581
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7582
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 8]]
7583
+  (0.0ms) SAVEPOINT active_record_1
7584
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 8 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7585
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.724253"], ["id", 1]]
7586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7587
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7588
+  (0.6ms) rollback transaction
7589
+  (0.1ms) begin transaction
7590
+  (0.0ms) commit transaction
7591
+  (0.0ms) begin transaction
7592
+  (0.0ms) SAVEPOINT active_record_1
7593
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 9 LIMIT 1
7594
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 9], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.730030"], ["updated_at", "2015-11-09 05:23:34.730030"]]
7595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7596
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 9]]
7597
+  (0.0ms) SAVEPOINT active_record_1
7598
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 9 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7599
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.732776"], ["id", 1]]
7600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7601
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7602
+  (0.6ms) rollback transaction
7603
+  (0.1ms) begin transaction
7604
+  (0.0ms) commit transaction
7605
+  (0.0ms) begin transaction
7606
+  (0.0ms) SAVEPOINT active_record_1
7607
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 10 LIMIT 1
7608
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 10], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.737915"], ["updated_at", "2015-11-09 05:23:34.737915"]]
7609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7610
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 10]]
7611
+  (0.0ms) SAVEPOINT active_record_1
7612
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 10 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7613
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.740741"], ["id", 1]]
7614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7615
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7616
+  (0.7ms) rollback transaction
7617
+  (0.0ms) begin transaction
7618
+  (0.0ms) commit transaction
7619
+  (0.0ms) begin transaction
7620
+  (0.0ms) SAVEPOINT active_record_1
7621
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11 LIMIT 1
7622
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 11], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.745772"], ["updated_at", "2015-11-09 05:23:34.745772"]]
7623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7624
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 11]]
7625
+  (0.0ms) SAVEPOINT active_record_1
7626
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 11 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7627
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.748248"], ["id", 1]]
7628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7629
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7630
+  (0.7ms) rollback transaction
7631
+  (0.0ms) begin transaction
7632
+  (0.0ms) commit transaction
7633
+  (0.0ms) begin transaction
7634
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
7635
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
7636
+  (0.0ms) SAVEPOINT active_record_1
7637
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1234 LIMIT 1
7638
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 1234], ["created_at", "2015-11-09 05:23:34.753661"], ["updated_at", "2015-11-09 05:23:34.753661"]]
7639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7640
+  (0.0ms) SAVEPOINT active_record_1
7641
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1234 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7642
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "season" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["show", "Super Why!"], ["title", "The Story of Mother Goose"], ["description", "Mother Goose helps Red write a new song."], ["episode", 63], ["season", 1], ["rec_date", "2015-10-18 19:30:00.000000"], ["air_date", "2000-10-01"], ["image_id", 177446], ["updated_at", "2015-11-09 05:23:34.755720"], ["id", 1]]
7643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7644
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_shows"
7645
+  (0.8ms) rollback transaction
7646
+  (0.1ms) begin transaction
7647
+  (0.0ms) commit transaction
7648
+  (0.0ms) begin transaction
7649
+  (0.0ms) SAVEPOINT active_record_1
7650
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 12 LIMIT 1
7651
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 12], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.761349"], ["updated_at", "2015-11-09 05:23:34.761349"]]
7652
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7653
+  (0.5ms) rollback transaction
7654
+  (0.1ms) begin transaction
7655
+  (0.0ms) commit transaction
7656
+  (0.1ms) begin transaction
7657
+  (0.1ms) SAVEPOINT active_record_1
7658
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 13 LIMIT 1
7659
+ SQL (0.4ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 13], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.768002"], ["updated_at", "2015-11-09 05:23:34.768002"]]
7660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7661
+  (0.5ms) rollback transaction
7662
+  (0.1ms) begin transaction
7663
+  (0.0ms) commit transaction
7664
+  (0.0ms) begin transaction
7665
+  (0.1ms) SAVEPOINT active_record_1
7666
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 14 LIMIT 1
7667
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 14], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.774089"], ["updated_at", "2015-11-09 05:23:34.774089"]]
7668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7669
+  (0.5ms) rollback transaction
7670
+  (0.1ms) begin transaction
7671
+  (0.0ms) commit transaction
7672
+  (0.0ms) begin transaction
7673
+  (0.1ms) SAVEPOINT active_record_1
7674
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 15 LIMIT 1
7675
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 15], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.779971"], ["updated_at", "2015-11-09 05:23:34.779971"]]
7676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7677
+  (0.5ms) rollback transaction
7678
+  (0.0ms) begin transaction
7679
+  (0.0ms) commit transaction
7680
+  (0.0ms) begin transaction
7681
+  (0.0ms) SAVEPOINT active_record_1
7682
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 16 LIMIT 1
7683
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 16], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.785631"], ["updated_at", "2015-11-09 05:23:34.785631"]]
7684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7685
+  (0.4ms) rollback transaction
7686
+  (0.1ms) begin transaction
7687
+  (0.0ms) commit transaction
7688
+  (0.0ms) begin transaction
7689
+  (0.0ms) SAVEPOINT active_record_1
7690
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 17 LIMIT 1
7691
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 17], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.791239"], ["updated_at", "2015-11-09 05:23:34.791239"]]
7692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7693
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 17]]
7694
+  (0.4ms) rollback transaction
7695
+  (0.0ms) begin transaction
7696
+  (0.0ms) commit transaction
7697
+  (0.0ms) begin transaction
7698
+  (0.1ms) SAVEPOINT active_record_1
7699
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 18 LIMIT 1
7700
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 18], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.798425"], ["updated_at", "2015-11-09 05:23:34.798425"]]
7701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7702
+  (0.5ms) rollback transaction
7703
+  (0.1ms) begin transaction
7704
+  (0.0ms) commit transaction
7705
+  (0.0ms) begin transaction
7706
+  (0.0ms) SAVEPOINT active_record_1
7707
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 19 LIMIT 1
7708
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 19], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.804104"], ["updated_at", "2015-11-09 05:23:34.804104"]]
7709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7710
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 99999]]
7711
+  (0.4ms) rollback transaction
7712
+  (0.0ms) begin transaction
7713
+  (0.0ms) commit transaction
7714
+  (0.0ms) begin transaction
7715
+  (0.0ms) SAVEPOINT active_record_1
7716
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 20 LIMIT 1
7717
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 20], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.809588"], ["updated_at", "2015-11-09 05:23:34.809588"]]
7718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7719
+ Processing by TabloConnect::CopyController#status as HTML
7720
+ Parameters: {"tablo_id"=>"20", "type"=>"show"}
7721
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 20]]
7722
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
7723
+  (0.5ms) rollback transaction
7724
+  (0.1ms) begin transaction
7725
+  (0.0ms) commit transaction
7726
+  (0.0ms) begin transaction
7727
+  (0.0ms) SAVEPOINT active_record_1
7728
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 21 LIMIT 1
7729
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 21], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.816994"], ["updated_at", "2015-11-09 05:23:34.816994"]]
7730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7731
+ Processing by TabloConnect::CopyController#status as HTML
7732
+ Parameters: {"tablo_id"=>"21", "type"=>"show"}
7733
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 21]]
7734
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
7735
+  (0.5ms) rollback transaction
7736
+  (0.0ms) begin transaction
7737
+  (0.0ms) commit transaction
7738
+  (0.1ms) begin transaction
7739
+  (0.0ms) SAVEPOINT active_record_1
7740
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 22 LIMIT 1
7741
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 22], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.823144"], ["updated_at", "2015-11-09 05:23:34.823144"]]
7742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7743
+ Processing by TabloConnect::CopyController#status as HTML
7744
+ Parameters: {"tablo_id"=>"22", "type"=>"show"}
7745
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 22]]
7746
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
7747
+  (0.4ms) rollback transaction
7748
+  (0.1ms) begin transaction
7749
+  (0.0ms) commit transaction
7750
+  (0.0ms) begin transaction
7751
+  (0.0ms) SAVEPOINT active_record_1
7752
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 23 LIMIT 1
7753
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 23], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.829680"], ["updated_at", "2015-11-09 05:23:34.829680"]]
7754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7755
+  (0.4ms) rollback transaction
7756
+  (0.0ms) begin transaction
7757
+  (0.0ms) commit transaction
7758
+  (0.0ms) begin transaction
7759
+  (0.0ms) SAVEPOINT active_record_1
7760
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 24 LIMIT 1
7761
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 24], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.834363"], ["updated_at", "2015-11-09 05:23:34.834363"]]
7762
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7763
+  (0.4ms) rollback transaction
7764
+  (0.1ms) begin transaction
7765
+  (0.0ms) commit transaction
7766
+  (0.1ms) begin transaction
7767
+  (0.0ms) SAVEPOINT active_record_1
7768
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 25 LIMIT 1
7769
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 25], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.839959"], ["updated_at", "2015-11-09 05:23:34.839959"]]
7770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7771
+  (0.4ms) rollback transaction
7772
+  (0.0ms) begin transaction
7773
+  (0.0ms) commit transaction
7774
+  (0.0ms) begin transaction
7775
+  (0.0ms) SAVEPOINT active_record_1
7776
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 26 LIMIT 1
7777
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 26], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.844872"], ["updated_at", "2015-11-09 05:23:34.844872"]]
7778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7779
+  (0.3ms) rollback transaction
7780
+  (0.0ms) begin transaction
7781
+  (0.0ms) commit transaction
7782
+  (0.0ms) begin transaction
7783
+  (0.0ms) SAVEPOINT active_record_1
7784
+ TabloConnect::Show Exists (0.2ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 27 LIMIT 1
7785
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 27], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.849977"], ["updated_at", "2015-11-09 05:23:34.849977"]]
7786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7787
+  (0.1ms) SAVEPOINT active_record_1
7788
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 27 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7789
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.852836"], ["id", 1]]
7790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7791
+  (0.7ms) rollback transaction
7792
+  (0.0ms) begin transaction
7793
+  (0.0ms) commit transaction
7794
+  (0.0ms) begin transaction
7795
+  (0.0ms) SAVEPOINT active_record_1
7796
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28 LIMIT 1
7797
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 28], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.857711"], ["updated_at", "2015-11-09 05:23:34.857711"]]
7798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7799
+  (0.0ms) SAVEPOINT active_record_1
7800
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 28 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7801
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 2], ["updated_at", "2015-11-09 05:23:34.860312"], ["id", 1]]
7802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7803
+  (0.6ms) rollback transaction
7804
+  (0.1ms) begin transaction
7805
+  (0.0ms) commit transaction
7806
+  (0.0ms) begin transaction
7807
+  (0.0ms) SAVEPOINT active_record_1
7808
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 29 LIMIT 1
7809
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 29], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.864827"], ["updated_at", "2015-11-09 05:23:34.864827"]]
7810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7811
+  (0.0ms) SAVEPOINT active_record_1
7812
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 29 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7813
+ SQL (0.2ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 2], ["updated_at", "2015-11-09 05:23:34.866960"], ["id", 1]]
7814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7815
+  (0.8ms) rollback transaction
7816
+  (0.1ms) begin transaction
7817
+  (0.0ms) commit transaction
7818
+  (0.0ms) begin transaction
7819
+  (0.0ms) SAVEPOINT active_record_1
7820
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 30 LIMIT 1
7821
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 30], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.871799"], ["updated_at", "2015-11-09 05:23:34.871799"]]
7822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7823
+  (0.0ms) SAVEPOINT active_record_1
7824
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 30 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7825
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.874291"], ["id", 1]]
7826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7827
+  (0.0ms) SAVEPOINT active_record_1
7828
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 30 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7829
+ SQL (0.1ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 0], ["updated_at", "2015-11-09 05:23:34.876055"], ["id", 1]]
7830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7831
+  (0.6ms) rollback transaction
7832
+  (0.0ms) begin transaction
7833
+  (0.0ms) commit transaction
7834
+  (0.0ms) begin transaction
7835
+  (0.1ms) SAVEPOINT active_record_1
7836
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 31 LIMIT 1
7837
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 31], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.880804"], ["updated_at", "2015-11-09 05:23:34.880804"]]
7838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7839
+ Processing by TabloConnect::CopyController#index as HTML
7840
+ Parameters: {"tablo_id"=>"31", "type"=>"show"}
7841
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 31]]
7842
+  (0.0ms) SAVEPOINT active_record_1
7843
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 31 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7844
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.884657"], ["id", 1]]
7845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7846
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
7847
+  (0.7ms) rollback transaction
7848
+  (0.0ms) begin transaction
7849
+  (0.0ms) commit transaction
7850
+  (0.0ms) begin transaction
7851
+  (0.0ms) SAVEPOINT active_record_1
7852
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 32 LIMIT 1
7853
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 32], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.889808"], ["updated_at", "2015-11-09 05:23:34.889808"]]
7854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7855
+ Processing by TabloConnect::CopyController#index as HTML
7856
+ Parameters: {"tablo_id"=>"32", "type"=>"show"}
7857
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 32]]
7858
+  (0.0ms) SAVEPOINT active_record_1
7859
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 32 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7860
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.893868"], ["id", 1]]
7861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7862
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
7863
+  (0.8ms) rollback transaction
7864
+  (0.2ms) begin transaction
7865
+  (0.1ms) commit transaction
7866
+  (0.1ms) begin transaction
7867
+  (0.1ms) SAVEPOINT active_record_1
7868
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 33 LIMIT 1
7869
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 33], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.900797"], ["updated_at", "2015-11-09 05:23:34.900797"]]
7870
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7871
+ Processing by TabloConnect::CopyController#index as HTML
7872
+ Parameters: {"tablo_id"=>"33", "type"=>"show"}
7873
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 33]]
7874
+  (0.1ms) SAVEPOINT active_record_1
7875
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 33 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7876
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.905700"], ["id", 1]]
7877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7878
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
7879
+  (0.7ms) rollback transaction
7880
+  (0.1ms) begin transaction
7881
+  (0.0ms) commit transaction
7882
+  (0.0ms) begin transaction
7883
+  (0.1ms) SAVEPOINT active_record_1
7884
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 34 LIMIT 1
7885
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 34], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.911711"], ["updated_at", "2015-11-09 05:23:34.911711"]]
7886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7887
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 34]]
7888
+ Processing by TabloConnect::CopyController#index as HTML
7889
+ Parameters: {"tablo_id"=>"34", "type"=>"show"}
7890
+ TabloConnect::Show Load (0.0ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 34]]
7891
+  (0.0ms) SAVEPOINT active_record_1
7892
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 34 AND "tablo_connect_shows"."id" != 1) LIMIT 1
7893
+ SQL (0.3ms) UPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ? [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.915971"], ["id", 1]]
7894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7895
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.5ms)
7896
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
7897
+  (0.8ms) rollback transaction
7898
+  (0.0ms) begin transaction
7899
+  (0.0ms) commit transaction
7900
+  (0.0ms) begin transaction
7901
+  (0.1ms) SAVEPOINT active_record_1
7902
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 35 LIMIT 1
7903
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 35], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.922342"], ["updated_at", "2015-11-09 05:23:34.922342"]]
7904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7905
+ Processing by TabloConnect::CopyController#index as HTML
7906
+ Parameters: {"tablo_id"=>"99999", "type"=>"some_type"}
7907
+ Filter chain halted as :set_item rendered or redirected
7908
+ Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
7909
+  (0.5ms) rollback transaction
7910
+  (0.0ms) begin transaction
7911
+  (0.0ms) commit transaction
7912
+  (0.0ms) begin transaction
7913
+  (0.0ms) SAVEPOINT active_record_1
7914
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 36 LIMIT 1
7915
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 36], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.928635"], ["updated_at", "2015-11-09 05:23:34.928635"]]
7916
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7917
+  (0.3ms) rollback transaction
7918
+  (0.1ms) begin transaction
7919
+  (0.0ms) commit transaction
7920
+  (0.0ms) begin transaction
7921
+  (0.0ms) SAVEPOINT active_record_1
7922
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 9 LIMIT 1
7923
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 9], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.933331"], ["updated_at", "2015-11-09 05:23:34.933331"]]
7924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7925
+ Processing by TabloConnect::MoviesController#index as HTML
7926
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
7927
+  (0.6ms) rollback transaction
7928
+  (0.1ms) begin transaction
7929
+  (0.1ms) commit transaction
7930
+  (0.1ms) begin transaction
7931
+  (0.1ms) SAVEPOINT active_record_1
7932
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10 LIMIT 1
7933
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 10], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.940365"], ["updated_at", "2015-11-09 05:23:34.940365"]]
7934
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7935
+ Processing by TabloConnect::MoviesController#index as HTML
7936
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
7937
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
7938
+  (0.5ms) rollback transaction
7939
+  (0.1ms) begin transaction
7940
+  (0.1ms) commit transaction
7941
+  (0.0ms) begin transaction
7942
+  (0.1ms) SAVEPOINT active_record_1
7943
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 11 LIMIT 1
7944
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 11], ["title", "MyString"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.947980"], ["updated_at", "2015-11-09 05:23:34.947980"]]
7945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7946
+ Processing by TabloConnect::MoviesController#index as HTML
7947
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
7948
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
7949
+  (0.4ms) rollback transaction
7950
+  (0.1ms) begin transaction
7951
+  (0.0ms) commit transaction
7952
+  (0.0ms) begin transaction
7953
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" IS NULL LIMIT 1
7954
+  (0.1ms) rollback transaction
7955
+  (0.1ms) begin transaction
7956
+  (0.0ms) commit transaction
7957
+  (0.0ms) begin transaction
7958
+  (0.0ms) SAVEPOINT active_record_1
7959
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 12 LIMIT 1
7960
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 12], ["title", "B starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.964438"], ["updated_at", "2015-11-09 05:23:34.964438"]]
7961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7962
+  (0.0ms) SAVEPOINT active_record_1
7963
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 13 LIMIT 1
7964
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 13], ["title", "A starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.966633"], ["updated_at", "2015-11-09 05:23:34.966633"]]
7965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7966
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
7967
+  (0.6ms) rollback transaction
7968
+  (0.1ms) begin transaction
7969
+  (0.0ms) commit transaction
7970
+  (0.0ms) begin transaction
7971
+  (0.0ms) SAVEPOINT active_record_1
7972
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 14 LIMIT 1
7973
+ SQL (0.2ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 14], ["title", "B starts the title"], ["description", "MyText"], ["release_year", 2011], ["air_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.971191"], ["updated_at", "2015-11-09 05:23:34.971191"]]
7974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7975
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_movies"
7976
+ SQL (0.1ms) DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? [["tablo_id", 14]]
7977
+  (0.0ms) SELECT COUNT(*) FROM "tablo_connect_movies"
7978
+  (0.6ms) rollback transaction
7979
+  (0.1ms) begin transaction
7980
+  (0.0ms) commit transaction
7981
+  (0.0ms) begin transaction
7982
+ TabloConnect::Movie Load (0.1ms) SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."id" ASC LIMIT 1
7983
+  (0.1ms) SAVEPOINT active_record_1
7984
+ SQL (0.3ms) INSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 0], ["created_at", "2015-11-09 05:23:34.978452"], ["updated_at", "2015-11-09 05:23:34.978452"]]
7985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
7986
+ TabloConnect::Movie Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 0 LIMIT 1
7987
+  (0.6ms) rollback transaction
7988
+  (0.1ms) begin transaction
7989
+  (0.0ms) commit transaction
7990
+  (0.1ms) begin transaction
7991
+  (0.1ms) SAVEPOINT active_record_1
7992
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 37 LIMIT 1
7993
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 37], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.987109"], ["updated_at", "2015-11-09 05:23:34.987109"]]
7994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7995
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
7996
+ SQL (0.1ms) DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? [["tablo_id", 37]]
7997
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows"
7998
+  (0.5ms) rollback transaction
7999
+  (0.1ms) begin transaction
8000
+  (0.0ms) commit transaction
8001
+  (0.0ms) begin transaction
8002
+  (0.0ms) SAVEPOINT active_record_1
8003
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 38 LIMIT 1
8004
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 38], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.993425"], ["updated_at", "2015-11-09 05:23:34.993425"]]
8005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8006
+  (0.0ms) SAVEPOINT active_record_1
8007
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 39 LIMIT 1
8008
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 39], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.995668"], ["updated_at", "2015-11-09 05:23:34.995668"]]
8009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8010
+  (0.0ms) SAVEPOINT active_record_1
8011
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 40 LIMIT 1
8012
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 40], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:34.998383"], ["updated_at", "2015-11-09 05:23:34.998383"]]
8013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8014
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8015
+ TabloConnect::Show Load (0.2ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
8016
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
8017
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
8018
+  (0.8ms) rollback transaction
8019
+  (0.1ms) begin transaction
8020
+  (0.0ms) commit transaction
8021
+  (0.0ms) begin transaction
8022
+  (0.0ms) SAVEPOINT active_record_1
8023
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 41 LIMIT 1
8024
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 41], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.007375"], ["updated_at", "2015-11-09 05:23:35.007375"]]
8025
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8026
+  (0.0ms) SAVEPOINT active_record_1
8027
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 42 LIMIT 1
8028
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 42], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.009686"], ["updated_at", "2015-11-09 05:23:35.009686"]]
8029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8030
+  (0.0ms) SAVEPOINT active_record_1
8031
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 43 LIMIT 1
8032
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 43], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.011935"], ["updated_at", "2015-11-09 05:23:35.011935"]]
8033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8034
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8035
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
8036
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
8037
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
8038
+  (0.6ms) rollback transaction
8039
+  (0.1ms) begin transaction
8040
+  (0.0ms) commit transaction
8041
+  (0.0ms) begin transaction
8042
+  (0.0ms) SAVEPOINT active_record_1
8043
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 44 LIMIT 1
8044
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 44], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.017908"], ["updated_at", "2015-11-09 05:23:35.017908"]]
8045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8046
+  (0.0ms) SAVEPOINT active_record_1
8047
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 45 LIMIT 1
8048
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 45], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.020186"], ["updated_at", "2015-11-09 05:23:35.020186"]]
8049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8050
+  (0.0ms) SAVEPOINT active_record_1
8051
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 46 LIMIT 1
8052
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 46], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.022442"], ["updated_at", "2015-11-09 05:23:35.022442"]]
8053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8054
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8055
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
8056
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
8057
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
8058
+  (0.6ms) rollback transaction
8059
+  (0.1ms) begin transaction
8060
+  (0.0ms) commit transaction
8061
+  (0.0ms) begin transaction
8062
+  (0.0ms) SAVEPOINT active_record_1
8063
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 47 LIMIT 1
8064
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 47], ["show", "Charles in Charge"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.028306"], ["updated_at", "2015-11-09 05:23:35.028306"]]
8065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8066
+  (0.0ms) SAVEPOINT active_record_1
8067
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 48 LIMIT 1
8068
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 48], ["show", "Mr. Belvedere"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.030525"], ["updated_at", "2015-11-09 05:23:35.030525"]]
8069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8070
+  (0.0ms) SAVEPOINT active_record_1
8071
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 49 LIMIT 1
8072
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 49], ["show", "Robotech"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.032690"], ["updated_at", "2015-11-09 05:23:35.032690"]]
8073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8074
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8075
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Charles in Charge"]]
8076
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Mr. Belvedere"]]
8077
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Robotech"]]
8078
+  (0.7ms) rollback transaction
8079
+  (0.1ms) begin transaction
8080
+  (0.0ms) commit transaction
8081
+  (0.0ms) begin transaction
8082
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" ORDER BY "tablo_connect_shows"."id" ASC LIMIT 1
8083
+  (0.0ms) SAVEPOINT active_record_1
8084
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?) [["tablo_id", 0], ["created_at", "2015-11-09 05:23:35.039883"], ["updated_at", "2015-11-09 05:23:35.039883"]]
8085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8086
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 0 LIMIT 1
8087
+  (0.5ms) rollback transaction
8088
+  (0.1ms) begin transaction
8089
+  (0.0ms) commit transaction
8090
+  (0.1ms) begin transaction
8091
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" IS NULL LIMIT 1
8092
+  (0.1ms) rollback transaction
8093
+  (0.0ms) begin transaction
8094
+  (0.1ms) commit transaction
8095
+  (0.0ms) begin transaction
8096
+  (0.0ms) SAVEPOINT active_record_1
8097
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 50 LIMIT 1
8098
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 50], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.053094"], ["updated_at", "2015-11-09 05:23:35.053094"]]
8099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8100
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8101
+  (0.6ms) rollback transaction
8102
+  (0.0ms) begin transaction
8103
+  (0.0ms) commit transaction
8104
+  (0.0ms) begin transaction
8105
+  (0.1ms) SAVEPOINT active_record_1
8106
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 51 LIMIT 1
8107
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 51], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.057658"], ["updated_at", "2015-11-09 05:23:35.057658"]]
8108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8109
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8110
+  (0.4ms) rollback transaction
8111
+  (0.1ms) begin transaction
8112
+  (0.0ms) commit transaction
8113
+  (0.0ms) begin transaction
8114
+  (0.0ms) SAVEPOINT active_record_1
8115
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 52 LIMIT 1
8116
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 52], ["show", "Alf"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.061995"], ["updated_at", "2015-11-09 05:23:35.061995"]]
8117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8118
+  (0.0ms) SAVEPOINT active_record_1
8119
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 53 LIMIT 1
8120
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 53], ["show", "Alf"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.064181"], ["updated_at", "2015-11-09 05:23:35.064181"]]
8121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8122
+  (0.1ms) SAVEPOINT active_record_1
8123
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 54 LIMIT 1
8124
+ SQL (0.1ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 54], ["show", "Three's Company"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.067140"], ["updated_at", "2015-11-09 05:23:35.067140"]]
8125
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8126
+  (0.1ms) SELECT COUNT(*) FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? [["show", "Alf"]]
8127
+  (0.8ms) rollback transaction
8128
+  (0.1ms) begin transaction
8129
+  (0.0ms) commit transaction
8130
+  (0.0ms) begin transaction
8131
+  (0.0ms) SAVEPOINT active_record_1
8132
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 55 LIMIT 1
8133
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 55], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.073194"], ["updated_at", "2015-11-09 05:23:35.073194"]]
8134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8135
+ Processing by TabloConnect::ShowsController#index as HTML
8136
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
8137
+  (0.6ms) rollback transaction
8138
+  (0.1ms) begin transaction
8139
+  (0.0ms) commit transaction
8140
+  (0.1ms) begin transaction
8141
+  (0.1ms) SAVEPOINT active_record_1
8142
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 56 LIMIT 1
8143
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 56], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.080559"], ["updated_at", "2015-11-09 05:23:35.080559"]]
8144
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8145
+ Processing by TabloConnect::ShowsController#index as HTML
8146
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8147
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Angle of Attack"]]
8148
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
8149
+  (0.5ms) rollback transaction
8150
+  (0.1ms) begin transaction
8151
+  (0.0ms) commit transaction
8152
+  (0.0ms) begin transaction
8153
+  (0.0ms) SAVEPOINT active_record_1
8154
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 57 LIMIT 1
8155
+ SQL (0.2ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 57], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.087900"], ["updated_at", "2015-11-09 05:23:35.087900"]]
8156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8157
+ Processing by TabloConnect::ShowsController#index as HTML
8158
+  (0.1ms) SELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC
8159
+ TabloConnect::Show Load (0.1ms) SELECT DISTINCT "tablo_connect_shows"."image_id" FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."image_id" DESC LIMIT 1 [["show", "Angle of Attack"]]
8160
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
8161
+  (0.6ms) rollback transaction
8162
+  (0.1ms) begin transaction
8163
+  (0.0ms) commit transaction
8164
+  (0.0ms) begin transaction
8165
+  (0.1ms) SAVEPOINT active_record_1
8166
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 58 LIMIT 1
8167
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 58], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.096000"], ["updated_at", "2015-11-09 05:23:35.096000"]]
8168
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8169
+ Processing by TabloConnect::ShowsController#episodes as HTML
8170
+ Parameters: {"show"=>"Angle of Attack"}
8171
+ TabloConnect::Show Load (0.2ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."season" ASC, "tablo_connect_shows"."episode" ASC, "tablo_connect_shows"."rec_date" ASC, "tablo_connect_shows"."title" ASC [["show", "Angle of Attack"]]
8172
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
8173
+  (0.5ms) rollback transaction
8174
+  (0.1ms) begin transaction
8175
+  (0.0ms) commit transaction
8176
+  (0.1ms) begin transaction
8177
+  (0.1ms) SAVEPOINT active_record_1
8178
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 59 LIMIT 1
8179
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 59], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.104957"], ["updated_at", "2015-11-09 05:23:35.104957"]]
8180
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8181
+ Processing by TabloConnect::ShowsController#episodes as HTML
8182
+ Parameters: {"show"=>"Angle of Attack"}
8183
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
8184
+  (0.5ms) rollback transaction
8185
+  (0.1ms) begin transaction
8186
+  (0.0ms) commit transaction
8187
+  (0.0ms) begin transaction
8188
+  (0.1ms) SAVEPOINT active_record_1
8189
+ TabloConnect::Show Exists (0.1ms) SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 60 LIMIT 1
8190
+ SQL (0.3ms) INSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["tablo_id", 60], ["show", "Angle of Attack"], ["title", "The Harder They Fall"], ["description", "Lorem Ipsum Dolor Sit Emit"], ["episode", 1], ["season", 1], ["air_date", "2015-11-01"], ["rec_date", "2015-11-01 00:00:00.000000"], ["image_id", 1], ["created_at", "2015-11-09 05:23:35.112522"], ["updated_at", "2015-11-09 05:23:35.112522"]]
8191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8192
+ Processing by TabloConnect::ShowsController#episodes as HTML
8193
+ Parameters: {"show"=>"Angle of Attack"}
8194
+ TabloConnect::Show Load (0.1ms) SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? ORDER BY "tablo_connect_shows"."season" ASC, "tablo_connect_shows"."episode" ASC, "tablo_connect_shows"."rec_date" ASC, "tablo_connect_shows"."title" ASC [["show", "Angle of Attack"]]
8195
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
8196
+  (0.4ms) rollback transaction