thermos 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/thermos/version.rb +1 -1
- data/test/dummy/config/application.rb +3 -2
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20160325214744_create_categories.rb +1 -1
- data/test/dummy/db/migrate/20160325214849_create_products.rb +1 -1
- data/test/dummy/db/migrate/20160325220006_create_category_items.rb +1 -1
- data/test/dummy/db/migrate/20160326174530_create_stores.rb +1 -1
- data/test/dummy/db/schema.rb +10 -11
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +150 -75
- data/test/dummy/log/test.log +2125 -11241
- data/test/test_helper.rb +2 -0
- data/test/thermos_test.rb +1 -1
- metadata +38 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0bf15a8378a0c164b8096af5f9463c58d42e19a6
|
4
|
+
data.tar.gz: 34e7a3edb4fddfca51884451f06145eb46824ff2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7698f66d4bb60a0b8c4fda490effc9dceee4b6081114dff407c90efffa766266f70bc87c10c49174ec8f587703c8ad8acf85659d9486be9e20f0422608ff219c
|
7
|
+
data.tar.gz: 51c96a57f18bced54fd424a25d9d72cd04b2307d53980f1f7ea379b97598b15483ca1633995d7fdb7c060b754a932974e602e90d53fe8635f78a809e828de9a6
|
data/lib/thermos/version.rb
CHANGED
@@ -19,8 +19,9 @@ module Dummy
|
|
19
19
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
20
20
|
# config.i18n.default_locale = :de
|
21
21
|
|
22
|
-
|
23
|
-
|
22
|
+
if Rails.version >= "5.2.0"
|
23
|
+
Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true
|
24
|
+
end
|
24
25
|
end
|
25
26
|
end
|
26
27
|
|
Binary file
|
data/test/dummy/db/schema.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: UTF-8
|
2
1
|
# This file is auto-generated from the current state of the database. Instead
|
3
2
|
# of editing this file, please use the migrations feature of Active Record to
|
4
3
|
# incrementally modify your database, and then regenerate this schema definition.
|
@@ -11,31 +10,31 @@
|
|
11
10
|
#
|
12
11
|
# It's strongly recommended that you check this file into your version control system.
|
13
12
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
13
|
+
ActiveRecord::Schema.define(version: 2016_03_26_174530) do
|
15
14
|
|
16
15
|
create_table "categories", force: :cascade do |t|
|
17
|
-
t.string
|
18
|
-
t.integer
|
16
|
+
t.string "name"
|
17
|
+
t.integer "store_id"
|
19
18
|
t.datetime "created_at", null: false
|
20
19
|
t.datetime "updated_at", null: false
|
21
20
|
end
|
22
21
|
|
23
22
|
create_table "category_items", force: :cascade do |t|
|
24
|
-
t.string
|
25
|
-
t.integer
|
26
|
-
t.integer
|
27
|
-
t.datetime "created_at",
|
28
|
-
t.datetime "updated_at",
|
23
|
+
t.string "name"
|
24
|
+
t.integer "category_id"
|
25
|
+
t.integer "product_id"
|
26
|
+
t.datetime "created_at", null: false
|
27
|
+
t.datetime "updated_at", null: false
|
29
28
|
end
|
30
29
|
|
31
30
|
create_table "products", force: :cascade do |t|
|
32
|
-
t.string
|
31
|
+
t.string "name"
|
33
32
|
t.datetime "created_at", null: false
|
34
33
|
t.datetime "updated_at", null: false
|
35
34
|
end
|
36
35
|
|
37
36
|
create_table "stores", force: :cascade do |t|
|
38
|
-
t.string
|
37
|
+
t.string "name"
|
39
38
|
t.datetime "created_at", null: false
|
40
39
|
t.datetime "updated_at", null: false
|
41
40
|
end
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -1,79 +1,154 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer`
|
2
|
+
set to false is deprecated. SQLite databases have used 't' and 'f' to serialize
|
3
|
+
boolean values and must have old data converted to 1 and 0 (its native boolean
|
4
|
+
serialization) before setting this flag to true. Conversion can be accomplished
|
5
|
+
by setting up a rake task which runs
|
6
|
+
|
7
|
+
ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1)
|
8
|
+
ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0)
|
9
|
+
|
10
|
+
for all models and all boolean columns, after which the flag must be set to
|
11
|
+
true by adding the following to your application.rb file:
|
12
|
+
|
13
|
+
Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true
|
14
|
+
(called from load at /Users/athal/.gem/ruby/2.3.3/bin/rake:22)
|
15
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
16
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
17
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
18
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
5
19
|
Migrating to CreateCategories (20160325214744)
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
20
|
+
DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer`
|
21
|
+
set to false is deprecated. SQLite databases have used 't' and 'f' to serialize
|
22
|
+
boolean values and must have old data converted to 1 and 0 (its native boolean
|
23
|
+
serialization) before setting this flag to true. Conversion can be accomplished
|
24
|
+
by setting up a rake task which runs
|
25
|
+
|
26
|
+
ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1)
|
27
|
+
ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0)
|
28
|
+
|
29
|
+
for all models and all boolean columns, after which the flag must be set to
|
30
|
+
true by adding the following to your application.rb file:
|
31
|
+
|
32
|
+
Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true
|
33
|
+
(called from load at /Users/athal/.gem/ruby/2.3.3/bin/rake:22)
|
34
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
35
|
+
Migrating to CreateCategories (20160325214744)
|
36
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
37
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
38
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "store_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
39
|
+
[1m[36mActiveRecord::SchemaMigration Create (1.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160325214744"]]
|
40
|
+
[1m[35m (2.0ms)[0m [1m[36mcommit transaction[0m
|
10
41
|
Migrating to CreateProducts (20160325214849)
|
11
|
-
[1m[
|
12
|
-
[1m[35m (0.
|
13
|
-
[1m[
|
14
|
-
[1m[35m (
|
42
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
43
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE TABLE "products" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
44
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160325214849"]]
|
45
|
+
[1m[35m (3.2ms)[0m [1m[36mcommit transaction[0m
|
15
46
|
Migrating to CreateCategoryItems (20160325220006)
|
16
|
-
[1m[
|
17
|
-
[1m[35m (0.
|
18
|
-
[1m[
|
19
|
-
[1m[35m (
|
47
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
48
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE TABLE "category_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "category_id" integer, "product_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
49
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160325220006"]]
|
50
|
+
[1m[35m (18.1ms)[0m [1m[36mcommit transaction[0m
|
20
51
|
Migrating to CreateStores (20160326174530)
|
21
|
-
[1m[
|
22
|
-
[1m[35m (
|
23
|
-
[1m[
|
24
|
-
[1m[35m (
|
25
|
-
[1m[36mActiveRecord::
|
26
|
-
[1m[
|
27
|
-
[1m[
|
28
|
-
[1m[
|
29
|
-
[1m[
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
[1m[
|
45
|
-
[1m[
|
46
|
-
[1m[
|
47
|
-
[1m[
|
48
|
-
[1m[
|
49
|
-
[1m[
|
50
|
-
[1m[36mActiveRecord::
|
51
|
-
[1m[
|
52
|
-
[1m[
|
53
|
-
[1m[
|
54
|
-
[1m[
|
55
|
-
[1m[
|
56
|
-
[1m[
|
57
|
-
[1m[
|
58
|
-
[1m[
|
59
|
-
[1m[
|
60
|
-
[1m[36mActiveRecord::
|
61
|
-
[1m[
|
62
|
-
[1m[
|
63
|
-
[1m[
|
64
|
-
[1m[
|
65
|
-
[1m[
|
66
|
-
[1m[
|
67
|
-
[1m[
|
68
|
-
[1m[
|
69
|
-
[1m[
|
70
|
-
[1m[36mActiveRecord::
|
71
|
-
[1m[
|
72
|
-
[1m[
|
73
|
-
[1m[
|
74
|
-
[1m[
|
75
|
-
[1m[
|
76
|
-
[1m[
|
77
|
-
[1m[
|
78
|
-
[1m[
|
79
|
-
[1m[
|
52
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
53
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE TABLE "stores" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
54
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160326174530"]]
|
55
|
+
[1m[35m (2.2ms)[0m [1m[36mcommit transaction[0m
|
56
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
57
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
58
|
+
[1m[36mActiveRecord::InternalMetadata Create (1.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2018-10-15 21:20:44.366793"], ["updated_at", "2018-10-15 21:20:44.366793"]]
|
59
|
+
[1m[35m (1.9ms)[0m [1m[36mcommit transaction[0m
|
60
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
61
|
+
DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer`
|
62
|
+
set to false is deprecated. SQLite databases have used 't' and 'f' to serialize
|
63
|
+
boolean values and must have old data converted to 1 and 0 (its native boolean
|
64
|
+
serialization) before setting this flag to true. Conversion can be accomplished
|
65
|
+
by setting up a rake task which runs
|
66
|
+
|
67
|
+
ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1)
|
68
|
+
ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0)
|
69
|
+
|
70
|
+
for all models and all boolean columns, after which the flag must be set to
|
71
|
+
true by adding the following to your application.rb file:
|
72
|
+
|
73
|
+
Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true
|
74
|
+
(called from load at /Users/athal/.gem/ruby/2.3.3/bin/rake:22)
|
75
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
76
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
77
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
78
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
79
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
80
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
81
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
82
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
83
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
84
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
85
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
86
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
87
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
88
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
89
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
90
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
91
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
92
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
93
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
94
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
95
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
96
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
97
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
98
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
99
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
100
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
101
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
102
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
103
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
104
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
105
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
106
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
107
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
108
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
109
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
110
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
111
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
112
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
113
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
114
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
115
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
116
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
117
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
118
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
119
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
120
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
121
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
122
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
123
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
124
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
125
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
126
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.9ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
127
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
128
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
129
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
130
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
131
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
132
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
133
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
134
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
135
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
136
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
137
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
138
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
139
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
140
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
141
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
142
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
143
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
144
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
145
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
146
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
147
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
148
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
149
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
150
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
151
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
152
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
153
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
154
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|