caddie 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bbed6ba9f2ebe0339d206ae3e06909643eeecfed
4
- data.tar.gz: 8871bc0dff56b2cbf9856dcfa768dcb9f0f36cb7
3
+ metadata.gz: 26db8f4fc96452fe89965e1bbc19aac11941cfd2
4
+ data.tar.gz: 2ccb386a9fce7a05e74827374b60d7bc75ac1d9a
5
5
  SHA512:
6
- metadata.gz: 3406118ccc31ee77be46f2f2d76db7aed2c763b52038ebde28e7d14fc8ddabe0af89b005a3b77f2fb5db804e7f75175240a1dd899b5a2c8366a5c25265981082
7
- data.tar.gz: a18a435e98f6a3de080f38d14bab9a465f8bafef0e8bb52824edbbcc31e426ad067380a0a67ffeb259a978588f1dfa6246b4b74476a8be0ee4737a41b497367a
6
+ metadata.gz: f0ffaf46cb84d129e17d3a54541e0624601d722535bcadbf185eb8bdd6465165f156163465a5cd533b8ff5602bb3d59dcd317571e38a88423eb0a9d8a2671d8f
7
+ data.tar.gz: fa0cafd89bf3698fb8b3da89e3354e48aaa8c066eace69f6fa0cfe875c19181c3c37fa49f51fe067b7ef5ef83054dec3f715ec46058250d8c0b94a2f60ec0ff3
@@ -6,7 +6,8 @@ module Caddie
6
6
  CREST_BASE_URL='https://crest-tq.eveonline.com/'
7
7
 
8
8
  def get_markets( region_id, type_id )
9
- items, connections_count = get_multipage_data( "market/#{region_id}/types/#{type_id}/history", true )
9
+ type_url = "https://crest-tq.eveonline.com/inventory/types/#{type_id}"
10
+ items, connections_count = get_multipage_data( "market/#{region_id}/history/?type=#{type_url}", true )
10
11
  [ items, connections_count ]
11
12
  end
12
13
 
@@ -1,3 +1,3 @@
1
1
  module Caddie
2
- VERSION = '0.0.8'
2
+ VERSION = '0.0.9'
3
3
  end
@@ -53923,3 +53923,371 @@ WHERE c.contype = 'f'
53923
53923
  AND t3.nspname = ANY (current_schemas(false))
53924
53924
  ORDER BY c.conname
53925
53925
 
