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 +4 -4
- data/README.md +7 -4
- data/app/assets/javascripts/tablo_connect/ng_app/modules/tablo_sync/templates/tablo_sync.html +1 -1
- data/app/controllers/tablo_connect/sync_controller.rb +1 -1
- data/lib/tablo_connect/version.rb +1 -1
- data/spec/controllers/tablo_connect/sync_controller_spec.rb +2 -2
- data/spec/test_app/db/test.sqlite3 +0 -0
- data/spec/test_app/log/test.log +2635 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b024f7790404954ac14c778ac0fa9a3831ed8f17
|
4
|
+
data.tar.gz: b90e132e3e0f0315721d14b52a869f4edb291134
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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'
|
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
|
-
|
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.
|
data/app/assets/javascripts/tablo_connect/ng_app/modules/tablo_sync/templates/tablo_sync.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
<div ng-switch="syncing">
|
2
|
-
<a ng-click="syncRecordings()" ng-switch-when="false" class="btn btn-info">
|
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(:[], :
|
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
|
@@ -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[:
|
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
|
data/spec/test_app/log/test.log
CHANGED
@@ -5559,3 +5559,2638 @@ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
|
5559
5559
|
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 1], ["updated_at", "2015-11-09 00:18:41.406844"], ["id", 1]]
|
5560
5560
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5561
5561
|
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
5562
|
+
[1m[36m (1.6ms)[0m [1mDELETE FROM "tablo_connect_movies";[0m
|
5563
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5564
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'tablo_connect_movies';[0m
|
5565
|
+
[1m[35m (1.1ms)[0m DELETE FROM "tablo_connect_shows";
|
5566
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5567
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
|
5568
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5569
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5570
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5571
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5572
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1 LIMIT 1[0m
|
5573
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5575
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
5576
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ?[0m [["tablo_id", 1]]
|
5577
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
5578
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
5579
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5580
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5581
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5582
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5583
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 2 LIMIT 1
|
5584
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5586
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5587
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 3 LIMIT 1
|
5588
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5590
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC[0m
|
5591
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5592
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5593
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5594
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5595
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."id" ASC LIMIT 1
|
5596
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5597
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5599
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 0 LIMIT 1
|
5600
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
5601
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5602
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5603
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5604
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" IS NULL LIMIT 1[0m
|
5605
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5606
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5607
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5608
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5609
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5610
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5611
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5612
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5613
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5615
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5617
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5618
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1[0m
|
5619
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5621
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
|
5622
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5623
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5624
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5626
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5627
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
5628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5629
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5630
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5632
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 2 LIMIT 1[0m
|
5633
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5635
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 2]]
|
5636
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5637
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 2 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5638
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5640
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5641
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
5642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5643
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5644
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5645
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5646
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 3 LIMIT 1[0m
|
5647
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5649
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 3]]
|
5650
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5651
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 3 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5652
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5654
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5655
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
5656
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5657
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5658
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5659
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5660
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 4 LIMIT 1[0m
|
5661
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5663
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 4]]
|
5664
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5665
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 4 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5666
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5668
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5669
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5670
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5671
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5672
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5673
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5674
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 5 LIMIT 1[0m
|
5675
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5677
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 5]]
|
5678
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5679
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 5 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5680
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5682
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5683
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5684
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5685
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5686
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5687
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5688
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 6 LIMIT 1[0m
|
5689
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5691
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
|
5692
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5693
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 6 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5694
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5696
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5697
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
5698
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5699
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5700
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5701
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5702
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7 LIMIT 1[0m
|
5703
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5705
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 7]]
|
5706
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5707
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 7 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5708
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5710
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5711
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5712
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5713
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5714
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5716
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 8 LIMIT 1[0m
|
5717
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5719
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 8]]
|
5720
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5721
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 8 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5722
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5724
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
5725
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5727
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5728
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5729
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5730
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 9 LIMIT 1[0m
|
5731
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5733
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
5734
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 9]]
|
5735
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5736
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 9 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
5737
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5739
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
5740
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
5741
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5742
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5743
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5744
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
5745
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
|
5746
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5747
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1234 LIMIT 1
|
5748
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["tablo_id", 1234], ["created_at", "2015-11-09 05:18:24.336811"], ["updated_at", "2015-11-09 05:18:24.336811"]]
|
5749
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5750
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5751
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1234 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
5752
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "season" = ?, "rec_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5754
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
5755
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5757
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5759
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5760
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5761
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5762
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5763
|
+
Processing by TabloConnect::SyncController#index as HTML
|
5764
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
5765
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5766
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5767
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5768
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5769
|
+
Processing by TabloConnect::SyncController#index as HTML
|
5770
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
5771
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5772
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5773
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5774
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5775
|
+
Processing by TabloConnect::SyncController#index as HTML
|
5776
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
5777
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5778
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5779
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5780
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5781
|
+
Processing by TabloConnect::SyncController#index as HTML
|
5782
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
5783
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5785
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5786
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5787
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5788
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 4 LIMIT 1[0m
|
5789
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5791
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5792
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 10 LIMIT 1[0m
|
5793
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5795
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
|
5796
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"[0m
|
5797
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10
|
5798
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
5799
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5800
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5801
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5802
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5803
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 5 LIMIT 1
|
5804
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5806
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5807
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11 LIMIT 1
|
5808
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5810
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"[0m
|
5811
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
|
5812
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11[0m
|
5813
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5815
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5817
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5818
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 6 LIMIT 1[0m
|
5819
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5821
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
|
5822
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5823
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 6 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
5824
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5826
|
+
[1m[36mTabloConnect::Movie Load (0.2ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
5827
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
5828
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5829
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5830
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5831
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5832
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 7 LIMIT 1[0m
|
5833
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5835
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
5836
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 7]]
|
5837
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5838
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 7 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
5839
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5841
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
5842
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
5843
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5844
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5845
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5846
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5847
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8 LIMIT 1
|
5848
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5850
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 8]]
|
5851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5852
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 8 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
5853
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5855
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
|
5856
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
5857
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5858
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5859
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5861
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 9 LIMIT 1
|
5862
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5864
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 9]]
|
5865
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5866
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 9 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
5867
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5869
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
|
5870
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
5871
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5872
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5873
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5874
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5875
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10 LIMIT 1
|
5876
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5878
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 10]]
|
5879
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5880
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 10 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
5881
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5883
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
|
5884
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
5885
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5886
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5887
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5888
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5889
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 11 LIMIT 1
|
5890
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5892
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 11]]
|
5893
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5894
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 11 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
5895
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5897
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
|
5898
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
5899
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5900
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5901
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5902
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
5903
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
|
5904
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5905
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1234 LIMIT 1
|
5906
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["tablo_id", 1234], ["created_at", "2015-11-09 05:18:24.431746"], ["updated_at", "2015-11-09 05:18:24.431746"]]
|
5907
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5908
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5909
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1234 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
5910
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5912
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
5913
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
5914
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5915
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5916
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5917
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" IS NULL LIMIT 1
|
5918
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5919
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5920
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5921
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5922
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5923
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 12 LIMIT 1
|
5924
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5926
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5927
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 13 LIMIT 1
|
5928
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5930
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5931
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 14 LIMIT 1
|
5932
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5934
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
5935
|
+
[1m[35mTabloConnect::Show Load (0.2ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
5937
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
5939
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5940
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5941
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5942
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5943
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 15 LIMIT 1
|
5944
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5946
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5947
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 16 LIMIT 1
|
5948
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5950
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5951
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 17 LIMIT 1
|
5952
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5954
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
5955
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
5957
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
5959
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5960
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5961
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5962
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5963
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 18 LIMIT 1
|
5964
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5966
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5967
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 19 LIMIT 1
|
5968
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5970
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5971
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 20 LIMIT 1
|
5972
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5974
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
5975
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
5977
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
5979
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5980
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5981
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5982
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5983
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 21 LIMIT 1
|
5984
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5986
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5987
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 22 LIMIT 1
|
5988
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5990
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5991
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 23 LIMIT 1
|
5992
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5994
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
5995
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
5997
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
5999
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6000
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6001
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6002
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6003
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 24 LIMIT 1
|
6004
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6006
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6007
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 25 LIMIT 1
|
6008
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6010
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6011
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 26 LIMIT 1
|
6012
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6014
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ?[0m [["show", "Alf"]]
|
6015
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
6016
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6017
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6018
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6019
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6020
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 27 LIMIT 1[0m
|
6021
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6023
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6025
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6026
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6027
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6028
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6029
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28 LIMIT 1
|
6030
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6032
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
6033
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6034
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6035
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6036
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6037
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6038
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 29 LIMIT 1[0m
|
6039
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6041
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
6042
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ?[0m [["tablo_id", 29]]
|
6043
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
6044
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
6045
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6046
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6047
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6048
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" ORDER BY "tablo_connect_shows"."id" ASC LIMIT 1[0m
|
6049
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6050
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["tablo_id", 0], ["created_at", "2015-11-09 05:18:24.522323"], ["updated_at", "2015-11-09 05:18:24.522323"]]
|
6051
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6052
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 0 LIMIT 1[0m
|
6053
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6054
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6055
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6056
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6057
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6058
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 30 LIMIT 1[0m
|
6059
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6061
|
+
Processing by TabloConnect::ShowsController#index as HTML
|
6062
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
6063
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6064
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6065
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6066
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6067
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6068
|
+
[1m[36mTabloConnect::Show Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 31 LIMIT 1[0m
|
6069
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6071
|
+
Processing by TabloConnect::ShowsController#index as HTML
|
6072
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Angle of Attack"]]
|
6074
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
6075
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6077
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6078
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6079
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6080
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 32 LIMIT 1[0m
|
6081
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6083
|
+
Processing by TabloConnect::ShowsController#index as HTML
|
6084
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Angle of Attack"]]
|
6086
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
6087
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6089
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6090
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6091
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6092
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 33 LIMIT 1[0m
|
6093
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6095
|
+
Processing by TabloConnect::ShowsController#episodes as HTML
|
6096
|
+
Parameters: {"show"=>"Angle of Attack"}
|
6097
|
+
[1m[35mTabloConnect::Show Load (0.2ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6100
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6101
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6102
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6103
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6104
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 34 LIMIT 1
|
6105
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6107
|
+
Processing by TabloConnect::ShowsController#episodes as HTML
|
6108
|
+
Parameters: {"show"=>"Angle of Attack"}
|
6109
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "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[0m [["show", "Angle of Attack"]]
|
6110
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
6111
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6113
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6114
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6115
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6116
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 35 LIMIT 1[0m
|
6117
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6123
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6124
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6125
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6127
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 12 LIMIT 1[0m
|
6128
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6130
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
6131
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6134
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6135
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6136
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6137
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6138
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 13 LIMIT 1
|
6139
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6141
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
6142
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC[0m
|
6143
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
6144
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6145
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6146
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6147
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6148
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6149
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 14 LIMIT 1[0m
|
6150
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6152
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
6153
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
6154
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6155
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6156
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6157
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6158
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6159
|
+
[1m[36mTabloConnect::Show Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 36 LIMIT 1[0m
|
6160
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6162
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6163
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6164
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6165
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6166
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6167
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 37 LIMIT 1[0m
|
6168
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6170
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6172
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6173
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6174
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6175
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 38 LIMIT 1[0m
|
6176
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6178
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6179
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6180
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6182
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6183
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 39 LIMIT 1[0m
|
6184
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6186
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6187
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6188
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6189
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6190
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6191
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 40 LIMIT 1[0m
|
6192
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6194
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6196
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6197
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6198
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6199
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 41 LIMIT 1[0m
|
6200
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6202
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 41]]
|
6203
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
6204
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6205
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6206
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6207
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6208
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 42 LIMIT 1
|
6209
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6211
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 99999]]
|
6212
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6213
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6214
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6216
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6217
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 43 LIMIT 1[0m
|
6218
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6220
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6221
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6222
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6223
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6224
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6225
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 44 LIMIT 1[0m
|
6226
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6228
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6229
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6230
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6232
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6233
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 45 LIMIT 1[0m
|
6234
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6236
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6237
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6238
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6240
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6241
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 46 LIMIT 1[0m
|
6242
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6244
|
+
Processing by TabloConnect::CopyController#index as HTML
|
6245
|
+
Parameters: {"tablo_id"=>"46", "type"=>"show"}
|
6246
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 46]]
|
6247
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6248
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 46 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
6249
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 1], ["updated_at", "2015-11-09 05:18:24.659855"], ["id", 1]]
|
6250
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6251
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
6252
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
6253
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6254
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6255
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6256
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6257
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 47 LIMIT 1
|
6258
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6260
|
+
Processing by TabloConnect::CopyController#index as HTML
|
6261
|
+
Parameters: {"tablo_id"=>"47", "type"=>"show"}
|
6262
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 47]]
|
6263
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6264
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 47 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6265
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6267
|
+
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.5ms)
|
6268
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6269
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6270
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6271
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6272
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6273
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 48 LIMIT 1[0m
|
6274
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6276
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 48]]
|
6280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6281
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 48 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6282
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6284
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.4ms)
|
6285
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
6286
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
6287
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6288
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6289
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6290
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6291
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 49 LIMIT 1
|
6292
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6294
|
+
Processing by TabloConnect::CopyController#index as HTML
|
6295
|
+
Parameters: {"tablo_id"=>"49", "type"=>"show"}
|
6296
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 49]]
|
6297
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6298
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 49 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6299
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6301
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
6302
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6303
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6304
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6306
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6307
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 50 LIMIT 1[0m
|
6308
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6315
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
6316
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6318
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6319
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 51 LIMIT 1[0m
|
6320
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6322
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6323
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 51 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6324
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6327
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 51 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6328
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6330
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6331
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6332
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6333
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6334
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6335
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 52 LIMIT 1[0m
|
6336
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6338
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6339
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 52 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6340
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6342
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6343
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6344
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6346
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6347
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 53 LIMIT 1[0m
|
6348
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6350
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6351
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 53 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6352
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6354
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6356
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6357
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6358
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6359
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 54 LIMIT 1[0m
|
6360
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6362
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6363
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 54 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6364
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6366
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6368
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6369
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6370
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6371
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 55 LIMIT 1[0m
|
6372
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6374
|
+
Processing by TabloConnect::CopyController#status as HTML
|
6375
|
+
Parameters: {"tablo_id"=>"55", "type"=>"show"}
|
6376
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6379
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6380
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
6381
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6382
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6383
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 56 LIMIT 1
|
6384
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6386
|
+
Processing by TabloConnect::CopyController#status as HTML
|
6387
|
+
Parameters: {"tablo_id"=>"56", "type"=>"show"}
|
6388
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 56]]
|
6389
|
+
Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
6390
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6391
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6392
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6393
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6394
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6395
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 57 LIMIT 1[0m
|
6396
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6398
|
+
Processing by TabloConnect::CopyController#status as HTML
|
6399
|
+
Parameters: {"tablo_id"=>"57", "type"=>"show"}
|
6400
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6403
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6404
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6405
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6406
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6407
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 58 LIMIT 1
|
6408
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6410
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
6411
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6412
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6413
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6414
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6415
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 59 LIMIT 1
|
6416
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6418
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
6419
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6420
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
6421
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6422
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6423
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 60 LIMIT 1
|
6424
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6426
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
6427
|
+
[1m[36m (2.9ms)[0m [1mDELETE FROM "tablo_connect_movies";[0m
|
6428
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6429
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'tablo_connect_movies';[0m
|
6430
|
+
[1m[35m (0.9ms)[0m DELETE FROM "tablo_connect_shows";
|
6431
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6432
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
|
6433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6434
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6436
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6437
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1[0m
|
6438
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6440
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
6441
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ?[0m [["tablo_id", 1]]
|
6442
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
6443
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6444
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6445
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6446
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6447
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6448
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 2 LIMIT 1
|
6449
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6451
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6452
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 3 LIMIT 1
|
6453
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6455
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6456
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 4 LIMIT 1
|
6457
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6459
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
6460
|
+
[1m[35mTabloConnect::Show Load (0.2ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
6462
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
6464
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6465
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6466
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6467
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6468
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 5 LIMIT 1
|
6469
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6471
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6472
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 6 LIMIT 1
|
6473
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6475
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6476
|
+
[1m[35mTabloConnect::Show Exists (0.0ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7 LIMIT 1
|
6477
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6479
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
6480
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
6482
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
6484
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6485
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6486
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6487
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6488
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 8 LIMIT 1
|
6489
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6491
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6492
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 9 LIMIT 1
|
6493
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6495
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6496
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 10 LIMIT 1
|
6497
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6499
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
6500
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
6502
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
6504
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6505
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6506
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6507
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6508
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11 LIMIT 1
|
6509
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6511
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6512
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 12 LIMIT 1
|
6513
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6516
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 13 LIMIT 1
|
6517
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6519
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
6520
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Mr. Belvedere"]]
|
6522
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
6524
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6525
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6526
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6527
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" ORDER BY "tablo_connect_shows"."id" ASC LIMIT 1[0m
|
6528
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6529
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["tablo_id", 0], ["created_at", "2015-11-09 05:19:03.376544"], ["updated_at", "2015-11-09 05:19:03.376544"]]
|
6530
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6531
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 0 LIMIT 1[0m
|
6532
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6534
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6535
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6537
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 14 LIMIT 1[0m
|
6538
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6540
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
6542
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6543
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6544
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6545
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6546
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 15 LIMIT 1
|
6547
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6549
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
6550
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6551
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6552
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6553
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6554
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" IS NULL LIMIT 1
|
6555
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6556
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6557
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6558
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6559
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6560
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 16 LIMIT 1
|
6561
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6563
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6564
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 17 LIMIT 1
|
6565
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6567
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6568
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 18 LIMIT 1
|
6569
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6571
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ?[0m [["show", "Alf"]]
|
6572
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
6573
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6574
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6575
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6576
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6577
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1 LIMIT 1[0m
|
6578
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6580
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
6581
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
6582
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6583
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6584
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6585
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6586
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6587
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 2 LIMIT 1[0m
|
6588
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6590
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
6591
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6594
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6595
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6596
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6597
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6598
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 3 LIMIT 1
|
6599
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6601
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
6602
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC[0m
|
6603
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
6604
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6605
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6606
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6607
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6608
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6609
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6610
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6611
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6612
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6614
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6615
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6616
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6617
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6618
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6620
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6621
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 19 LIMIT 1[0m
|
6622
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6624
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 19]]
|
6625
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6626
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 19 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
6627
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6629
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
6630
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
6631
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6632
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6633
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6634
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6635
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 20 LIMIT 1[0m
|
6636
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6638
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 20]]
|
6639
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6640
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 20 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
6641
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6643
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
6644
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6645
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6646
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6647
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6648
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6649
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 21 LIMIT 1[0m
|
6650
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6652
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 21]]
|
6653
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6654
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 21 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
6655
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6657
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
6658
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6659
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6660
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6661
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6662
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6663
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 22 LIMIT 1[0m
|
6664
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6666
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 22]]
|
6667
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6668
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 22 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
6669
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6671
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
6672
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6673
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6674
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6675
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6676
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6677
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 23 LIMIT 1[0m
|
6678
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6680
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 23]]
|
6681
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6682
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 23 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
6683
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6685
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
6686
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6687
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6688
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6690
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6691
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 24 LIMIT 1[0m
|
6692
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6694
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
6695
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 24]]
|
6696
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6697
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 24 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6698
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6700
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
6701
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
6702
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6703
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6704
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6705
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6706
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 25 LIMIT 1
|
6707
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6709
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 25]]
|
6710
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6711
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 25 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6712
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6714
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
6715
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
6716
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6717
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6718
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6719
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6720
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 26 LIMIT 1
|
6721
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6723
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 26]]
|
6724
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6725
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 26 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6726
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6728
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
6729
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
6730
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6731
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6732
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6733
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6734
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 27 LIMIT 1
|
6735
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6737
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 27]]
|
6738
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6739
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 27 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
6740
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6742
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
6743
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
6744
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6745
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6746
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6747
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
6748
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
|
6749
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6750
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1234 LIMIT 1
|
6751
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["tablo_id", 1234], ["created_at", "2015-11-09 05:19:03.533139"], ["updated_at", "2015-11-09 05:19:03.533139"]]
|
6752
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6753
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6754
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1234 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
6755
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "season" = ?, "rec_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6757
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
6758
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
6759
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6760
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6762
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6763
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 4 LIMIT 1[0m
|
6764
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6766
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6767
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28 LIMIT 1[0m
|
6768
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6770
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
|
6771
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"[0m
|
6772
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28
|
6773
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
6774
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6775
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6776
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6777
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6778
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 5 LIMIT 1
|
6779
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6781
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6782
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 29 LIMIT 1
|
6783
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6785
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"[0m
|
6786
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
|
6787
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 29[0m
|
6788
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
6789
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6790
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6791
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6792
|
+
Processing by TabloConnect::SyncController#index as HTML
|
6793
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
6794
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6796
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6797
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6798
|
+
Processing by TabloConnect::SyncController#index as HTML
|
6799
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
6800
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6801
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6802
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6804
|
+
Processing by TabloConnect::SyncController#index as HTML
|
6805
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
6806
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6807
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6808
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6809
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6810
|
+
Processing by TabloConnect::SyncController#index as HTML
|
6811
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
6812
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6813
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6814
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6815
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6816
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
6817
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 1234]]
|
6818
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6819
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1234 LIMIT 1[0m
|
6820
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6822
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6823
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1234 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
6824
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6826
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
6827
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
6828
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6829
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6830
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6831
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6832
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 6 LIMIT 1
|
6833
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6835
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
6836
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 6]]
|
6837
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6838
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 6 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
6839
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6841
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
6842
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6843
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6844
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6845
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6846
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6847
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 7 LIMIT 1[0m
|
6848
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6850
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 7]]
|
6851
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6852
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 7 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
6853
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6855
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
6856
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6857
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6858
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6860
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6861
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8 LIMIT 1[0m
|
6862
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6864
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 8]]
|
6865
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6866
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 8 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
6867
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6869
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
6870
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6871
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6872
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6873
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6874
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6875
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 9 LIMIT 1[0m
|
6876
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6878
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 9]]
|
6879
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6880
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 9 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
6881
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6883
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
6884
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
6885
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6886
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6887
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6888
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6889
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10 LIMIT 1[0m
|
6890
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6892
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 10]]
|
6893
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6894
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 10 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
6895
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6897
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
6898
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
6899
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6900
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6901
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6902
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6903
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 11 LIMIT 1[0m
|
6904
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6906
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 11]]
|
6907
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6908
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 11 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
6909
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6911
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
6912
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
6913
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6914
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6915
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6916
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6917
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 12 LIMIT 1[0m
|
6918
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6920
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
6921
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ?[0m [["tablo_id", 12]]
|
6922
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
6923
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
6924
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6925
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
6926
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6927
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6928
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 13 LIMIT 1
|
6929
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6931
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6932
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 14 LIMIT 1
|
6933
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6935
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC[0m
|
6936
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
6937
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6938
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6939
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6940
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."id" ASC LIMIT 1
|
6941
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6942
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6944
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 0 LIMIT 1
|
6945
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6946
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6947
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6948
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6949
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" IS NULL LIMIT 1[0m
|
6950
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6951
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6952
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6953
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6954
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6955
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 30 LIMIT 1[0m
|
6956
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6958
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6959
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6960
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6961
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6962
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6963
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 31 LIMIT 1[0m
|
6964
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6966
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
6967
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6968
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6969
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6970
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6971
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 32 LIMIT 1[0m
|
6972
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6974
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6975
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6976
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6977
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6978
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6979
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 33 LIMIT 1[0m
|
6980
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6982
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 99999]]
|
6983
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6984
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6985
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6986
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6987
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6988
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 34 LIMIT 1
|
6989
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6991
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
6992
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6993
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6994
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6995
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6996
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 35 LIMIT 1
|
6997
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6999
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 35]]
|
7000
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
7001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7002
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7003
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7004
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7005
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 36 LIMIT 1[0m
|
7006
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7008
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
7009
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7010
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7011
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7012
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7013
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 37 LIMIT 1[0m
|
7014
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7016
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
7017
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7018
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7020
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7021
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 38 LIMIT 1[0m
|
7022
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7024
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7025
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 38 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7026
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7028
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7029
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7030
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7031
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7032
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7033
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 39 LIMIT 1[0m
|
7034
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7036
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7037
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 39 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7038
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7040
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7041
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7042
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7043
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7044
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7045
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 40 LIMIT 1[0m
|
7046
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7048
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7049
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 40 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7050
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7052
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
7053
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7054
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7055
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7056
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7057
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 41 LIMIT 1[0m
|
7058
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7060
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7061
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 41 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7062
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7065
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 41 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7066
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7068
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
7069
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7070
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7071
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7072
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7073
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 42 LIMIT 1[0m
|
7074
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7076
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7077
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7078
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7079
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7080
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7081
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 43 LIMIT 1[0m
|
7082
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7084
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
7085
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7086
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7087
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7088
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7089
|
+
[1m[36mTabloConnect::Show Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 44 LIMIT 1[0m
|
7090
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7092
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7093
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7094
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7095
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7096
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7097
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 45 LIMIT 1[0m
|
7098
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7100
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7101
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7102
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7103
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7105
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 46 LIMIT 1[0m
|
7106
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7108
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
7109
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7110
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7111
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7112
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7113
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 47 LIMIT 1[0m
|
7114
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7116
|
+
Processing by TabloConnect::CopyController#status as HTML
|
7117
|
+
Parameters: {"tablo_id"=>"47", "type"=>"show"}
|
7118
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7121
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7122
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7123
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7124
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7125
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 48 LIMIT 1
|
7126
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7128
|
+
Processing by TabloConnect::CopyController#status as HTML
|
7129
|
+
Parameters: {"tablo_id"=>"48", "type"=>"show"}
|
7130
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 48]]
|
7131
|
+
Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
7132
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7133
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7134
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7137
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 49 LIMIT 1[0m
|
7138
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7140
|
+
Processing by TabloConnect::CopyController#status as HTML
|
7141
|
+
Parameters: {"tablo_id"=>"49", "type"=>"show"}
|
7142
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7145
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7146
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7147
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7148
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7149
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 50 LIMIT 1
|
7150
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7152
|
+
Processing by TabloConnect::CopyController#index as HTML
|
7153
|
+
Parameters: {"tablo_id"=>"50", "type"=>"show"}
|
7154
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 50]]
|
7155
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7156
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 50 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7157
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7159
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
7160
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7161
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7162
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7163
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7164
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7165
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 51 LIMIT 1[0m
|
7166
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7168
|
+
Processing by TabloConnect::CopyController#index as HTML
|
7169
|
+
Parameters: {"tablo_id"=>"51", "type"=>"show"}
|
7170
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 51]]
|
7171
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7172
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 51 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7173
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 1], ["updated_at", "2015-11-09 05:19:03.786269"], ["id", 1]]
|
7174
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7175
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
7176
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7177
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7178
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7179
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7180
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7181
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 52 LIMIT 1
|
7182
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7184
|
+
Processing by TabloConnect::CopyController#index as HTML
|
7185
|
+
Parameters: {"tablo_id"=>"52", "type"=>"show"}
|
7186
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 52]]
|
7187
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7188
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 52 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7189
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7191
|
+
Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.4ms)
|
7192
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7193
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7194
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7195
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7196
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7197
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 53 LIMIT 1[0m
|
7198
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7200
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 53]]
|
7204
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7205
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 53 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7206
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7208
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
7209
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7210
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
7211
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7212
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7213
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7214
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7215
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 54 LIMIT 1
|
7216
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7223
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7224
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7225
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7226
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7227
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 55 LIMIT 1
|
7228
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7234
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7235
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
7236
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7237
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7238
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 56 LIMIT 1
|
7239
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7241
|
+
Processing by TabloConnect::ShowsController#episodes as HTML
|
7242
|
+
Parameters: {"show"=>"Angle of Attack"}
|
7243
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "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[0m [["show", "Angle of Attack"]]
|
7244
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
7245
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7246
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7247
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7248
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7249
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7250
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 57 LIMIT 1[0m
|
7251
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7253
|
+
Processing by TabloConnect::ShowsController#episodes as HTML
|
7254
|
+
Parameters: {"show"=>"Angle of Attack"}
|
7255
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7258
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7259
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7260
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7261
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7262
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 58 LIMIT 1
|
7263
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7265
|
+
Processing by TabloConnect::ShowsController#index as HTML
|
7266
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
7267
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7271
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
7272
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7273
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7274
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 59 LIMIT 1
|
7275
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
7280
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7281
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7282
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7283
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7284
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 60 LIMIT 1
|
7285
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7287
|
+
Processing by TabloConnect::ShowsController#index as HTML
|
7288
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
7289
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7292
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "tablo_connect_movies";[0m
|
7293
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
7294
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'tablo_connect_movies';[0m
|
7295
|
+
[1m[35m (1.0ms)[0m DELETE FROM "tablo_connect_shows";
|
7296
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7297
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
|
7298
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7299
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7300
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7301
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7302
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1[0m
|
7303
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7305
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
|
7306
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7307
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7308
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7310
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
7311
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7312
|
+
[1m[36m (3.0ms)[0m [1mDELETE FROM "tablo_connect_movies";[0m
|
7313
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
7314
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'tablo_connect_movies';[0m
|
7315
|
+
[1m[35m (1.0ms)[0m DELETE FROM "tablo_connect_shows";
|
7316
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7317
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
|
7318
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7319
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7320
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7321
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7322
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1[0m
|
7323
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7325
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
|
7326
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7327
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7328
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7330
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
7331
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
7332
|
+
[1m[36m (3.2ms)[0m [1mDELETE FROM "tablo_connect_movies";[0m
|
7333
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
7334
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'tablo_connect_movies';[0m
|
7335
|
+
[1m[35m (1.0ms)[0m DELETE FROM "tablo_connect_shows";
|
7336
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7337
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'tablo_connect_shows';
|
7338
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7339
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7340
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7341
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7342
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1 LIMIT 1[0m
|
7343
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7345
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 1]]
|
7346
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7347
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
7348
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7350
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
7351
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
7352
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7353
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7354
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7355
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7356
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 2 LIMIT 1[0m
|
7357
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7359
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 2]]
|
7360
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7361
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 2 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
7362
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7364
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
7365
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7366
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7367
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7368
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7369
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7370
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 3 LIMIT 1[0m
|
7371
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7373
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 3]]
|
7374
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7375
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 3 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
7376
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7378
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
7379
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
7380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7381
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7382
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7383
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7384
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 4 LIMIT 1[0m
|
7385
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7387
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 4]]
|
7388
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7389
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 4 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
7390
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7392
|
+
[1m[36mTabloConnect::Movie Load (0.0ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1[0m [["id", 1]]
|
7393
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7394
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7395
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7396
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7398
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 5 LIMIT 1[0m
|
7399
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7401
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
7402
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 5]]
|
7403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7404
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 5 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
7405
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7407
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tablo_connect_movies"
|
7408
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
7409
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7410
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7411
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7412
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7413
|
+
[1m[35mTabloConnect::Movie Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 6 LIMIT 1
|
7414
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7416
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 6]]
|
7417
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7418
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 6 AND "tablo_connect_movies"."id" != 1) LIMIT 1[0m
|
7419
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7421
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."id" = ? LIMIT 1 [["id", 1]]
|
7422
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7423
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7424
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7425
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7426
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
7427
|
+
[1m[35mTabloConnect::Movie Load (0.0ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
|
7428
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7429
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 1234 LIMIT 1
|
7430
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["tablo_id", 1234], ["created_at", "2015-11-09 05:23:34.609709"], ["updated_at", "2015-11-09 05:23:34.609709"]]
|
7431
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7432
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7433
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE ("tablo_connect_movies"."tablo_id" = 1234 AND "tablo_connect_movies"."id" != 1) LIMIT 1
|
7434
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_movies" SET "title" = ?, "description" = ?, "release_year" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_movies"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7436
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
7437
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7438
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7439
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7440
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7441
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7442
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7443
|
+
[1m[35m (0.1ms)[0m commit transaction
|
7444
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7445
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7446
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7447
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7448
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7449
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7450
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 7 LIMIT 1[0m
|
7451
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7453
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7454
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1 LIMIT 1[0m
|
7455
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7457
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"
|
7458
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"[0m
|
7459
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7
|
7460
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
7461
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7462
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7463
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7464
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7465
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8 LIMIT 1
|
7466
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7468
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7469
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 2 LIMIT 1
|
7470
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7472
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies"."tablo_id" FROM "tablo_connect_movies"[0m
|
7473
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows"."tablo_id" FROM "tablo_connect_shows"
|
7474
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 8[0m
|
7475
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
7476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7477
|
+
[1m[35m (0.1ms)[0m commit transaction
|
7478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7479
|
+
Processing by TabloConnect::SyncController#index as HTML
|
7480
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
7481
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7482
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7483
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7484
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7485
|
+
Processing by TabloConnect::SyncController#index as HTML
|
7486
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
7487
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7488
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7489
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7490
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7491
|
+
Processing by TabloConnect::SyncController#index as HTML
|
7492
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
7493
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7495
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7497
|
+
Processing by TabloConnect::SyncController#index as HTML
|
7498
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
7499
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7500
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7501
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7502
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7503
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7504
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7505
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7506
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7507
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7508
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 3 LIMIT 1[0m
|
7509
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7511
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 3]]
|
7512
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7513
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 3 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7514
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7516
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1[0m [["id", 1]]
|
7517
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7518
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7519
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7520
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7521
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7522
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 4 LIMIT 1[0m
|
7523
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7525
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
7526
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 4]]
|
7527
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7528
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 4 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7529
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7531
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows"
|
7532
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
7533
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7534
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7535
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7536
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7537
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 5 LIMIT 1
|
7538
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7540
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 5]]
|
7541
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7542
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 5 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7543
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7545
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7546
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
7547
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7548
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7549
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7550
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7551
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 6 LIMIT 1
|
7552
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7554
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 6]]
|
7555
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7556
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 6 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7557
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7559
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7560
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
7561
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7562
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7563
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7564
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7565
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 7 LIMIT 1
|
7566
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7568
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 7]]
|
7569
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7570
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 7 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7571
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7573
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7574
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
7575
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7576
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
7577
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7578
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7579
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 8 LIMIT 1
|
7580
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7582
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 8]]
|
7583
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7584
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 8 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7585
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7587
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7588
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7589
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7590
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7591
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7592
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7593
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 9 LIMIT 1
|
7594
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7596
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 9]]
|
7597
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7598
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 9 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7599
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7601
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7602
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7603
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7604
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7605
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7606
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7607
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 10 LIMIT 1
|
7608
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7610
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 10]]
|
7611
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7612
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 10 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7613
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7615
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7616
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
7617
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7618
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7619
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7620
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7621
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 11 LIMIT 1
|
7622
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7624
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 11]]
|
7625
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7626
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 11 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7627
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7629
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7630
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
7631
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7632
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7633
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7634
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
7635
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 1234]]
|
7636
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7637
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 1234 LIMIT 1
|
7638
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["tablo_id", 1234], ["created_at", "2015-11-09 05:23:34.753661"], ["updated_at", "2015-11-09 05:23:34.753661"]]
|
7639
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7640
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7641
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 1234 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7642
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "show" = ?, "title" = ?, "description" = ?, "episode" = ?, "season" = ?, "rec_date" = ?, "air_date" = ?, "image_id" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7644
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
7645
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
7646
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7647
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7648
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7649
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7650
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 12 LIMIT 1[0m
|
7651
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7653
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7654
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7655
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7656
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7657
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7658
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 13 LIMIT 1[0m
|
7659
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7661
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7662
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7663
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7664
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7665
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7666
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 14 LIMIT 1[0m
|
7667
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7669
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7670
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7671
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7672
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7673
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7674
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 15 LIMIT 1[0m
|
7675
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7677
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7678
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7679
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7681
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7682
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 16 LIMIT 1[0m
|
7683
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7685
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
7686
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7687
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7690
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 17 LIMIT 1[0m
|
7691
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7693
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 17]]
|
7694
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
7695
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7696
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7697
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7698
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7699
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 18 LIMIT 1
|
7700
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7702
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7703
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7704
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7705
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7706
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7707
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 19 LIMIT 1
|
7708
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7710
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 99999]]
|
7711
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
7712
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7713
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7714
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7716
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 20 LIMIT 1[0m
|
7717
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7719
|
+
Processing by TabloConnect::CopyController#status as HTML
|
7720
|
+
Parameters: {"tablo_id"=>"20", "type"=>"show"}
|
7721
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7724
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7725
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7726
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7727
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7728
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 21 LIMIT 1
|
7729
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7731
|
+
Processing by TabloConnect::CopyController#status as HTML
|
7732
|
+
Parameters: {"tablo_id"=>"21", "type"=>"show"}
|
7733
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 21]]
|
7734
|
+
Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
7735
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7736
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7737
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7739
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7740
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 22 LIMIT 1[0m
|
7741
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7743
|
+
Processing by TabloConnect::CopyController#status as HTML
|
7744
|
+
Parameters: {"tablo_id"=>"22", "type"=>"show"}
|
7745
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
7748
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7749
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7750
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7751
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7752
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 23 LIMIT 1
|
7753
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7755
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
7756
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7757
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7758
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7759
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7760
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 24 LIMIT 1
|
7761
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7763
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
7764
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7765
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7766
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7767
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7768
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 25 LIMIT 1
|
7769
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7771
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
7772
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7773
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7774
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7775
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7776
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 26 LIMIT 1
|
7777
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7779
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
7780
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7781
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7782
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7783
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7784
|
+
[1m[35mTabloConnect::Show Exists (0.2ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 27 LIMIT 1
|
7785
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7787
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7788
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 27 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7789
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.852836"], ["id", 1]]
|
7790
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7791
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
7792
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7793
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7794
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7795
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7796
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 28 LIMIT 1
|
7797
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7799
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7800
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 28 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7801
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 2], ["updated_at", "2015-11-09 05:23:34.860312"], ["id", 1]]
|
7802
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7803
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7804
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7805
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7806
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7807
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7808
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 29 LIMIT 1
|
7809
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7811
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7812
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 29 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7813
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 2], ["updated_at", "2015-11-09 05:23:34.866960"], ["id", 1]]
|
7814
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7815
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
7816
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7817
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7818
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7819
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7820
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 30 LIMIT 1
|
7821
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7823
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7824
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 30 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7825
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.874291"], ["id", 1]]
|
7826
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7827
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7828
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 30 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7829
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 0], ["updated_at", "2015-11-09 05:23:34.876055"], ["id", 1]]
|
7830
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7831
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7832
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7833
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7834
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7835
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7836
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 31 LIMIT 1
|
7837
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7839
|
+
Processing by TabloConnect::CopyController#index as HTML
|
7840
|
+
Parameters: {"tablo_id"=>"31", "type"=>"show"}
|
7841
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 31]]
|
7842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7843
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 31 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7844
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7846
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
7847
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7848
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7849
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7850
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7852
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 32 LIMIT 1[0m
|
7853
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7855
|
+
Processing by TabloConnect::CopyController#index as HTML
|
7856
|
+
Parameters: {"tablo_id"=>"32", "type"=>"show"}
|
7857
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1 [["tablo_id", 32]]
|
7858
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7859
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 32 AND "tablo_connect_shows"."id" != 1) LIMIT 1
|
7860
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "tablo_connect_shows" SET "copy_status" = ?, "updated_at" = ? WHERE "tablo_connect_shows"."id" = ?[0m [["copy_status", 1], ["updated_at", "2015-11-09 05:23:34.893868"], ["id", 1]]
|
7861
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7862
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
|
7863
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
7864
|
+
[1m[35m (0.2ms)[0m begin transaction
|
7865
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
7866
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7867
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7868
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 33 LIMIT 1
|
7869
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7871
|
+
Processing by TabloConnect::CopyController#index as HTML
|
7872
|
+
Parameters: {"tablo_id"=>"33", "type"=>"show"}
|
7873
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 33]]
|
7874
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7875
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 33 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7876
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7878
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
|
7879
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
7880
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7881
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7882
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7883
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7884
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 34 LIMIT 1[0m
|
7885
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7887
|
+
[1m[35mTabloConnect::Show Load (0.0ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.0ms)[0m [1mSELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? LIMIT 1[0m [["tablo_id", 34]]
|
7891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7892
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE ("tablo_connect_shows"."tablo_id" = 34 AND "tablo_connect_shows"."id" != 1) LIMIT 1[0m
|
7893
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7895
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
7896
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."id" = ? LIMIT 1 [["id", 1]]
|
7897
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
7898
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7899
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7900
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7901
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7902
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 35 LIMIT 1
|
7903
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
7910
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7911
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7912
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7913
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7914
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 36 LIMIT 1
|
7915
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7917
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
7918
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7919
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7920
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7921
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7922
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 9 LIMIT 1
|
7923
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7928
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7929
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
7930
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7931
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7932
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 10 LIMIT 1
|
7933
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7935
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
7936
|
+
[1m[36mTabloConnect::Movie Load (0.1ms)[0m [1mSELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC[0m
|
7937
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
7938
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7939
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7940
|
+
[1m[35m (0.1ms)[0m commit transaction
|
7941
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7942
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7943
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 11 LIMIT 1[0m
|
7944
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7946
|
+
Processing by TabloConnect::MoviesController#index as HTML
|
7947
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
7950
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7951
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7952
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7953
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" IS NULL LIMIT 1[0m
|
7954
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7955
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7956
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7957
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7958
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7959
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 12 LIMIT 1[0m
|
7960
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7962
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7963
|
+
[1m[36mTabloConnect::Movie Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 13 LIMIT 1[0m
|
7964
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7966
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."title" ASC
|
7967
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7968
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7969
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7970
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7972
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 14 LIMIT 1
|
7973
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_movies" ("tablo_id", "title", "description", "release_year", "air_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7975
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
7976
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = ? [["tablo_id", 14]]
|
7977
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_movies"[0m
|
7978
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
7979
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7980
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7981
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7982
|
+
[1m[35mTabloConnect::Movie Load (0.1ms)[0m SELECT "tablo_connect_movies".* FROM "tablo_connect_movies" ORDER BY "tablo_connect_movies"."id" ASC LIMIT 1
|
7983
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7984
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7986
|
+
[1m[35mTabloConnect::Movie Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_movies" WHERE "tablo_connect_movies"."tablo_id" = 0 LIMIT 1
|
7987
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
7988
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7989
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7990
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7991
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7992
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 37 LIMIT 1
|
7993
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7995
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
7996
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = ? [["tablo_id", 37]]
|
7997
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tablo_connect_shows"[0m
|
7998
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
7999
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8000
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8001
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8002
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8003
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 38 LIMIT 1[0m
|
8004
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8006
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8007
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 39 LIMIT 1[0m
|
8008
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8010
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8011
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 40 LIMIT 1[0m
|
8012
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8014
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.2ms)[0m [1mSELECT 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[0m [["show", "Charles in Charge"]]
|
8016
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Robotech"]]
|
8018
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
8019
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8020
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8021
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8022
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8023
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 41 LIMIT 1[0m
|
8024
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8026
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8027
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 42 LIMIT 1[0m
|
8028
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8030
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8031
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 43 LIMIT 1[0m
|
8032
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8034
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Charles in Charge"]]
|
8036
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Robotech"]]
|
8038
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
8039
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8040
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8041
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8042
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8043
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 44 LIMIT 1[0m
|
8044
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8046
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8047
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 45 LIMIT 1[0m
|
8048
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8050
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8051
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 46 LIMIT 1[0m
|
8052
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8054
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Charles in Charge"]]
|
8056
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Robotech"]]
|
8058
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
8059
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8060
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8061
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8062
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8063
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 47 LIMIT 1[0m
|
8064
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8066
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8067
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 48 LIMIT 1[0m
|
8068
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8070
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8071
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 49 LIMIT 1[0m
|
8072
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8074
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Charles in Charge"]]
|
8076
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36mTabloConnect::Show Load (0.1ms)[0m [1mSELECT 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[0m [["show", "Robotech"]]
|
8078
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
8079
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8080
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8081
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8082
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m SELECT "tablo_connect_shows".* FROM "tablo_connect_shows" ORDER BY "tablo_connect_shows"."id" ASC LIMIT 1
|
8083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
8084
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8086
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 0 LIMIT 1
|
8087
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
8088
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8089
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
8090
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8091
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" IS NULL LIMIT 1[0m
|
8092
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
8093
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8094
|
+
[1m[35m (0.1ms)[0m commit transaction
|
8095
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8096
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8097
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 50 LIMIT 1[0m
|
8098
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8100
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
8102
|
+
[1m[35m (0.0ms)[0m begin transaction
|
8103
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
8104
|
+
[1m[35m (0.0ms)[0m begin transaction
|
8105
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
8106
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 51 LIMIT 1
|
8107
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
8109
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
8110
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
8111
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8112
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8113
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8114
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8115
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 52 LIMIT 1[0m
|
8116
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8118
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
8119
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 53 LIMIT 1[0m
|
8120
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8122
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
8123
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 54 LIMIT 1[0m
|
8124
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8126
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."show" = ? [["show", "Alf"]]
|
8127
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
8128
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8129
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
8130
|
+
[1m[35m (0.0ms)[0m begin transaction
|
8131
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
8132
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 55 LIMIT 1
|
8133
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
8138
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8139
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
8140
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8141
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
8142
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 56 LIMIT 1
|
8143
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
8145
|
+
Processing by TabloConnect::ShowsController#index as HTML
|
8146
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
8147
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
8150
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8151
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
8152
|
+
[1m[35m (0.0ms)[0m begin transaction
|
8153
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
8154
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 57 LIMIT 1
|
8155
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
8157
|
+
Processing by TabloConnect::ShowsController#index as HTML
|
8158
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, show AS show FROM "tablo_connect_shows" GROUP BY "tablo_connect_shows"."show" ORDER BY "tablo_connect_shows"."show" ASC[0m
|
8159
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
8162
|
+
[1m[35m (0.1ms)[0m begin transaction
|
8163
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
8164
|
+
[1m[35m (0.0ms)[0m begin transaction
|
8165
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
8166
|
+
[1m[35mTabloConnect::Show Exists (0.1ms)[0m SELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 58 LIMIT 1
|
8167
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tablo_connect_shows" ("tablo_id", "show", "title", "description", "episode", "season", "air_date", "rec_date", "image_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
8169
|
+
Processing by TabloConnect::ShowsController#episodes as HTML
|
8170
|
+
Parameters: {"show"=>"Angle of Attack"}
|
8171
|
+
[1m[36mTabloConnect::Show Load (0.2ms)[0m [1mSELECT "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[0m [["show", "Angle of Attack"]]
|
8172
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
8173
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
8174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8175
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8177
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
8178
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 59 LIMIT 1[0m
|
8179
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
8185
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8186
|
+
[1m[35m (0.0ms)[0m commit transaction
|
8187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8188
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
8189
|
+
[1m[36mTabloConnect::Show Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "tablo_connect_shows" WHERE "tablo_connect_shows"."tablo_id" = 60 LIMIT 1[0m
|
8190
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8192
|
+
Processing by TabloConnect::ShowsController#episodes as HTML
|
8193
|
+
Parameters: {"show"=>"Angle of Attack"}
|
8194
|
+
[1m[35mTabloConnect::Show Load (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|