53926
+  (29894.3ms) /* Don't forget to set the postgres sequence to cycle on production */
53927
+ /* ALTER SEQUENCE caddie_crest_price_history_updates_id_seq CYCLE; */
53928
+
53929
+ /* TRUNCATE TABLE caddie_crest_price_history_updates; */
53930
+
53931
+ /* Insert new regions / items */
53932
+ INSERT INTO caddie_crest_price_history_updates( eve_item_id, region_id, created_at, updated_at )
53933
+ SELECT eve_items.id, regions.id, now(), now()
53934
+ FROM eve_items, regions
53935
+ WHERE NOT EXISTS ( SELECT NULL FROM caddie_crest_price_history_updates WHERE eve_item_id = eve_items.id and region_id = regions.id );
53936
+
53937
+ /* Update all datas */
53938
+ UPDATE caddie_crest_price_history_updates cphu
53939
+ SET max_update = sub.mua, max_eve_item_create = sub.max_eve_item_create, max_region_create = sub.max_region_create
53940
+ FROM (
53941
+ SELECT DISTINCT eve_item_id, region_id, MAX( crest_price_histories.updated_at ) mua, MAX( eve_items.created_at ) max_eve_item_create, MAX( regions.created_at ) max_region_create
53942
+ FROM crest_price_histories, eve_items, regions
53943
+ WHERE eve_item_id = eve_items.id
53944
+ AND region_id = regions.id
53945
+ GROUP BY eve_item_id, region_id
53946
+ ) sub
53947
+ WHERE cphu.eve_item_id = sub.eve_item_id
53948
+ AND cphu.region_id = sub.region_id;
53949
+
53950
+ UPDATE caddie_crest_price_history_updates cphu SET max_date = GREATEST( max_update, max_eve_item_create, max_region_create );
53951
+
53952
+ UPDATE caddie_crest_price_history_updates cphu SET nb_days = ( CURRENT_DATE - max_date );
53953
+
53954
+ UPDATE caddie_crest_price_history_updates cphu
53955
+ SET process_queue = 'DAILY', next_process_date = current_date, process_queue_priority = 1
53956
+ WHERE nb_days <= 7;
53957
+
53958
+ UPDATE caddie_crest_price_history_updates cphu
53959
+ SET process_queue = 'WEEKLY', next_process_date = date_trunc( 'week', ( current_date + ( interval '1 week' ) ) ), process_queue_priority = 2
53960
+ WHERE nb_days <= 30 AND nb_days > 7;
53961
+
53962
+ UPDATE caddie_crest_price_history_updates cphu
53963
+ SET process_queue = 'MONTHLY', next_process_date = date_trunc( 'month', ( current_date + ( interval '1 month' ) ) ), process_queue_priority = 3
53964
+ WHERE nb_days > 30 OR nb_days IS NULL;
53965
+
53966
+ 
53967
+  (99.5ms) SELECT "caddie_crest_price_history_updates"."eve_item_id", "caddie_crest_price_history_updates"."region_id", cpp_eve_item_id, cpp_region_id FROM "caddie_crest_price_history_updates" INNER JOIN "eve_items" ON "eve_items"."id" = "caddie_crest_price_history_updates"."eve_item_id" INNER JOIN "regions" ON "regions"."id" = "caddie_crest_price_history_updates"."region_id" WHERE "caddie_crest_price_history_updates"."next_process_date" = $1 ORDER BY "caddie_crest_price_history_updates"."process_queue_priority" ASC [["next_process_date", "2016-07-08"]]
53968
+  (0.2ms) BEGIN
53969
+ SQL (0.6ms) INSERT INTO "caddie_crest_price_history_update_logs" ("feed_date", "update_planning_time", "feeding_time", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["feed_date", "2016-07-08"], ["update_planning_time", 0], ["feeding_time", 0], ["created_at", "2016-07-08 13:34:47.516232"], ["updated_at", "2016-07-08 13:34:47.516232"]]
53970
+  (0.5ms) COMMIT
53971
+  (98391.7ms) SELECT "caddie_crest_price_history_updates"."eve_item_id", "caddie_crest_price_history_updates"."region_id", cpp_eve_item_id, cpp_region_id FROM "caddie_crest_price_history_updates" INNER JOIN "eve_items" ON "eve_items"."id" = "caddie_crest_price_history_updates"."eve_item_id" INNER JOIN "regions" ON "regions"."id" = "caddie_crest_price_history_updates"."region_id" WHERE "caddie_crest_price_history_updates"."next_process_date" = $1 ORDER BY "caddie_crest_price_history_updates"."process_queue_priority" ASC [["next_process_date", "2016-07-08"]]
53972
+  (493.4ms) SELECT "caddie_crest_price_history_updates"."eve_item_id", "caddie_crest_price_history_updates"."region_id", cpp_eve_item_id, cpp_region_id FROM "caddie_crest_price_history_updates" INNER JOIN "eve_items" ON "eve_items"."id" = "caddie_crest_price_history_updates"."eve_item_id" INNER JOIN "regions" ON "regions"."id" = "caddie_crest_price_history_updates"."region_id" WHERE "caddie_crest_price_history_updates"."next_process_date" = $1 ORDER BY "caddie_crest_price_history_updates"."process_queue_priority" ASC [["next_process_date", "2016-07-08"]]
53973
+  (435.7ms) SELECT "caddie_crest_price_history_updates"."eve_item_id", "caddie_crest_price_history_updates"."region_id", cpp_eve_item_id, cpp_region_id FROM "caddie_crest_price_history_updates" INNER JOIN "eve_items" ON "eve_items"."id" = "caddie_crest_price_history_updates"."eve_item_id" INNER JOIN "regions" ON "regions"."id" = "caddie_crest_price_history_updates"."region_id" WHERE "caddie_crest_price_history_updates"."next_process_date" = $1 ORDER BY "caddie_crest_price_history_updates"."process_queue_priority" ASC [["next_process_date", "2016-07-08"]]
53974
+  (28.6ms) BEGIN
53975
+  (3.6ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 55], ["eve_item_id", 6011]]
53976
+ SQL (10.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160513"], ["history_date", "2016-05-13 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 500002.04], ["avg_price", 500002.04], ["high_price", 500002.04], ["created_at", "2016-07-08 14:16:52.668944"], ["updated_at", "2016-07-08 14:16:52.668944"]]
53977
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160524"], ["history_date", "2016-05-24 00:00:00.000000"], ["order_count", 1], ["volume", 4], ["low_price", 500002.11], ["avg_price", 500002.11], ["high_price", 500002.11], ["created_at", "2016-07-08 14:16:52.682547"], ["updated_at", "2016-07-08 14:16:52.682547"]]
53978
+ SQL (3.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160530"], ["history_date", "2016-05-30 00:00:00.000000"], ["order_count", 1], ["volume", 2], ["low_price", 500002.15], ["avg_price", 500002.15], ["high_price", 500002.15], ["created_at", "2016-07-08 14:16:52.686081"], ["updated_at", "2016-07-08 14:16:52.686081"]]
53979
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160604"], ["history_date", "2016-06-04 00:00:00.000000"], ["order_count", 1], ["volume", 2], ["low_price", 500002.19], ["avg_price", 500002.19], ["high_price", 500002.19], ["created_at", "2016-07-08 14:16:52.692398"], ["updated_at", "2016-07-08 14:16:52.692398"]]
53980
+ SQL (0.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160607"], ["history_date", "2016-06-07 00:00:00.000000"], ["order_count", 1], ["volume", 4], ["low_price", 500002.21], ["avg_price", 500002.21], ["high_price", 500002.21], ["created_at", "2016-07-08 14:16:52.697644"], ["updated_at", "2016-07-08 14:16:52.697644"]]
53981
+ SQL (0.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160608"], ["history_date", "2016-06-08 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 199999.0], ["avg_price", 199999.0], ["high_price", 199999.0], ["created_at", "2016-07-08 14:16:52.700375"], ["updated_at", "2016-07-08 14:16:52.700375"]]
53982
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160612"], ["history_date", "2016-06-12 00:00:00.000000"], ["order_count", 1], ["volume", 10], ["low_price", 500002.29], ["avg_price", 500002.29], ["high_price", 500002.29], ["created_at", "2016-07-08 14:16:52.702959"], ["updated_at", "2016-07-08 14:16:52.702959"]]
53983
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160613"], ["history_date", "2016-06-13 00:00:00.000000"], ["order_count", 1], ["volume", 2], ["low_price", 500002.29], ["avg_price", 500002.29], ["high_price", 500002.29], ["created_at", "2016-07-08 14:16:52.706616"], ["updated_at", "2016-07-08 14:16:52.706616"]]
53984
+ SQL (3.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160618"], ["history_date", "2016-06-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 500003.31], ["avg_price", 500003.31], ["high_price", 500003.31], ["created_at", "2016-07-08 14:16:52.709023"], ["updated_at", "2016-07-08 14:16:52.709023"]]
53985
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160628"], ["history_date", "2016-06-28 00:00:00.000000"], ["order_count", 1], ["volume", 4], ["low_price", 500003.36], ["avg_price", 500003.36], ["high_price", 500003.36], ["created_at", "2016-07-08 14:16:52.714410"], ["updated_at", "2016-07-08 14:16:52.714410"]]
53986
+ SQL (0.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160630"], ["history_date", "2016-06-30 00:00:00.000000"], ["order_count", 3], ["volume", 14], ["low_price", 500003.37], ["avg_price", 500003.37], ["high_price", 500003.37], ["created_at", "2016-07-08 14:16:52.717383"], ["updated_at", "2016-07-08 14:16:52.717383"]]
53987
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160701"], ["history_date", "2016-07-01 00:00:00.000000"], ["order_count", 2], ["volume", 9], ["low_price", 500003.37], ["avg_price", 500003.37], ["high_price", 500003.37], ["created_at", "2016-07-08 14:16:52.719727"], ["updated_at", "2016-07-08 14:16:52.719727"]]
53988
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160702"], ["history_date", "2016-07-02 00:00:00.000000"], ["order_count", 5], ["volume", 23], ["low_price", 500003.38], ["avg_price", 500003.38], ["high_price", 500003.38], ["created_at", "2016-07-08 14:16:52.722299"], ["updated_at", "2016-07-08 14:16:52.722299"]]
53989
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160704"], ["history_date", "2016-07-04 00:00:00.000000"], ["order_count", 3], ["volume", 36], ["low_price", 500003.39], ["avg_price", 500003.39], ["high_price", 500003.39], ["created_at", "2016-07-08 14:16:52.725107"], ["updated_at", "2016-07-08 14:16:52.725107"]]
53990
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160705"], ["history_date", "2016-07-05 00:00:00.000000"], ["order_count", 1], ["volume", 15], ["low_price", 500003.39], ["avg_price", 500003.39], ["high_price", 500003.39], ["created_at", "2016-07-08 14:16:52.727563"], ["updated_at", "2016-07-08 14:16:52.727563"]]
53991
+ SQL (0.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 55], ["eve_item_id", 6011], ["day_timestamp", "20160707"], ["history_date", "2016-07-07 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 500003.39], ["avg_price", 500003.39], ["high_price", 500003.39], ["created_at", "2016-07-08 14:16:52.729862"], ["updated_at", "2016-07-08 14:16:52.729862"]]
53992
+  (1.1ms) COMMIT
53993
+  (0.9ms) BEGIN
53994
+  (18.9ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 6], ["eve_item_id", 2363]]
53995
+  (1.5ms) COMMIT
53996
+  (1.2ms) BEGIN
53997
+  (3.0ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 4], ["eve_item_id", 2363]]
53998
+  (1.4ms) COMMIT
53999
+  (0.2ms) BEGIN
54000
+  (0.3ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 3], ["eve_item_id", 2363]]
54001
+  (0.2ms) COMMIT
54002
+  (17.3ms) BEGIN
54003
+  (0.5ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 2], ["eve_item_id", 2363]]
54004
+  (0.3ms) COMMIT
54005
+  (0.5ms) BEGIN
54006
+  (0.9ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 1], ["eve_item_id", 2363]]
54007
+  (0.4ms) COMMIT
54008
+  (0.9ms) BEGIN
54009
+  (3.8ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 100], ["eve_item_id", 2362]]
54010
+ SQL (16.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150607"], ["history_date", "2015-06-07 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 60000000.0], ["avg_price", 60000000.0], ["high_price", 60000000.0], ["created_at", "2016-07-08 14:16:57.801549"], ["updated_at", "2016-07-08 14:16:57.801549"]]
54011
+ SQL (2.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150610"], ["history_date", "2015-06-10 00:00:00.000000"], ["order_count", 3], ["volume", 3], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.826504"], ["updated_at", "2016-07-08 14:16:57.826504"]]
54012
+ SQL (2.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150611"], ["history_date", "2015-06-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.833658"], ["updated_at", "2016-07-08 14:16:57.833658"]]
54013
+ SQL (2.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150612"], ["history_date", "2015-06-12 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 69000000.0], ["avg_price", 69500000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.840990"], ["updated_at", "2016-07-08 14:16:57.840990"]]
54014
+ SQL (2.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150613"], ["history_date", "2015-06-13 00:00:00.000000"], ["order_count", 3], ["volume", 3], ["low_price", 69000000.0], ["avg_price", 69333333.33], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.847000"], ["updated_at", "2016-07-08 14:16:57.847000"]]
54015
+ SQL (3.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150615"], ["history_date", "2015-06-15 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.852901"], ["updated_at", "2016-07-08 14:16:57.852901"]]
54016
+ SQL (2.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150616"], ["history_date", "2015-06-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 69999999.99], ["avg_price", 69999999.99], ["high_price", 69999999.99], ["created_at", "2016-07-08 14:16:57.858768"], ["updated_at", "2016-07-08 14:16:57.858768"]]
54017
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150618"], ["history_date", "2015-06-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.864069"], ["updated_at", "2016-07-08 14:16:57.864069"]]
54018
+ SQL (2.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150620"], ["history_date", "2015-06-20 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 69999999.99], ["avg_price", 69999999.99], ["high_price", 69999999.99], ["created_at", "2016-07-08 14:16:57.868093"], ["updated_at", "2016-07-08 14:16:57.868093"]]
54019
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150621"], ["history_date", "2015-06-21 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.872232"], ["updated_at", "2016-07-08 14:16:57.872232"]]
54020
+ SQL (2.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150623"], ["history_date", "2015-06-23 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 69999999.97], ["avg_price", 69999999.97], ["high_price", 69999999.97], ["created_at", "2016-07-08 14:16:57.875897"], ["updated_at", "2016-07-08 14:16:57.875897"]]
54021
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150627"], ["history_date", "2015-06-27 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 69999999.98], ["avg_price", 69999999.98], ["high_price", 69999999.98], ["created_at", "2016-07-08 14:16:57.880137"], ["updated_at", "2016-07-08 14:16:57.880137"]]
54022
+ SQL (1.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150628"], ["history_date", "2015-06-28 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:16:57.883908"], ["updated_at", "2016-07-08 14:16:57.883908"]]
54023
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150703"], ["history_date", "2015-07-03 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 59999999.99], ["avg_price", 59999999.99], ["high_price", 59999999.99], ["created_at", "2016-07-08 14:16:57.886687"], ["updated_at", "2016-07-08 14:16:57.886687"]]
54024
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150710"], ["history_date", "2015-07-10 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 45000000.0], ["avg_price", 45000000.0], ["high_price", 45000000.0], ["created_at", "2016-07-08 14:16:57.890191"], ["updated_at", "2016-07-08 14:16:57.890191"]]
54025
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150711"], ["history_date", "2015-07-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.97], ["avg_price", 49999999.97], ["high_price", 49999999.97], ["created_at", "2016-07-08 14:16:57.893910"], ["updated_at", "2016-07-08 14:16:57.893910"]]
54026
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150712"], ["history_date", "2015-07-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.97], ["avg_price", 49999999.97], ["high_price", 49999999.97], ["created_at", "2016-07-08 14:16:57.897277"], ["updated_at", "2016-07-08 14:16:57.897277"]]
54027
+ SQL (2.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150721"], ["history_date", "2015-07-21 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.98], ["avg_price", 49999999.98], ["high_price", 49999999.98], ["created_at", "2016-07-08 14:16:57.900217"], ["updated_at", "2016-07-08 14:16:57.900217"]]
54028
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150725"], ["history_date", "2015-07-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.99], ["avg_price", 49999999.99], ["high_price", 49999999.99], ["created_at", "2016-07-08 14:16:57.904252"], ["updated_at", "2016-07-08 14:16:57.904252"]]
54029
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150727"], ["history_date", "2015-07-27 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.99], ["avg_price", 49999999.99], ["high_price", 49999999.99], ["created_at", "2016-07-08 14:16:57.908153"], ["updated_at", "2016-07-08 14:16:57.908153"]]
54030
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150731"], ["history_date", "2015-07-31 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.99], ["avg_price", 49999999.99], ["high_price", 49999999.99], ["created_at", "2016-07-08 14:16:57.912048"], ["updated_at", "2016-07-08 14:16:57.912048"]]
54031
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150819"], ["history_date", "2015-08-19 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54000000.0], ["avg_price", 54000000.0], ["high_price", 54000000.0], ["created_at", "2016-07-08 14:16:57.916009"], ["updated_at", "2016-07-08 14:16:57.916009"]]
54032
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150824"], ["history_date", "2015-08-24 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 72000000.0], ["avg_price", 72000000.0], ["high_price", 72000000.0], ["created_at", "2016-07-08 14:16:57.919913"], ["updated_at", "2016-07-08 14:16:57.919913"]]
54033
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150910"], ["history_date", "2015-09-10 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 62499999.89], ["avg_price", 62499999.89], ["high_price", 62499999.89], ["created_at", "2016-07-08 14:16:57.923810"], ["updated_at", "2016-07-08 14:16:57.923810"]]
54034
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150913"], ["history_date", "2015-09-13 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 62499999.9], ["avg_price", 62499999.92], ["high_price", 62499999.93], ["created_at", "2016-07-08 14:16:57.927631"], ["updated_at", "2016-07-08 14:16:57.927631"]]
54035
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150925"], ["history_date", "2015-09-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 40000000.0], ["avg_price", 40000000.0], ["high_price", 40000000.0], ["created_at", "2016-07-08 14:16:57.931432"], ["updated_at", "2016-07-08 14:16:57.931432"]]
54036
+ SQL (1.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150927"], ["history_date", "2015-09-27 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 45000000.0], ["avg_price", 45000000.0], ["high_price", 45000000.0], ["created_at", "2016-07-08 14:16:57.935192"], ["updated_at", "2016-07-08 14:16:57.935192"]]
54037
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20150929"], ["history_date", "2015-09-29 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 65000000.0], ["avg_price", 65000000.0], ["high_price", 65000000.0], ["created_at", "2016-07-08 14:16:57.938476"], ["updated_at", "2016-07-08 14:16:57.938476"]]
54038
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151024"], ["history_date", "2015-10-24 00:00:00.000000"], ["order_count", 5], ["volume", 5], ["low_price", 65000000.0], ["avg_price", 65600000.0], ["high_price", 66000000.0], ["created_at", "2016-07-08 14:16:57.941862"], ["updated_at", "2016-07-08 14:16:57.941862"]]
54039
+ SQL (5.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151025"], ["history_date", "2015-10-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54000000.0], ["avg_price", 54000000.0], ["high_price", 54000000.0], ["created_at", "2016-07-08 14:16:57.945631"], ["updated_at", "2016-07-08 14:16:57.945631"]]
54040
+ SQL (2.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151026"], ["history_date", "2015-10-26 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54000000.0], ["avg_price", 54000000.0], ["high_price", 54000000.0], ["created_at", "2016-07-08 14:16:57.953091"], ["updated_at", "2016-07-08 14:16:57.953091"]]
54041
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151027"], ["history_date", "2015-10-27 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 65000000.0], ["avg_price", 65000000.0], ["high_price", 65000000.0], ["created_at", "2016-07-08 14:16:57.957432"], ["updated_at", "2016-07-08 14:16:57.957432"]]
54042
+ SQL (1.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151028"], ["history_date", "2015-10-28 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 68999997.6], ["avg_price", 68999997.6], ["high_price", 68999997.6], ["created_at", "2016-07-08 14:16:57.960534"], ["updated_at", "2016-07-08 14:16:57.960534"]]
54043
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151031"], ["history_date", "2015-10-31 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 68997989.99], ["avg_price", 68997989.99], ["high_price", 68997989.99], ["created_at", "2016-07-08 14:16:57.963805"], ["updated_at", "2016-07-08 14:16:57.963805"]]
54044
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151106"], ["history_date", "2015-11-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 68995998.99], ["avg_price", 68995998.99], ["high_price", 68995998.99], ["created_at", "2016-07-08 14:16:57.967589"], ["updated_at", "2016-07-08 14:16:57.967589"]]
54045
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151113"], ["history_date", "2015-11-13 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 65999997.88], ["avg_price", 65999997.88], ["high_price", 65999997.88], ["created_at", "2016-07-08 14:16:57.971123"], ["updated_at", "2016-07-08 14:16:57.971123"]]
54046
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151121"], ["history_date", "2015-11-21 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 62999999.99], ["avg_price", 62999999.99], ["high_price", 62999999.99], ["created_at", "2016-07-08 14:16:57.974791"], ["updated_at", "2016-07-08 14:16:57.974791"]]
54047
+ SQL (1.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151122"], ["history_date", "2015-11-22 00:00:00.000000"], ["order_count", 1], ["volume", 2], ["low_price", 62999999.98], ["avg_price", 62999999.98], ["high_price", 62999999.98], ["created_at", "2016-07-08 14:16:57.978556"], ["updated_at", "2016-07-08 14:16:57.978556"]]
54048
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151128"], ["history_date", "2015-11-28 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 59999999.99], ["avg_price", 59999999.99], ["high_price", 59999999.99], ["created_at", "2016-07-08 14:16:57.981769"], ["updated_at", "2016-07-08 14:16:57.981769"]]
54049
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151129"], ["history_date", "2015-11-29 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 59999999.99], ["avg_price", 59999999.99], ["high_price", 59999999.99], ["created_at", "2016-07-08 14:16:57.985067"], ["updated_at", "2016-07-08 14:16:57.985067"]]
54050
+ SQL (2.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151206"], ["history_date", "2015-12-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 57998999.99], ["avg_price", 57998999.99], ["high_price", 57998999.99], ["created_at", "2016-07-08 14:16:57.988146"], ["updated_at", "2016-07-08 14:16:57.988146"]]
54051
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151216"], ["history_date", "2015-12-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 29999999.95], ["avg_price", 29999999.95], ["high_price", 29999999.95], ["created_at", "2016-07-08 14:16:57.992492"], ["updated_at", "2016-07-08 14:16:57.992492"]]
54052
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151225"], ["history_date", "2015-12-25 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 49999999.98], ["avg_price", 49999999.99], ["high_price", 49999999.99], ["created_at", "2016-07-08 14:16:57.995941"], ["updated_at", "2016-07-08 14:16:57.995941"]]
54053
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151228"], ["history_date", "2015-12-28 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:16:57.999758"], ["updated_at", "2016-07-08 14:16:57.999758"]]
54054
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20151229"], ["history_date", "2015-12-29 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:16:58.003521"], ["updated_at", "2016-07-08 14:16:58.003521"]]
54055
+ SQL (2.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160102"], ["history_date", "2016-01-02 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49000000.0], ["avg_price", 49000000.0], ["high_price", 49000000.0], ["created_at", "2016-07-08 14:16:58.006592"], ["updated_at", "2016-07-08 14:16:58.006592"]]
54056
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160103"], ["history_date", "2016-01-03 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:16:58.011119"], ["updated_at", "2016-07-08 14:16:58.011119"]]
54057
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160111"], ["history_date", "2016-01-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 47500000.0], ["avg_price", 47500000.0], ["high_price", 47500000.0], ["created_at", "2016-07-08 14:16:58.014193"], ["updated_at", "2016-07-08 14:16:58.014193"]]
54058
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160116"], ["history_date", "2016-01-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.97], ["avg_price", 49999999.97], ["high_price", 49999999.97], ["created_at", "2016-07-08 14:16:58.017784"], ["updated_at", "2016-07-08 14:16:58.017784"]]
54059
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160120"], ["history_date", "2016-01-20 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 30000000.0], ["avg_price", 30000000.0], ["high_price", 30000000.0], ["created_at", "2016-07-08 14:16:58.021315"], ["updated_at", "2016-07-08 14:16:58.021315"]]
54060
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160122"], ["history_date", "2016-01-22 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 49999999.0], ["avg_price", 49999999.49], ["high_price", 49999999.97], ["created_at", "2016-07-08 14:16:58.024741"], ["updated_at", "2016-07-08 14:16:58.024741"]]
54061
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160131"], ["history_date", "2016-01-31 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 44000000.0], ["avg_price", 44500000.0], ["high_price", 45000000.0], ["created_at", "2016-07-08 14:16:58.028079"], ["updated_at", "2016-07-08 14:16:58.028079"]]
54062
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160204"], ["history_date", "2016-02-04 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:16:58.031665"], ["updated_at", "2016-07-08 14:16:58.031665"]]
54063
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160207"], ["history_date", "2016-02-07 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 10000000.0], ["avg_price", 10000000.0], ["high_price", 10000000.0], ["created_at", "2016-07-08 14:16:58.035581"], ["updated_at", "2016-07-08 14:16:58.035581"]]
54064
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160210"], ["history_date", "2016-02-10 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 52000000.0], ["avg_price", 52000000.0], ["high_price", 52000000.0], ["created_at", "2016-07-08 14:16:58.038973"], ["updated_at", "2016-07-08 14:16:58.038973"]]
54065
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160212"], ["history_date", "2016-02-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 10000000.0], ["avg_price", 10000000.0], ["high_price", 10000000.0], ["created_at", "2016-07-08 14:16:58.042532"], ["updated_at", "2016-07-08 14:16:58.042532"]]
54066
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160219"], ["history_date", "2016-02-19 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 45000000.0], ["avg_price", 45000000.0], ["high_price", 45000000.0], ["created_at", "2016-07-08 14:16:58.045617"], ["updated_at", "2016-07-08 14:16:58.045617"]]
54067
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160225"], ["history_date", "2016-02-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49982811.51], ["avg_price", 49982811.51], ["high_price", 49982811.51], ["created_at", "2016-07-08 14:16:58.048897"], ["updated_at", "2016-07-08 14:16:58.048897"]]
54068
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160306"], ["history_date", "2016-03-06 00:00:00.000000"], ["order_count", 3], ["volume", 3], ["low_price", 10000000.0], ["avg_price", 10000000.0], ["high_price", 10000000.0], ["created_at", "2016-07-08 14:16:58.052615"], ["updated_at", "2016-07-08 14:16:58.052615"]]
54069
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160309"], ["history_date", "2016-03-09 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 10000000.0], ["avg_price", 10000000.0], ["high_price", 10000000.0], ["created_at", "2016-07-08 14:16:58.056337"], ["updated_at", "2016-07-08 14:16:58.056337"]]
54070
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160314"], ["history_date", "2016-03-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 1.21], ["avg_price", 1.21], ["high_price", 1.21], ["created_at", "2016-07-08 14:16:58.059999"], ["updated_at", "2016-07-08 14:16:58.059999"]]
54071
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 100], ["eve_item_id", 2362], ["day_timestamp", "20160319"], ["history_date", "2016-03-19 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 42042041.99], ["avg_price", 42042041.99], ["high_price", 42042041.99], ["created_at", "2016-07-08 14:16:58.063416"], ["updated_at", "2016-07-08 14:16:58.063416"]]
54072
+  (3.6ms) COMMIT
54073
+  (0.3ms) BEGIN
54074
+  (7.3ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 99], ["eve_item_id", 2362]]
54075
+ SQL (4.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20150614"], ["history_date", "2015-06-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54090372.02], ["avg_price", 54090372.02], ["high_price", 54090372.02], ["created_at", "2016-07-08 14:16:58.610300"], ["updated_at", "2016-07-08 14:16:58.610300"]]
54076
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20150630"], ["history_date", "2015-06-30 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 54090372.02], ["avg_price", 54532686.01], ["high_price", 54975000.0], ["created_at", "2016-07-08 14:16:58.618110"], ["updated_at", "2016-07-08 14:16:58.618110"]]
54077
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20150803"], ["history_date", "2015-08-03 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54975000.0], ["avg_price", 54975000.0], ["high_price", 54975000.0], ["created_at", "2016-07-08 14:16:58.645109"], ["updated_at", "2016-07-08 14:16:58.645109"]]
54078
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20150901"], ["history_date", "2015-09-01 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 68975000.0], ["avg_price", 68975000.0], ["high_price", 68975000.0], ["created_at", "2016-07-08 14:16:58.649441"], ["updated_at", "2016-07-08 14:16:58.649441"]]
54079
+ SQL (3.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20150919"], ["history_date", "2015-09-19 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54090372.02], ["avg_price", 54090372.02], ["high_price", 54090372.02], ["created_at", "2016-07-08 14:16:58.654657"], ["updated_at", "2016-07-08 14:16:58.654657"]]
54080
+ SQL (1.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20150921"], ["history_date", "2015-09-21 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54090372.02], ["avg_price", 54090372.02], ["high_price", 54090372.02], ["created_at", "2016-07-08 14:16:58.661560"], ["updated_at", "2016-07-08 14:16:58.661560"]]
54081
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20151006"], ["history_date", "2015-10-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54090372.02], ["avg_price", 54090372.02], ["high_price", 54090372.02], ["created_at", "2016-07-08 14:16:58.665485"], ["updated_at", "2016-07-08 14:16:58.665485"]]
54082
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20151101"], ["history_date", "2015-11-01 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 68975000.01], ["avg_price", 68975000.01], ["high_price", 68975000.01], ["created_at", "2016-07-08 14:16:58.668924"], ["updated_at", "2016-07-08 14:16:58.668924"]]
54083
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20151105"], ["history_date", "2015-11-05 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67000000.0], ["avg_price", 67000000.0], ["high_price", 67000000.0], ["created_at", "2016-07-08 14:16:58.671922"], ["updated_at", "2016-07-08 14:16:58.671922"]]
54084
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20151106"], ["history_date", "2015-11-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 69975000.0], ["avg_price", 69975000.0], ["high_price", 69975000.0], ["created_at", "2016-07-08 14:16:58.674886"], ["updated_at", "2016-07-08 14:16:58.674886"]]
54085
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20151212"], ["history_date", "2015-12-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 74975000.0], ["avg_price", 74975000.0], ["high_price", 74975000.0], ["created_at", "2016-07-08 14:16:58.676514"], ["updated_at", "2016-07-08 14:16:58.676514"]]
54086
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20151220"], ["history_date", "2015-12-20 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 4980000.0], ["avg_price", 4980000.0], ["high_price", 4980000.0], ["created_at", "2016-07-08 14:16:58.679816"], ["updated_at", "2016-07-08 14:16:58.679816"]]
54087
+ SQL (1.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20160206"], ["history_date", "2016-02-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 79975000.0], ["avg_price", 79975000.0], ["high_price", 79975000.0], ["created_at", "2016-07-08 14:16:58.682961"], ["updated_at", "2016-07-08 14:16:58.682961"]]
54088
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20160218"], ["history_date", "2016-02-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 79975000.0], ["avg_price", 79975000.0], ["high_price", 79975000.0], ["created_at", "2016-07-08 14:16:58.685381"], ["updated_at", "2016-07-08 14:16:58.685381"]]
54089
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20160323"], ["history_date", "2016-03-23 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 79975000.0], ["avg_price", 79975000.0], ["high_price", 79975000.0], ["created_at", "2016-07-08 14:16:58.688046"], ["updated_at", "2016-07-08 14:16:58.688046"]]
54090
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20160407"], ["history_date", "2016-04-07 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 79975000.0], ["avg_price", 79975000.0], ["high_price", 79975000.0], ["created_at", "2016-07-08 14:16:58.690889"], ["updated_at", "2016-07-08 14:16:58.690889"]]
54091
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 99], ["eve_item_id", 2362], ["day_timestamp", "20160523"], ["history_date", "2016-05-23 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 79975000.0], ["avg_price", 79975000.0], ["high_price", 79975000.0], ["created_at", "2016-07-08 14:16:58.693981"], ["updated_at", "2016-07-08 14:16:58.693981"]]
54092
+  (0.6ms) COMMIT
54093
+  (1.3ms) BEGIN
54094
+  (16.4ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 98], ["eve_item_id", 2362]]
54095
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 98], ["eve_item_id", 2362], ["day_timestamp", "20150702"], ["history_date", "2015-07-02 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 53000000.0], ["avg_price", 53000000.0], ["high_price", 53000000.0], ["created_at", "2016-07-08 14:16:59.480812"], ["updated_at", "2016-07-08 14:16:59.480812"]]
54096
+ SQL (1.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 98], ["eve_item_id", 2362], ["day_timestamp", "20150915"], ["history_date", "2015-09-15 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 51000000.0], ["avg_price", 51000000.0], ["high_price", 51000000.0], ["created_at", "2016-07-08 14:16:59.484897"], ["updated_at", "2016-07-08 14:16:59.484897"]]
54097
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 98], ["eve_item_id", 2362], ["day_timestamp", "20151112"], ["history_date", "2015-11-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 51000000.0], ["avg_price", 51000000.0], ["high_price", 51000000.0], ["created_at", "2016-07-08 14:16:59.488908"], ["updated_at", "2016-07-08 14:16:59.488908"]]
54098
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 98], ["eve_item_id", 2362], ["day_timestamp", "20151209"], ["history_date", "2015-12-09 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 64000000.0], ["avg_price", 64000000.0], ["high_price", 64000000.0], ["created_at", "2016-07-08 14:16:59.492247"], ["updated_at", "2016-07-08 14:16:59.492247"]]
54099
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 98], ["eve_item_id", 2362], ["day_timestamp", "20160306"], ["history_date", "2016-03-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49000000.0], ["avg_price", 49000000.0], ["high_price", 49000000.0], ["created_at", "2016-07-08 14:16:59.496230"], ["updated_at", "2016-07-08 14:16:59.496230"]]
54100
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 98], ["eve_item_id", 2362], ["day_timestamp", "20160321"], ["history_date", "2016-03-21 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 62000000.0], ["avg_price", 62000000.0], ["high_price", 62000000.0], ["created_at", "2016-07-08 14:16:59.498051"], ["updated_at", "2016-07-08 14:16:59.498051"]]
54101
+  (1.2ms) COMMIT
54102
+  (0.8ms) BEGIN
54103
+  (1.4ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 97], ["eve_item_id", 2362]]
54104
+ SQL (8.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20150701"], ["history_date", "2015-07-01 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:00.320609"], ["updated_at", "2016-07-08 14:17:00.320609"]]
54105
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20150819"], ["history_date", "2015-08-19 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55083612.54], ["avg_price", 55083612.54], ["high_price", 55083612.54], ["created_at", "2016-07-08 14:17:00.334593"], ["updated_at", "2016-07-08 14:17:00.334593"]]
54106
+ SQL (3.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20150901"], ["history_date", "2015-09-01 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55083612.54], ["avg_price", 55083612.54], ["high_price", 55083612.54], ["created_at", "2016-07-08 14:17:00.341971"], ["updated_at", "2016-07-08 14:17:00.341971"]]
54107
+ SQL (3.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20150911"], ["history_date", "2015-09-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54999999.99], ["avg_price", 54999999.99], ["high_price", 54999999.99], ["created_at", "2016-07-08 14:17:00.349654"], ["updated_at", "2016-07-08 14:17:00.349654"]]
54108
+ SQL (2.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20150926"], ["history_date", "2015-09-26 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54999999.99], ["avg_price", 54999999.99], ["high_price", 54999999.99], ["created_at", "2016-07-08 14:17:00.355534"], ["updated_at", "2016-07-08 14:17:00.355534"]]
54109
+ SQL (3.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151004"], ["history_date", "2015-10-04 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 63178916.72], ["avg_price", 63178916.72], ["high_price", 63178916.72], ["created_at", "2016-07-08 14:17:00.361171"], ["updated_at", "2016-07-08 14:17:00.361171"]]
54110
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151005"], ["history_date", "2015-10-05 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 60000000.0], ["avg_price", 60000000.0], ["high_price", 60000000.0], ["created_at", "2016-07-08 14:17:00.367065"], ["updated_at", "2016-07-08 14:17:00.367065"]]
54111
+ SQL (3.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151017"], ["history_date", "2015-10-17 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 63999999.99], ["avg_price", 63999999.99], ["high_price", 63999999.99], ["created_at", "2016-07-08 14:17:00.371567"], ["updated_at", "2016-07-08 14:17:00.371567"]]
54112
+ SQL (0.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151101"], ["history_date", "2015-11-01 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 63999999.99], ["avg_price", 63999999.99], ["high_price", 63999999.99], ["created_at", "2016-07-08 14:17:00.379058"], ["updated_at", "2016-07-08 14:17:00.379058"]]
54113
+ SQL (2.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151117"], ["history_date", "2015-11-17 00:00:00.000000"], ["order_count", 3], ["volume", 3], ["low_price", 64999999.99], ["avg_price", 64999999.99], ["high_price", 64999999.99], ["created_at", "2016-07-08 14:17:00.382511"], ["updated_at", "2016-07-08 14:17:00.382511"]]
54114
+ SQL (1.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151120"], ["history_date", "2015-11-20 00:00:00.000000"], ["order_count", 5], ["volume", 5], ["low_price", 63000000.0], ["avg_price", 64600000.0], ["high_price", 65000000.0], ["created_at", "2016-07-08 14:17:00.386364"], ["updated_at", "2016-07-08 14:17:00.386364"]]
54115
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151214"], ["history_date", "2015-12-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.99], ["avg_price", 67999999.99], ["high_price", 67999999.99], ["created_at", "2016-07-08 14:17:00.389594"], ["updated_at", "2016-07-08 14:17:00.389594"]]
54116
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151224"], ["history_date", "2015-12-24 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.99], ["avg_price", 67999999.99], ["high_price", 67999999.99], ["created_at", "2016-07-08 14:17:00.392983"], ["updated_at", "2016-07-08 14:17:00.392983"]]
54117
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151229"], ["history_date", "2015-12-29 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.99], ["avg_price", 67999999.99], ["high_price", 67999999.99], ["created_at", "2016-07-08 14:17:00.397127"], ["updated_at", "2016-07-08 14:17:00.397127"]]
54118
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20151231"], ["history_date", "2015-12-31 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.99], ["avg_price", 67999999.99], ["high_price", 67999999.99], ["created_at", "2016-07-08 14:17:00.399016"], ["updated_at", "2016-07-08 14:17:00.399016"]]
54119
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160112"], ["history_date", "2016-01-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.75], ["avg_price", 67999999.75], ["high_price", 67999999.75], ["created_at", "2016-07-08 14:17:00.401955"], ["updated_at", "2016-07-08 14:17:00.401955"]]
54120
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160124"], ["history_date", "2016-01-24 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.5], ["avg_price", 67999999.5], ["high_price", 67999999.5], ["created_at", "2016-07-08 14:17:00.404880"], ["updated_at", "2016-07-08 14:17:00.404880"]]
54121
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160204"], ["history_date", "2016-02-04 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.36], ["avg_price", 67999999.36], ["high_price", 67999999.36], ["created_at", "2016-07-08 14:17:00.407973"], ["updated_at", "2016-07-08 14:17:00.407973"]]
54122
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160215"], ["history_date", "2016-02-15 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.28], ["avg_price", 67999999.28], ["high_price", 67999999.28], ["created_at", "2016-07-08 14:17:00.409743"], ["updated_at", "2016-07-08 14:17:00.409743"]]
54123
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160219"], ["history_date", "2016-02-19 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.15], ["avg_price", 67999999.15], ["high_price", 67999999.15], ["created_at", "2016-07-08 14:17:00.413622"], ["updated_at", "2016-07-08 14:17:00.413622"]]
54124
+ SQL (1.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160220"], ["history_date", "2016-02-20 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.27], ["avg_price", 67999999.27], ["high_price", 67999999.27], ["created_at", "2016-07-08 14:17:00.415746"], ["updated_at", "2016-07-08 14:17:00.415746"]]
54125
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160228"], ["history_date", "2016-02-28 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.23], ["avg_price", 67999999.23], ["high_price", 67999999.23], ["created_at", "2016-07-08 14:17:00.418537"], ["updated_at", "2016-07-08 14:17:00.418537"]]
54126
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160229"], ["history_date", "2016-02-29 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.23], ["avg_price", 67999999.23], ["high_price", 67999999.23], ["created_at", "2016-07-08 14:17:00.421603"], ["updated_at", "2016-07-08 14:17:00.421603"]]
54127
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160304"], ["history_date", "2016-03-04 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 52000000.0], ["avg_price", 52000000.0], ["high_price", 52000000.0], ["created_at", "2016-07-08 14:17:00.425093"], ["updated_at", "2016-07-08 14:17:00.425093"]]
54128
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160306"], ["history_date", "2016-03-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 56330442.11], ["avg_price", 56330442.11], ["high_price", 56330442.11], ["created_at", "2016-07-08 14:17:00.428078"], ["updated_at", "2016-07-08 14:17:00.428078"]]
54129
+ SQL (1.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160307"], ["history_date", "2016-03-07 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 56330442.11], ["avg_price", 56330442.11], ["high_price", 56330442.11], ["created_at", "2016-07-08 14:17:00.429908"], ["updated_at", "2016-07-08 14:17:00.429908"]]
54130
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160312"], ["history_date", "2016-03-12 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 56807999.99], ["avg_price", 56807999.99], ["high_price", 56807999.99], ["created_at", "2016-07-08 14:17:00.432401"], ["updated_at", "2016-07-08 14:17:00.432401"]]
54131
+ SQL (1.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160313"], ["history_date", "2016-03-13 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 67999999.27], ["avg_price", 67999999.27], ["high_price", 67999999.27], ["created_at", "2016-07-08 14:17:00.436076"], ["updated_at", "2016-07-08 14:17:00.436076"]]
54132
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160318"], ["history_date", "2016-03-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:00.438558"], ["updated_at", "2016-07-08 14:17:00.438558"]]
54133
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160327"], ["history_date", "2016-03-27 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 6000000.0], ["avg_price", 6000000.0], ["high_price", 6000000.0], ["created_at", "2016-07-08 14:17:00.441494"], ["updated_at", "2016-07-08 14:17:00.441494"]]
54134
+ SQL (1.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160504"], ["history_date", "2016-05-04 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 42897999.8], ["avg_price", 42897999.8], ["high_price", 42897999.8], ["created_at", "2016-07-08 14:17:00.444341"], ["updated_at", "2016-07-08 14:17:00.444341"]]
54135
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160506"], ["history_date", "2016-05-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 42898000.0], ["avg_price", 42898000.0], ["high_price", 42898000.0], ["created_at", "2016-07-08 14:17:00.447224"], ["updated_at", "2016-07-08 14:17:00.447224"]]
54136
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160512"], ["history_date", "2016-05-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 42897999.98], ["avg_price", 42897999.98], ["high_price", 42897999.98], ["created_at", "2016-07-08 14:17:00.449867"], ["updated_at", "2016-07-08 14:17:00.449867"]]
54137
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160513"], ["history_date", "2016-05-13 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 42000000.0], ["avg_price", 42448999.99], ["high_price", 42897999.98], ["created_at", "2016-07-08 14:17:00.453119"], ["updated_at", "2016-07-08 14:17:00.453119"]]
54138
+ SQL (1.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160514"], ["history_date", "2016-05-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 42000000.0], ["avg_price", 42000000.0], ["high_price", 42000000.0], ["created_at", "2016-07-08 14:17:00.454814"], ["updated_at", "2016-07-08 14:17:00.454814"]]
54139
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160517"], ["history_date", "2016-05-17 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 42000000.0], ["avg_price", 42000000.0], ["high_price", 42000000.0], ["created_at", "2016-07-08 14:17:00.457352"], ["updated_at", "2016-07-08 14:17:00.457352"]]
54140
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160523"], ["history_date", "2016-05-23 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 38999999.99], ["avg_price", 38999999.99], ["high_price", 38999999.99], ["created_at", "2016-07-08 14:17:00.460148"], ["updated_at", "2016-07-08 14:17:00.460148"]]
54141
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160602"], ["history_date", "2016-06-02 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 38999999.99], ["avg_price", 38999999.99], ["high_price", 38999999.99], ["created_at", "2016-07-08 14:17:00.461822"], ["updated_at", "2016-07-08 14:17:00.461822"]]
54142
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160604"], ["history_date", "2016-06-04 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 40000000.0], ["avg_price", 40000000.0], ["high_price", 40000000.0], ["created_at", "2016-07-08 14:17:00.463412"], ["updated_at", "2016-07-08 14:17:00.463412"]]
54143
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160613"], ["history_date", "2016-06-13 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 34999999.99], ["avg_price", 34999999.99], ["high_price", 34999999.99], ["created_at", "2016-07-08 14:17:00.465021"], ["updated_at", "2016-07-08 14:17:00.465021"]]
54144
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160614"], ["history_date", "2016-06-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 34000000.0], ["avg_price", 34000000.0], ["high_price", 34000000.0], ["created_at", "2016-07-08 14:17:00.466583"], ["updated_at", "2016-07-08 14:17:00.466583"]]
54145
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160618"], ["history_date", "2016-06-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 35000000.0], ["avg_price", 35000000.0], ["high_price", 35000000.0], ["created_at", "2016-07-08 14:17:00.468371"], ["updated_at", "2016-07-08 14:17:00.468371"]]
54146
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160624"], ["history_date", "2016-06-24 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 42897999.98], ["avg_price", 42897999.98], ["high_price", 42897999.98], ["created_at", "2016-07-08 14:17:00.469803"], ["updated_at", "2016-07-08 14:17:00.469803"]]
54147
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 97], ["eve_item_id", 2362], ["day_timestamp", "20160705"], ["history_date", "2016-07-05 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 42889999.0], ["avg_price", 42889999.0], ["high_price", 42889999.0], ["created_at", "2016-07-08 14:17:00.471200"], ["updated_at", "2016-07-08 14:17:00.471200"]]
54148
+  (2.0ms) COMMIT
54149
+  (2.2ms) BEGIN
54150
+  (1.1ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 96], ["eve_item_id", 2362]]
54151
+  (1.6ms) COMMIT
54152
+  (0.3ms) BEGIN
54153
+  (0.3ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 95], ["eve_item_id", 2362]]
54154
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20150725"], ["history_date", "2015-07-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55199999.99], ["avg_price", 55199999.99], ["high_price", 55199999.99], ["created_at", "2016-07-08 14:17:01.604488"], ["updated_at", "2016-07-08 14:17:01.604488"]]
54155
+ SQL (1.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20150807"], ["history_date", "2015-08-07 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55200000.0], ["avg_price", 55200000.0], ["high_price", 55200000.0], ["created_at", "2016-07-08 14:17:01.606153"], ["updated_at", "2016-07-08 14:17:01.606153"]]
54156
+ SQL (1.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20151114"], ["history_date", "2015-11-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 58500000.0], ["avg_price", 58500000.0], ["high_price", 58500000.0], ["created_at", "2016-07-08 14:17:01.609279"], ["updated_at", "2016-07-08 14:17:01.609279"]]
54157
+ SQL (1.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20151118"], ["history_date", "2015-11-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 58500000.0], ["avg_price", 58500000.0], ["high_price", 58500000.0], ["created_at", "2016-07-08 14:17:01.611740"], ["updated_at", "2016-07-08 14:17:01.611740"]]
54158
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20151130"], ["history_date", "2015-11-30 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 59875000.0], ["avg_price", 59875000.0], ["high_price", 59875000.0], ["created_at", "2016-07-08 14:17:01.614434"], ["updated_at", "2016-07-08 14:17:01.614434"]]
54159
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20151206"], ["history_date", "2015-12-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 59875000.0], ["avg_price", 59875000.0], ["high_price", 59875000.0], ["created_at", "2016-07-08 14:17:01.617616"], ["updated_at", "2016-07-08 14:17:01.617616"]]
54160
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160109"], ["history_date", "2016-01-09 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 59875000.0], ["avg_price", 59875000.0], ["high_price", 59875000.0], ["created_at", "2016-07-08 14:17:01.619227"], ["updated_at", "2016-07-08 14:17:01.619227"]]
54161
+ SQL (1.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160114"], ["history_date", "2016-01-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 58750000.0], ["avg_price", 58750000.0], ["high_price", 58750000.0], ["created_at", "2016-07-08 14:17:01.621915"], ["updated_at", "2016-07-08 14:17:01.621915"]]
54162
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160125"], ["history_date", "2016-01-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 58700000.0], ["avg_price", 58700000.0], ["high_price", 58700000.0], ["created_at", "2016-07-08 14:17:01.624643"], ["updated_at", "2016-07-08 14:17:01.624643"]]
54163
+ SQL (1.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160203"], ["history_date", "2016-02-03 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 58750000.0], ["avg_price", 58750000.0], ["high_price", 58750000.0], ["created_at", "2016-07-08 14:17:01.628085"], ["updated_at", "2016-07-08 14:17:01.628085"]]
54164
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160207"], ["history_date", "2016-02-07 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 58750000.0], ["avg_price", 58750000.0], ["high_price", 58750000.0], ["created_at", "2016-07-08 14:17:01.632781"], ["updated_at", "2016-07-08 14:17:01.632781"]]
54165
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160218"], ["history_date", "2016-02-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 63125000.0], ["avg_price", 63125000.0], ["high_price", 63125000.0], ["created_at", "2016-07-08 14:17:01.635501"], ["updated_at", "2016-07-08 14:17:01.635501"]]
54166
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160320"], ["history_date", "2016-03-20 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54275000.0], ["avg_price", 54275000.0], ["high_price", 54275000.0], ["created_at", "2016-07-08 14:17:01.637981"], ["updated_at", "2016-07-08 14:17:01.637981"]]
54167
+ SQL (1.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160326"], ["history_date", "2016-03-26 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54275000.0], ["avg_price", 54275000.0], ["high_price", 54275000.0], ["created_at", "2016-07-08 14:17:01.642036"], ["updated_at", "2016-07-08 14:17:01.642036"]]
54168
+ SQL (1.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160328"], ["history_date", "2016-03-28 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54274999.0], ["avg_price", 54274999.0], ["high_price", 54274999.0], ["created_at", "2016-07-08 14:17:01.645757"], ["updated_at", "2016-07-08 14:17:01.645757"]]
54169
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160329"], ["history_date", "2016-03-29 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 6899999.99], ["avg_price", 6899999.99], ["high_price", 6899999.99], ["created_at", "2016-07-08 14:17:01.648627"], ["updated_at", "2016-07-08 14:17:01.648627"]]
54170
+ SQL (2.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160403"], ["history_date", "2016-04-03 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 6899999.99], ["avg_price", 6899999.99], ["high_price", 6899999.99], ["created_at", "2016-07-08 14:17:01.651567"], ["updated_at", "2016-07-08 14:17:01.651567"]]
54171
+ SQL (2.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160416"], ["history_date", "2016-04-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 6899999.99], ["avg_price", 6899999.99], ["high_price", 6899999.99], ["created_at", "2016-07-08 14:17:01.657077"], ["updated_at", "2016-07-08 14:17:01.657077"]]
54172
+ SQL (2.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160424"], ["history_date", "2016-04-24 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 52000000.0], ["avg_price", 52000000.0], ["high_price", 52000000.0], ["created_at", "2016-07-08 14:17:01.662323"], ["updated_at", "2016-07-08 14:17:01.662323"]]
54173
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160506"], ["history_date", "2016-05-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54275000.0], ["avg_price", 54275000.0], ["high_price", 54275000.0], ["created_at", "2016-07-08 14:17:01.666226"], ["updated_at", "2016-07-08 14:17:01.666226"]]
54174
+ SQL (1.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160518"], ["history_date", "2016-05-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 539899.99], ["avg_price", 539899.99], ["high_price", 539899.99], ["created_at", "2016-07-08 14:17:01.667990"], ["updated_at", "2016-07-08 14:17:01.667990"]]
54175
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160617"], ["history_date", "2016-06-17 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:01.670930"], ["updated_at", "2016-07-08 14:17:01.670930"]]
54176
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160630"], ["history_date", "2016-06-30 00:00:00.000000"], ["order_count", 10], ["volume", 10], ["low_price", 49420420.88], ["avg_price", 53076084.17], ["high_price", 53989999.99], ["created_at", "2016-07-08 14:17:01.672832"], ["updated_at", "2016-07-08 14:17:01.672832"]]
54177
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160701"], ["history_date", "2016-07-01 00:00:00.000000"], ["order_count", 8], ["volume", 8], ["low_price", 45000000.0], ["avg_price", 50310000.0], ["high_price", 51750000.0], ["created_at", "2016-07-08 14:17:01.674512"], ["updated_at", "2016-07-08 14:17:01.674512"]]
54178
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160702"], ["history_date", "2016-07-02 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50500000.0], ["avg_price", 50500000.0], ["high_price", 50500000.0], ["created_at", "2016-07-08 14:17:01.676134"], ["updated_at", "2016-07-08 14:17:01.676134"]]
54179
+ SQL (0.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160703"], ["history_date", "2016-07-03 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 50500000.0], ["avg_price", 50512500.0], ["high_price", 50525000.0], ["created_at", "2016-07-08 14:17:01.678781"], ["updated_at", "2016-07-08 14:17:01.678781"]]
54180
+ SQL (0.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160704"], ["history_date", "2016-07-04 00:00:00.000000"], ["order_count", 6], ["volume", 6], ["low_price", 40655516.27], ["avg_price", 48880086.05], ["high_price", 50525000.0], ["created_at", "2016-07-08 14:17:01.681408"], ["updated_at", "2016-07-08 14:17:01.681408"]]
54181
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160705"], ["history_date", "2016-07-05 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50525000.0], ["avg_price", 50525000.0], ["high_price", 50525000.0], ["created_at", "2016-07-08 14:17:01.683611"], ["updated_at", "2016-07-08 14:17:01.683611"]]
54182
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160706"], ["history_date", "2016-07-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50525000.0], ["avg_price", 50525000.0], ["high_price", 50525000.0], ["created_at", "2016-07-08 14:17:01.685163"], ["updated_at", "2016-07-08 14:17:01.685163"]]
54183
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 95], ["eve_item_id", 2362], ["day_timestamp", "20160707"], ["history_date", "2016-07-07 00:00:00.000000"], ["order_count", 2], ["volume", 2], ["low_price", 50525000.0], ["avg_price", 50525000.0], ["high_price", 50525000.0], ["created_at", "2016-07-08 14:17:01.686672"], ["updated_at", "2016-07-08 14:17:01.686672"]]
54184
+  (4.4ms) COMMIT
54185
+  (0.7ms) BEGIN
54186
+  (0.7ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 94], ["eve_item_id", 2362]]
54187
+ SQL (2.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 94], ["eve_item_id", 2362], ["day_timestamp", "20150912"], ["history_date", "2015-09-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54900000.0], ["avg_price", 54900000.0], ["high_price", 54900000.0], ["created_at", "2016-07-08 14:17:02.450184"], ["updated_at", "2016-07-08 14:17:02.450184"]]
54188
+ SQL (2.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 94], ["eve_item_id", 2362], ["day_timestamp", "20150918"], ["history_date", "2015-09-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 54900000.0], ["avg_price", 54900000.0], ["high_price", 54900000.0], ["created_at", "2016-07-08 14:17:02.456035"], ["updated_at", "2016-07-08 14:17:02.456035"]]
54189
+  (1.8ms) COMMIT
54190
+  (1.0ms) BEGIN
54191
+  (1.4ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 93], ["eve_item_id", 2362]]
54192
+  (1.0ms) COMMIT
54193
+  (1.0ms) BEGIN
54194
+  (4.3ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 91], ["eve_item_id", 2362]]
54195
+ SQL (7.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 91], ["eve_item_id", 2362], ["day_timestamp", "20150808"], ["history_date", "2015-08-08 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 10000000.43], ["avg_price", 10000000.43], ["high_price", 10000000.43], ["created_at", "2016-07-08 14:17:04.135183"], ["updated_at", "2016-07-08 14:17:04.135183"]]
54196
+ SQL (5.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 91], ["eve_item_id", 2362], ["day_timestamp", "20150916"], ["history_date", "2015-09-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 45000000.0], ["avg_price", 45000000.0], ["high_price", 45000000.0], ["created_at", "2016-07-08 14:17:04.150157"], ["updated_at", "2016-07-08 14:17:04.150157"]]
54197
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 91], ["eve_item_id", 2362], ["day_timestamp", "20150920"], ["history_date", "2015-09-20 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:04.162312"], ["updated_at", "2016-07-08 14:17:04.162312"]]
54198
+ SQL (11.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 91], ["eve_item_id", 2362], ["day_timestamp", "20150922"], ["history_date", "2015-09-22 00:00:00.000000"], ["order_count", 3], ["volume", 5], ["low_price", 49999999.0], ["avg_price", 52827999.4], ["high_price", 57070000.0], ["created_at", "2016-07-08 14:17:04.168526"], ["updated_at", "2016-07-08 14:17:04.168526"]]
54199
+ SQL (2.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 91], ["eve_item_id", 2362], ["day_timestamp", "20160508"], ["history_date", "2016-05-08 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 6900000.0], ["avg_price", 6900000.0], ["high_price", 6900000.0], ["created_at", "2016-07-08 14:17:04.183652"], ["updated_at", "2016-07-08 14:17:04.183652"]]
54200
+  (1.2ms) COMMIT
54201
+  (0.5ms) BEGIN
54202
+  (129.4ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 90], ["eve_item_id", 2362]]
54203
+ SQL (2.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 90], ["eve_item_id", 2362], ["day_timestamp", "20150806"], ["history_date", "2015-08-06 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 49999999.99], ["avg_price", 49999999.99], ["high_price", 49999999.99], ["created_at", "2016-07-08 14:17:05.112681"], ["updated_at", "2016-07-08 14:17:05.112681"]]
54204
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 90], ["eve_item_id", 2362], ["day_timestamp", "20150807"], ["history_date", "2015-08-07 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:05.117186"], ["updated_at", "2016-07-08 14:17:05.117186"]]
54205
+ SQL (0.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 90], ["eve_item_id", 2362], ["day_timestamp", "20160329"], ["history_date", "2016-03-29 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:05.119485"], ["updated_at", "2016-07-08 14:17:05.119485"]]
54206
+  (0.7ms) COMMIT
54207
+  (2.1ms) BEGIN
54208
+  (0.9ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 89], ["eve_item_id", 2362]]
54209
+ SQL (12.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 89], ["eve_item_id", 2362], ["day_timestamp", "20150802"], ["history_date", "2015-08-02 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 45000000.0], ["avg_price", 45000000.0], ["high_price", 45000000.0], ["created_at", "2016-07-08 14:17:05.658047"], ["updated_at", "2016-07-08 14:17:05.658047"]]
54210
+ SQL (2.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 89], ["eve_item_id", 2362], ["day_timestamp", "20160511"], ["history_date", "2016-05-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 10000000.0], ["avg_price", 10000000.0], ["high_price", 10000000.0], ["created_at", "2016-07-08 14:17:05.674715"], ["updated_at", "2016-07-08 14:17:05.674715"]]
54211
+ SQL (1.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 89], ["eve_item_id", 2362], ["day_timestamp", "20160611"], ["history_date", "2016-06-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 60000000.0], ["avg_price", 60000000.0], ["high_price", 60000000.0], ["created_at", "2016-07-08 14:17:05.681928"], ["updated_at", "2016-07-08 14:17:05.681928"]]
54212
+  (1.5ms) COMMIT
54213
+  (0.4ms) BEGIN
54214
+  (0.5ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 88], ["eve_item_id", 2362]]
54215
+ SQL (1.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 88], ["eve_item_id", 2362], ["day_timestamp", "20150923"], ["history_date", "2015-09-23 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55000000.0], ["avg_price", 55000000.0], ["high_price", 55000000.0], ["created_at", "2016-07-08 14:17:06.260332"], ["updated_at", "2016-07-08 14:17:06.260332"]]
54216
+ SQL (0.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 88], ["eve_item_id", 2362], ["day_timestamp", "20151212"], ["history_date", "2015-12-12 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 60000000.0], ["avg_price", 60000000.0], ["high_price", 60000000.0], ["created_at", "2016-07-08 14:17:06.264476"], ["updated_at", "2016-07-08 14:17:06.264476"]]
54217
+ SQL (0.7ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 88], ["eve_item_id", 2362], ["day_timestamp", "20151225"], ["history_date", "2015-12-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 63000000.0], ["avg_price", 63000000.0], ["high_price", 63000000.0], ["created_at", "2016-07-08 14:17:06.267754"], ["updated_at", "2016-07-08 14:17:06.267754"]]
54218
+ SQL (0.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 88], ["eve_item_id", 2362], ["day_timestamp", "20160116"], ["history_date", "2016-01-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 62000000.0], ["avg_price", 62000000.0], ["high_price", 62000000.0], ["created_at", "2016-07-08 14:17:06.271864"], ["updated_at", "2016-07-08 14:17:06.271864"]]
54219
+ SQL (0.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 88], ["eve_item_id", 2362], ["day_timestamp", "20160125"], ["history_date", "2016-01-25 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 62000000.0], ["avg_price", 62000000.0], ["high_price", 62000000.0], ["created_at", "2016-07-08 14:17:06.275141"], ["updated_at", "2016-07-08 14:17:06.275141"]]
54220
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 88], ["eve_item_id", 2362], ["day_timestamp", "20160303"], ["history_date", "2016-03-03 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 62000000.0], ["avg_price", 62000000.0], ["high_price", 62000000.0], ["created_at", "2016-07-08 14:17:06.277860"], ["updated_at", "2016-07-08 14:17:06.277860"]]
54221
+  (1.0ms) COMMIT
54222
+  (1.0ms) BEGIN
54223
+  (1.8ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 87], ["eve_item_id", 2362]]
54224
+ SQL (5.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 87], ["eve_item_id", 2362], ["day_timestamp", "20150627"], ["history_date", "2015-06-27 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:17:06.853672"], ["updated_at", "2016-07-08 14:17:06.853672"]]
54225
+ SQL (3.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 87], ["eve_item_id", 2362], ["day_timestamp", "20151023"], ["history_date", "2015-10-23 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 40000000.0], ["avg_price", 40000000.0], ["high_price", 40000000.0], ["created_at", "2016-07-08 14:17:06.863117"], ["updated_at", "2016-07-08 14:17:06.863117"]]
54226
+ SQL (3.5ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 87], ["eve_item_id", 2362], ["day_timestamp", "20151229"], ["history_date", "2015-12-29 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 70000000.0], ["avg_price", 70000000.0], ["high_price", 70000000.0], ["created_at", "2016-07-08 14:17:06.870174"], ["updated_at", "2016-07-08 14:17:06.870174"]]
54227
+  (2.2ms) COMMIT
54228
+  (1.2ms) BEGIN
54229
+  (3.7ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 86], ["eve_item_id", 2362]]
54230
+ SQL (5.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 86], ["eve_item_id", 2362], ["day_timestamp", "20150808"], ["history_date", "2015-08-08 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 58299987.0], ["avg_price", 58299987.0], ["high_price", 58299987.0], ["created_at", "2016-07-08 14:17:07.414713"], ["updated_at", "2016-07-08 14:17:07.414713"]]
54231
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 86], ["eve_item_id", 2362], ["day_timestamp", "20160516"], ["history_date", "2016-05-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:07.427490"], ["updated_at", "2016-07-08 14:17:07.427490"]]
54232
+ SQL (0.8ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 86], ["eve_item_id", 2362], ["day_timestamp", "20160518"], ["history_date", "2016-05-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 38000000.0], ["avg_price", 38000000.0], ["high_price", 38000000.0], ["created_at", "2016-07-08 14:17:07.432528"], ["updated_at", "2016-07-08 14:17:07.432528"]]
54233
+  (2.3ms) COMMIT
54234
+  (0.3ms) BEGIN
54235
+  (2.8ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 85], ["eve_item_id", 2362]]
54236
+ SQL (3.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 85], ["eve_item_id", 2362], ["day_timestamp", "20150705"], ["history_date", "2015-07-05 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 51000000.0], ["avg_price", 51000000.0], ["high_price", 51000000.0], ["created_at", "2016-07-08 14:17:08.027602"], ["updated_at", "2016-07-08 14:17:08.027602"]]
54237
+ SQL (1.0ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 85], ["eve_item_id", 2362], ["day_timestamp", "20150711"], ["history_date", "2015-07-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 51000000.0], ["avg_price", 51000000.0], ["high_price", 51000000.0], ["created_at", "2016-07-08 14:17:08.033292"], ["updated_at", "2016-07-08 14:17:08.033292"]]
54238
+ SQL (0.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 85], ["eve_item_id", 2362], ["day_timestamp", "20150802"], ["history_date", "2015-08-02 00:00:00.000000"], ["order_count", 1], ["volume", 3], ["low_price", 51000000.0], ["avg_price", 51000000.0], ["high_price", 51000000.0], ["created_at", "2016-07-08 14:17:08.036648"], ["updated_at", "2016-07-08 14:17:08.036648"]]
54239
+ SQL (2.4ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 85], ["eve_item_id", 2362], ["day_timestamp", "20160118"], ["history_date", "2016-01-18 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 66000000.0], ["avg_price", 66000000.0], ["high_price", 66000000.0], ["created_at", "2016-07-08 14:17:08.039501"], ["updated_at", "2016-07-08 14:17:08.039501"]]
54240
+  (1.2ms) COMMIT
54241
+  (18.3ms) BEGIN
54242
+  (56.6ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 84], ["eve_item_id", 2362]]
54243
+ SQL (2.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 84], ["eve_item_id", 2362], ["day_timestamp", "20150814"], ["history_date", "2015-08-14 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 80000000.0], ["avg_price", 80000000.0], ["high_price", 80000000.0], ["created_at", "2016-07-08 14:17:09.017932"], ["updated_at", "2016-07-08 14:17:09.017932"]]
54244
+ SQL (1.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 84], ["eve_item_id", 2362], ["day_timestamp", "20150826"], ["history_date", "2015-08-26 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 80000000.0], ["avg_price", 80000000.0], ["high_price", 80000000.0], ["created_at", "2016-07-08 14:17:09.021837"], ["updated_at", "2016-07-08 14:17:09.021837"]]
54245
+ SQL (0.3ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 84], ["eve_item_id", 2362], ["day_timestamp", "20151031"], ["history_date", "2015-10-31 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 80000000.0], ["avg_price", 80000000.0], ["high_price", 80000000.0], ["created_at", "2016-07-08 14:17:09.024746"], ["updated_at", "2016-07-08 14:17:09.024746"]]
54246
+  (0.6ms) COMMIT
54247
+  (1.0ms) BEGIN
54248
+  (4.5ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 82], ["eve_item_id", 2362]]
54249
+ SQL (5.6ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 82], ["eve_item_id", 2362], ["day_timestamp", "20150626"], ["history_date", "2015-06-26 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55000000.0], ["avg_price", 55000000.0], ["high_price", 55000000.0], ["created_at", "2016-07-08 14:17:09.788139"], ["updated_at", "2016-07-08 14:17:09.788139"]]
54250
+ SQL (0.9ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 82], ["eve_item_id", 2362], ["day_timestamp", "20150721"], ["history_date", "2015-07-21 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:09.797992"], ["updated_at", "2016-07-08 14:17:09.797992"]]
54251
+ SQL (3.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 82], ["eve_item_id", 2362], ["day_timestamp", "20150822"], ["history_date", "2015-08-22 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 50000000.0], ["avg_price", 50000000.0], ["high_price", 50000000.0], ["created_at", "2016-07-08 14:17:09.801470"], ["updated_at", "2016-07-08 14:17:09.801470"]]
54252
+ SQL (1.1ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 82], ["eve_item_id", 2362], ["day_timestamp", "20150916"], ["history_date", "2015-09-16 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55000000.0], ["avg_price", 55000000.0], ["high_price", 55000000.0], ["created_at", "2016-07-08 14:17:09.807302"], ["updated_at", "2016-07-08 14:17:09.807302"]]
54253
+ SQL (3.2ms) INSERT INTO "crest_price_histories" ("region_id", "eve_item_id", "day_timestamp", "history_date", "order_count", "volume", "low_price", "avg_price", "high_price", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["region_id", 82], ["eve_item_id", 2362], ["day_timestamp", "20151011"], ["history_date", "2015-10-11 00:00:00.000000"], ["order_count", 1], ["volume", 1], ["low_price", 55000000.0], ["avg_price", 55000000.0], ["high_price", 55000000.0], ["created_at", "2016-07-08 14:17:09.811024"], ["updated_at", "2016-07-08 14:17:09.811024"]]
54254
+  (1.3ms) COMMIT
54255
+  (0.2ms) BEGIN
54256
+  (1.3ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 76], ["eve_item_id", 2362]]
54257
+  (0.3ms) COMMIT
54258
+  (0.9ms) BEGIN
54259
+  (5.4ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 75], ["eve_item_id", 2362]]
54260
+  (0.8ms) COMMIT
54261
+  (0.2ms) BEGIN
54262
+  (0.9ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 74], ["eve_item_id", 2362]]
54263
+  (0.3ms) COMMIT
54264
+  (0.7ms) BEGIN
54265
+  (3.8ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 73], ["eve_item_id", 2362]]
54266
+  (1.1ms) COMMIT
54267
+  (0.8ms) BEGIN
54268
+  (2.9ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 72], ["eve_item_id", 2362]]
54269
+  (0.8ms) COMMIT
54270
+  (0.5ms) BEGIN
54271
+  (3.5ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 71], ["eve_item_id", 2362]]
54272
+  (1.0ms) COMMIT
54273
+  (0.3ms) BEGIN
54274
+  (1.4ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 66], ["eve_item_id", 2362]]
54275
+  (0.4ms) COMMIT
54276
+  (0.3ms) BEGIN
54277
+ Could not log "sql.active_record" event. Interrupt: ["/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/core_ext/numeric/conversions.rb:125:in `block (2 levels) in <class:Numeric>'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/log_subscriber.rb:45:in `sql'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/subscriber.rb:100:in `finish'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/log_subscriber.rb:83:in `finish'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/notifications/fanout.rb:102:in `finish'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/notifications/fanout.rb:46:in `each'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/notifications/fanout.rb:46:in `finish'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/notifications/instrumenter.rb:36:in `finish'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.6/lib/active_support/notifications/instrumenter.rb:25:in `instrument'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/abstract_adapter.rb:466:in `log'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/postgresql_adapter.rb:601:in `exec_cache'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/postgresql_adapter.rb:585:in `execute_and_clear'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/postgresql/database_statements.rb:160:in `exec_query'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/abstract/database_statements.rb:356:in `select'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/abstract/query_cache.rb:70:in `select_all'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/relation/calculations.rb:180:in `pluck'", "/mnt/hdd1/ced/ruby/caddie/app/models/caddie/crest_price_history_update.rb:34:in `block (2 levels) in feed_price_histories'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/abstract/transaction.rb:184:in `within_new_transaction'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/activerecord-4.2.6/lib/active_record/transactions.rb:220:in `transaction'", "/mnt/hdd1/ced/ruby/caddie/app/models/caddie/crest_price_history_update.rb:31:in `block in feed_price_histories'", "/mnt/hdd1/ced/ruby/caddie/app/models/caddie/crest_price_history_update.rb:22:in `each'", "/mnt/hdd1/ced/ruby/caddie/app/models/caddie/crest_price_history_update.rb:22:in `feed_price_histories'", "/mnt/hdd1/ced/ruby/caddie/lib/tasks/caddie_tasks.rake:16:in `block (2 levels) in <top (required)>'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/task.rb:248:in `block in execute'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/task.rb:243:in `each'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/task.rb:243:in `execute'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/task.rb:187:in `block in invoke_with_call_chain'", "/home/ced/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/monitor.rb:214:in `mon_synchronize'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/task.rb:180:in `invoke_with_call_chain'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/task.rb:173:in `invoke'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:152:in `invoke_task'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:108:in `block (2 levels) in top_level'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:108:in `each'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:108:in `block in top_level'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:117:in `run_with_threads'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:102:in `top_level'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:80:in `block in run'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:178:in `standard_exception_handling'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/lib/rake/application.rb:77:in `run'", "/home/ced/.rvm/gems/ruby-2.3.0/gems/rake-11.2.2/exe/rake:27:in `<top (required)>'", "/home/ced/.rvm/gems/ruby-2.3.0/bin/rake:23:in `load'", "/home/ced/.rvm/gems/ruby-2.3.0/bin/rake:23:in `<main>'", "/home/ced/.rvm/gems/ruby-2.3.0/bin/ruby_executable_hooks:15:in `eval'", "/home/ced/.rvm/gems/ruby-2.3.0/bin/ruby_executable_hooks:15:in `<main>'"]
54278
+  (0.3ms) COMMIT
54279
+  (0.7ms) BEGIN
54280
+  (0.5ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 62], ["eve_item_id", 2362]]
54281
+  (0.3ms) COMMIT
54282
+  (25.2ms) BEGIN
54283
+  (2.3ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 57], ["eve_item_id", 2362]]
54284
+  (0.9ms) COMMIT
54285
+  (0.4ms) BEGIN
54286
+  (2.5ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 53], ["eve_item_id", 2362]]
54287
+  (0.6ms) COMMIT
54288
+  (1.2ms) BEGIN
54289
+  (7.5ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 51], ["eve_item_id", 2362]]
54290
+  (1.1ms) COMMIT
54291
+  (0.4ms) BEGIN
54292
+  (1.9ms) SELECT "crest_price_histories"."day_timestamp" FROM "crest_price_histories" WHERE "crest_price_histories"."region_id" = $1 AND "crest_price_histories"."eve_item_id" = $2 [["region_id", 49], ["eve_item_id", 2362]]
54293
+  (0.6ms) COMMIT
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caddie
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zuger Cédric
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-08 00:00:00.000000000 Z
11
+ date: 2016-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails