human_attribute_values 1.0.0 → 1.2.2

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.
Files changed (66) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +25 -0
  3. data/README.md +35 -7
  4. data/lib/human_attribute_values.rb +2 -0
  5. data/lib/human_attribute_values/human_attribute_value.rb +17 -14
  6. data/lib/human_attribute_values/version.rb +3 -1
  7. data/test/active_model_test.rb +71 -0
  8. data/test/{human_attribute_values_test.rb → active_record_test.rb} +22 -14
  9. data/test/dummy/Rakefile +3 -1
  10. data/test/dummy/app/assets/config/manifest.js +3 -0
  11. data/test/dummy/app/controllers/application_controller.rb +2 -0
  12. data/test/dummy/app/helpers/application_helper.rb +2 -0
  13. data/test/dummy/app/models/active_model_child.rb +4 -0
  14. data/test/dummy/app/models/active_model_grand_child.rb +4 -0
  15. data/test/dummy/app/models/active_model_model.rb +7 -0
  16. data/test/dummy/app/models/active_model_parent.rb +7 -0
  17. data/test/dummy/app/models/active_model_sibling.rb +4 -0
  18. data/test/dummy/app/models/boolean_model.rb +2 -0
  19. data/test/dummy/app/models/child.rb +2 -0
  20. data/test/dummy/app/models/enum_model.rb +2 -0
  21. data/test/dummy/app/models/file_model.rb +7 -0
  22. data/test/dummy/app/models/grand_child.rb +2 -0
  23. data/test/dummy/app/models/lexicon.rb +3 -1
  24. data/test/dummy/app/models/numeric_model.rb +2 -0
  25. data/test/dummy/app/models/parent.rb +2 -0
  26. data/test/dummy/app/models/sibling.rb +2 -0
  27. data/test/dummy/app/models/the_answer.rb +3 -0
  28. data/test/dummy/config.ru +3 -1
  29. data/test/dummy/config/application.rb +4 -3
  30. data/test/dummy/config/boot.rb +4 -2
  31. data/test/dummy/config/environment.rb +3 -1
  32. data/test/dummy/config/environments/development.rb +2 -0
  33. data/test/dummy/config/environments/production.rb +2 -0
  34. data/test/dummy/config/environments/test.rb +4 -2
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +2 -0
  36. data/test/dummy/config/initializers/filter_parameter_logging.rb +2 -0
  37. data/test/dummy/config/initializers/inflections.rb +2 -0
  38. data/test/dummy/config/initializers/mime_types.rb +2 -0
  39. data/test/dummy/config/initializers/secret_token.rb +2 -0
  40. data/test/dummy/config/initializers/session_store.rb +2 -0
  41. data/test/dummy/config/initializers/wrap_parameters.rb +2 -0
  42. data/test/dummy/config/locales/en.yml +38 -1
  43. data/test/dummy/config/routes.rb +2 -0
  44. data/test/dummy/db/migrate/20150127220502_create_the_answers.rb +5 -1
  45. data/test/dummy/db/migrate/20150131153819_create_parents.rb +4 -1
  46. data/test/dummy/db/migrate/20150131161322_create_boolean_models.rb +4 -1
  47. data/test/dummy/db/migrate/20150131162551_create_numeric_models.rb +4 -1
  48. data/test/dummy/db/migrate/20150131164609_create_lexicons.rb +4 -3
  49. data/test/dummy/db/migrate/20150131170613_create_enum_models.rb +4 -1
  50. data/test/dummy/db/schema.rb +28 -30
  51. data/test/dummy/db/test.sqlite3 +0 -0
  52. data/test/dummy/log/test.log +1003 -2618
  53. data/test/dummy/test/models/boolean_model_test.rb +2 -0
  54. data/test/dummy/test/models/child_test.rb +2 -0
  55. data/test/dummy/test/models/enum_model_test.rb +2 -0
  56. data/test/dummy/test/models/grand_child_test.rb +2 -0
  57. data/test/dummy/test/models/lexicon_test.rb +2 -0
  58. data/test/dummy/test/models/numeric_model_test.rb +2 -0
  59. data/test/dummy/test/models/sibling_test.rb +2 -0
  60. data/test/dummy/test/models/the_answer_test.rb +2 -0
  61. data/test/test_helper.rb +6 -4
  62. metadata +97 -76
  63. data/Rakefile +0 -32
  64. data/lib/tasks/human_attribute_value_tasks.rake +0 -4
  65. data/test/dummy/db/development.sqlite3 +0 -0
  66. data/test/dummy/log/development.log +0 -310
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class BooleanModelTest < ActiveSupport::TestCase
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class ChildTest < ActiveSupport::TestCase
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class EnumModelTest < ActiveSupport::TestCase
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class GrandChildTest < ActiveSupport::TestCase
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class LexiconTest < ActiveSupport::TestCase
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class NumericModelTest < ActiveSupport::TestCase
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class SiblingTest < ActiveSupport::TestCase
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'test_helper'
2
4
 
3
5
  class TheAnswerTest < ActiveSupport::TestCase
@@ -1,8 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Configure Rails Environment
2
- ENV["RAILS_ENV"] = "test"
4
+ ENV['RAILS_ENV'] = 'test'
3
5
 
4
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
- require "rails/test_help"
6
+ require File.expand_path('dummy/config/environment.rb', __dir__)
7
+ require 'rails/test_help'
6
8
 
7
9
  Rails.backtrace_cleaner.remove_silencers!
8
10
 
@@ -11,5 +13,5 @@ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
13
 
12
14
  # Load fixtures from the engine
13
15
  if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
- ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
16
+ ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__)
15
17
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: human_attribute_values
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Peschla
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-13 00:00:00.000000000 Z
11
+ date: 2020-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,72 +16,91 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.8
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '5.1'
19
+ version: 4.2.10
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
- version: 4.1.8
30
- - - "<"
26
+ version: 4.2.10
27
+ - !ruby/object:Gem::Dependency
28
+ name: appraisal
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
31
39
  - !ruby/object:Gem::Version
32
- version: '5.1'
40
+ version: '0'
33
41
  - !ruby/object:Gem::Dependency
34
- name: sqlite3
42
+ name: byebug
35
43
  requirement: !ruby/object:Gem::Requirement
36
44
  requirements:
37
- - - "~>"
45
+ - - ">="
38
46
  - !ruby/object:Gem::Version
39
- version: 1.3.10
47
+ version: '0'
40
48
  type: :development
41
49
  prerelease: false
42
50
  version_requirements: !ruby/object:Gem::Requirement
43
51
  requirements:
44
- - - "~>"
52
+ - - ">="
45
53
  - !ruby/object:Gem::Version
46
- version: 1.3.10
54
+ version: '0'
47
55
  - !ruby/object:Gem::Dependency
48
- name: appraisal
56
+ name: sqlite3
49
57
  requirement: !ruby/object:Gem::Requirement
50
58
  requirements:
51
- - - "~>"
59
+ - - ">="
52
60
  - !ruby/object:Gem::Version
53
- version: '2.0'
61
+ version: '0'
54
62
  type: :development
55
63
  prerelease: false
56
64
  version_requirements: !ruby/object:Gem::Requirement
57
65
  requirements:
58
- - - "~>"
66
+ - - ">="
59
67
  - !ruby/object:Gem::Version
60
- version: '2.0'
68
+ version: '0'
61
69
  description: Easy translation of attribute values for models through locale files
62
70
  in a similar way as for attribute names.
63
71
  email:
64
72
  - github@peschla.net
65
73
  executables: []
66
74
  extensions: []
67
- extra_rdoc_files: []
75
+ extra_rdoc_files:
76
+ - README.md
77
+ - MIT-LICENSE
78
+ - CHANGELOG.md
68
79
  files:
80
+ - CHANGELOG.md
69
81
  - MIT-LICENSE
70
82
  - README.md
71
- - Rakefile
72
83
  - lib/human_attribute_values.rb
73
84
  - lib/human_attribute_values/human_attribute_value.rb
74
85
  - lib/human_attribute_values/version.rb
75
- - lib/tasks/human_attribute_value_tasks.rake
86
+ - test/active_model_test.rb
87
+ - test/active_record_test.rb
76
88
  - test/dummy/README.rdoc
77
89
  - test/dummy/Rakefile
90
+ - test/dummy/app/assets/config/manifest.js
78
91
  - test/dummy/app/assets/javascripts/application.js
79
92
  - test/dummy/app/assets/stylesheets/application.css
80
93
  - test/dummy/app/controllers/application_controller.rb
81
94
  - test/dummy/app/helpers/application_helper.rb
95
+ - test/dummy/app/models/active_model_child.rb
96
+ - test/dummy/app/models/active_model_grand_child.rb
97
+ - test/dummy/app/models/active_model_model.rb
98
+ - test/dummy/app/models/active_model_parent.rb
99
+ - test/dummy/app/models/active_model_sibling.rb
82
100
  - test/dummy/app/models/boolean_model.rb
83
101
  - test/dummy/app/models/child.rb
84
102
  - test/dummy/app/models/enum_model.rb
103
+ - test/dummy/app/models/file_model.rb
85
104
  - test/dummy/app/models/grand_child.rb
86
105
  - test/dummy/app/models/lexicon.rb
87
106
  - test/dummy/app/models/numeric_model.rb
@@ -109,7 +128,6 @@ files:
109
128
  - test/dummy/config/initializers/wrap_parameters.rb
110
129
  - test/dummy/config/locales/en.yml
111
130
  - test/dummy/config/routes.rb
112
- - test/dummy/db/development.sqlite3
113
131
  - test/dummy/db/migrate/20150127220502_create_the_answers.rb
114
132
  - test/dummy/db/migrate/20150131153819_create_parents.rb
115
133
  - test/dummy/db/migrate/20150131161322_create_boolean_models.rb
@@ -118,7 +136,6 @@ files:
118
136
  - test/dummy/db/migrate/20150131170613_create_enum_models.rb
119
137
  - test/dummy/db/schema.rb
120
138
  - test/dummy/db/test.sqlite3
121
- - test/dummy/log/development.log
122
139
  - test/dummy/log/test.log
123
140
  - test/dummy/public/404.html
124
141
  - test/dummy/public/422.html
@@ -140,7 +157,6 @@ files:
140
157
  - test/dummy/test/models/numeric_model_test.rb
141
158
  - test/dummy/test/models/sibling_test.rb
142
159
  - test/dummy/test/models/the_answer_test.rb
143
- - test/human_attribute_values_test.rb
144
160
  - test/test_helper.rb
145
161
  homepage: https://github.com/RST-J/human_attribute_values
146
162
  licenses:
@@ -154,85 +170,90 @@ required_ruby_version: !ruby/object:Gem::Requirement
154
170
  requirements:
155
171
  - - ">="
156
172
  - !ruby/object:Gem::Version
157
- version: 2.0.0
173
+ version: 2.3.0
158
174
  required_rubygems_version: !ruby/object:Gem::Requirement
159
175
  requirements:
160
176
  - - ">="
161
177
  - !ruby/object:Gem::Version
162
178
  version: '0'
163
179
  requirements: []
164
- rubyforge_project:
165
- rubygems_version: 2.4.8
180
+ rubygems_version: 3.1.2
166
181
  signing_key:
167
182
  specification_version: 4
168
183
  summary: Translate attribute values using Rails I18n API.
169
184
  test_files:
170
- - test/human_attribute_values_test.rb
185
+ - test/active_record_test.rb
171
186
  - test/test_helper.rb
172
- - test/dummy/Rakefile
173
- - test/dummy/db/test.sqlite3
174
- - test/dummy/db/migrate/20150127220502_create_the_answers.rb
175
- - test/dummy/db/migrate/20150131161322_create_boolean_models.rb
176
- - test/dummy/db/migrate/20150131164609_create_lexicons.rb
177
- - test/dummy/db/migrate/20150131162551_create_numeric_models.rb
178
- - test/dummy/db/migrate/20150131153819_create_parents.rb
179
- - test/dummy/db/migrate/20150131170613_create_enum_models.rb
180
- - test/dummy/db/schema.rb
181
- - test/dummy/db/development.sqlite3
187
+ - test/dummy/test/fixtures/lexicons.yml
188
+ - test/dummy/test/fixtures/numeric_models.yml
189
+ - test/dummy/test/fixtures/the_answers.yml
190
+ - test/dummy/test/fixtures/boolean_models.yml
191
+ - test/dummy/test/fixtures/children.yml
192
+ - test/dummy/test/fixtures/enum_models.yml
193
+ - test/dummy/test/fixtures/siblings.yml
194
+ - test/dummy/test/fixtures/grandchildren.yml
182
195
  - test/dummy/test/models/enum_model_test.rb
183
196
  - test/dummy/test/models/numeric_model_test.rb
184
- - test/dummy/test/models/grand_child_test.rb
185
- - test/dummy/test/models/the_answer_test.rb
186
- - test/dummy/test/models/child_test.rb
187
197
  - test/dummy/test/models/lexicon_test.rb
188
198
  - test/dummy/test/models/boolean_model_test.rb
199
+ - test/dummy/test/models/child_test.rb
189
200
  - test/dummy/test/models/sibling_test.rb
190
- - test/dummy/test/fixtures/enum_models.yml
191
- - test/dummy/test/fixtures/lexicons.yml
192
- - test/dummy/test/fixtures/grandchildren.yml
193
- - test/dummy/test/fixtures/boolean_models.yml
194
- - test/dummy/test/fixtures/children.yml
195
- - test/dummy/test/fixtures/siblings.yml
196
- - test/dummy/test/fixtures/the_answers.yml
197
- - test/dummy/test/fixtures/numeric_models.yml
198
- - test/dummy/log/test.log
199
- - test/dummy/log/development.log
201
+ - test/dummy/test/models/grand_child_test.rb
202
+ - test/dummy/test/models/the_answer_test.rb
203
+ - test/dummy/db/schema.rb
204
+ - test/dummy/db/test.sqlite3
205
+ - test/dummy/db/migrate/20150127220502_create_the_answers.rb
206
+ - test/dummy/db/migrate/20150131153819_create_parents.rb
207
+ - test/dummy/db/migrate/20150131170613_create_enum_models.rb
208
+ - test/dummy/db/migrate/20150131164609_create_lexicons.rb
209
+ - test/dummy/db/migrate/20150131161322_create_boolean_models.rb
210
+ - test/dummy/db/migrate/20150131162551_create_numeric_models.rb
200
211
  - test/dummy/bin/rails
201
212
  - test/dummy/bin/bundle
202
213
  - test/dummy/bin/rake
214
+ - test/dummy/Rakefile
215
+ - test/dummy/config.ru
203
216
  - test/dummy/README.rdoc
217
+ - test/dummy/config/environments/test.rb
218
+ - test/dummy/config/environments/production.rb
219
+ - test/dummy/config/environments/development.rb
220
+ - test/dummy/config/locales/en.yml
221
+ - test/dummy/config/routes.rb
222
+ - test/dummy/config/initializers/wrap_parameters.rb
223
+ - test/dummy/config/initializers/backtrace_silencers.rb
224
+ - test/dummy/config/initializers/mime_types.rb
225
+ - test/dummy/config/initializers/inflections.rb
226
+ - test/dummy/config/initializers/session_store.rb
227
+ - test/dummy/config/initializers/filter_parameter_logging.rb
228
+ - test/dummy/config/initializers/secret_token.rb
229
+ - test/dummy/config/database.yml
230
+ - test/dummy/config/application.rb
231
+ - test/dummy/config/environment.rb
232
+ - test/dummy/config/boot.rb
204
233
  - test/dummy/public/500.html
205
234
  - test/dummy/public/favicon.ico
206
235
  - test/dummy/public/404.html
207
236
  - test/dummy/public/422.html
208
- - test/dummy/app/controllers/application_controller.rb
237
+ - test/dummy/log/test.log
209
238
  - test/dummy/app/assets/stylesheets/application.css
239
+ - test/dummy/app/assets/config/manifest.js
210
240
  - test/dummy/app/assets/javascripts/application.js
211
- - test/dummy/app/helpers/application_helper.rb
212
- - test/dummy/app/models/the_answer.rb
241
+ - test/dummy/app/models/enum_model.rb
242
+ - test/dummy/app/models/active_model_model.rb
243
+ - test/dummy/app/models/active_model_parent.rb
244
+ - test/dummy/app/models/parent.rb
213
245
  - test/dummy/app/models/numeric_model.rb
246
+ - test/dummy/app/models/active_model_child.rb
247
+ - test/dummy/app/models/grand_child.rb
248
+ - test/dummy/app/models/sibling.rb
214
249
  - test/dummy/app/models/child.rb
215
- - test/dummy/app/models/enum_model.rb
250
+ - test/dummy/app/models/active_model_sibling.rb
251
+ - test/dummy/app/models/active_model_grand_child.rb
216
252
  - test/dummy/app/models/lexicon.rb
253
+ - test/dummy/app/models/file_model.rb
254
+ - test/dummy/app/models/the_answer.rb
217
255
  - test/dummy/app/models/boolean_model.rb
218
- - test/dummy/app/models/parent.rb
219
- - test/dummy/app/models/sibling.rb
220
- - test/dummy/app/models/grand_child.rb
221
256
  - test/dummy/app/views/layouts/application.html.erb
222
- - test/dummy/config/locales/en.yml
223
- - test/dummy/config/routes.rb
224
- - test/dummy/config/environments/test.rb
225
- - test/dummy/config/environments/production.rb
226
- - test/dummy/config/environments/development.rb
227
- - test/dummy/config/environment.rb
228
- - test/dummy/config/boot.rb
229
- - test/dummy/config/initializers/inflections.rb
230
- - test/dummy/config/initializers/wrap_parameters.rb
231
- - test/dummy/config/initializers/secret_token.rb
232
- - test/dummy/config/initializers/session_store.rb
233
- - test/dummy/config/initializers/mime_types.rb
234
- - test/dummy/config/initializers/backtrace_silencers.rb
235
- - test/dummy/config/initializers/filter_parameter_logging.rb
236
- - test/dummy/config/application.rb
237
- - test/dummy/config/database.yml
238
- - test/dummy/config.ru
257
+ - test/dummy/app/helpers/application_helper.rb
258
+ - test/dummy/app/controllers/application_controller.rb
259
+ - test/active_model_test.rb
data/Rakefile DELETED
@@ -1,32 +0,0 @@
1
- begin
2
- require 'bundler/setup'
3
- rescue LoadError
4
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
- end
6
-
7
- require 'rdoc/task'
8
-
9
- RDoc::Task.new(:rdoc) do |rdoc|
10
- rdoc.rdoc_dir = 'rdoc'
11
- rdoc.title = 'HumanAttributeValue'
12
- rdoc.options << '--line-numbers'
13
- rdoc.rdoc_files.include('README.rdoc')
14
- rdoc.rdoc_files.include('lib/**/*.rb')
15
- end
16
-
17
-
18
-
19
-
20
- Bundler::GemHelper.install_tasks
21
-
22
- require 'rake/testtask'
23
-
24
- Rake::TestTask.new(:test) do |t|
25
- t.libs << 'lib'
26
- t.libs << 'test'
27
- t.pattern = 'test/**/*_test.rb'
28
- t.verbose = false
29
- end
30
-
31
-
32
- task default: :test
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :human_attribute_value do
3
- # # Task goes here
4
- # end
@@ -1,310 +0,0 @@
1
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
- Migrating to Parent (20150131153819)
3
-  (0.0ms) begin transaction
4
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
5
-  (65.8ms) commit transaction
6
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
7
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
- Migrating to Parent (20150131153819)
10
-  (0.0ms) begin transaction
11
-  (0.1ms) DROP TABLE "parent"
12
- SQLite3::SQLException: no such table: parent: DROP TABLE "parent"
13
-  (0.0ms) rollback transaction
14
-  (71.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
15
-  (0.1ms) select sqlite_version(*)
16
-  (105.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
- Migrating to CreateTheAnswers (20150127220502)
19
-  (0.0ms) begin transaction
20
-  (0.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
21
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
22
-  (62.1ms) commit transaction
23
- Migrating to Parent (20150131153819)
24
-  (0.0ms) begin transaction
25
-  (0.2ms) CREATE TABLE "parent" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
26
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
27
-  (65.2ms) commit transaction
28
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
-  (96.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
30
-  (0.1ms) select sqlite_version(*)
31
-  (99.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
32
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
33
- Migrating to CreateTheAnswers (20150127220502)
34
-  (0.0ms) begin transaction
35
-  (0.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
36
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
37
-  (106.6ms) commit transaction
38
- Migrating to Parent (20150131153819)
39
-  (0.1ms) begin transaction
40
-  (0.3ms) CREATE TABLE "parent" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
41
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
42
-  (64.3ms) commit transaction
43
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
44
-  (93.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
45
-  (0.1ms) select sqlite_version(*)
46
-  (99.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
47
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
48
- Migrating to CreateTheAnswers (20150127220502)
49
-  (0.0ms) begin transaction
50
-  (0.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
51
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
52
-  (106.6ms) commit transaction
53
- Migrating to CreateParents (20150131153819)
54
-  (0.0ms) begin transaction
55
-  (0.2ms) CREATE TABLE "parent" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
56
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
57
-  (65.2ms) commit transaction
58
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
59
-  (90.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
60
-  (0.1ms) select sqlite_version(*)
61
-  (111.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
63
- Migrating to CreateTheAnswers (20150127220502)
64
-  (0.0ms) begin transaction
65
-  (0.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
66
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
67
-  (106.0ms) commit transaction
68
- Migrating to CreateParents (20150131153819)
69
-  (0.1ms) begin transaction
70
-  (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
71
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
72
-  (65.2ms) commit transaction
73
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
74
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
75
- Migrating to CreateBooleanModels (20150131161322)
76
-  (0.0ms) begin transaction
77
-  (0.2ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime) 
78
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131161322"]]
79
-  (43.4ms) commit transaction
80
- Migrating to CreateNumericModels (20150131162551)
81
-  (0.0ms) begin transaction
82
-  (0.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime) 
83
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131162551"]]
84
-  (26.3ms) commit transaction
85
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
86
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
87
- Migrating to CreateLexicons (20150131164609)
88
-  (0.0ms) begin transaction
89
-  (0.2ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "answers_id" integer, "created_at" datetime, "updated_at" datetime) 
90
-  (0.0ms) select sqlite_version(*)
91
-  (0.1ms) CREATE INDEX "index_lexicons_on_answers_id" ON "lexicons" ("answers_id")
92
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
93
-  (44.0ms) commit transaction
94
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
95
-  (0.1ms)  SELECT sql
96
- FROM sqlite_master
97
- WHERE name='index_lexicons_on_answers_id' AND type='index'
98
- UNION ALL
99
- SELECT sql
100
- FROM sqlite_temp_master
101
- WHERE name='index_lexicons_on_answers_id' AND type='index'
102
- 
103
-  (94.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
104
-  (0.1ms) select sqlite_version(*)
105
-  (120.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
106
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
107
- Migrating to CreateTheAnswers (20150127220502)
108
-  (0.0ms) begin transaction
109
-  (0.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
110
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
111
-  (106.5ms) commit transaction
112
- Migrating to CreateParents (20150131153819)
113
-  (0.1ms) begin transaction
114
-  (0.3ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
115
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
116
-  (64.0ms) commit transaction
117
- Migrating to CreateBooleanModels (20150131161322)
118
-  (0.1ms) begin transaction
119
-  (0.2ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
120
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131161322"]]
121
-  (269.3ms) commit transaction
122
- Migrating to CreateNumericModels (20150131162551)
123
-  (0.0ms) begin transaction
124
-  (0.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
125
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131162551"]]
126
-  (73.4ms) commit transaction
127
- Migrating to CreateLexicons (20150131164609)
128
-  (0.1ms) begin transaction
129
-  (0.3ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "answer_id" integer, "created_at" datetime, "updated_at" datetime)
130
-  (0.1ms) CREATE INDEX "index_lexicons_on_answer_id" ON "lexicons" ("answer_id")
131
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
132
-  (73.9ms) commit transaction
133
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
134
-  (0.1ms)  SELECT sql
135
- FROM sqlite_master
136
- WHERE name='index_lexicons_on_answer_id' AND type='index'
137
- UNION ALL
138
- SELECT sql
139
- FROM sqlite_temp_master
140
- WHERE name='index_lexicons_on_answer_id' AND type='index'
141
- 
142
-  (103.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
143
-  (0.1ms) select sqlite_version(*)
144
-  (110.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
145
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
146
- Migrating to CreateTheAnswers (20150127220502)
147
-  (0.0ms) begin transaction
148
-  (0.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
149
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
150
-  (117.4ms) commit transaction
151
- Migrating to CreateParents (20150131153819)
152
-  (0.0ms) begin transaction
153
-  (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
154
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
155
-  (66.6ms) commit transaction
156
- Migrating to CreateBooleanModels (20150131161322)
157
-  (0.1ms) begin transaction
158
-  (0.1ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
159
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131161322"]]
160
-  (283.4ms) commit transaction
161
- Migrating to CreateNumericModels (20150131162551)
162
-  (0.1ms) begin transaction
163
-  (0.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
164
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131162551"]]
165
-  (88.9ms) commit transaction
166
- Migrating to CreateLexicons (20150131164609)
167
-  (0.1ms) begin transaction
168
-  (0.3ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
169
-  (0.3ms) CREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")
170
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
171
-  (85.4ms) commit transaction
172
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
-  (0.1ms)  SELECT sql
174
- FROM sqlite_master
175
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
176
- UNION ALL
177
- SELECT sql
178
- FROM sqlite_temp_master
179
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
180
- 
181
-  (91.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
182
-  (0.1ms) select sqlite_version(*)
183
-  (120.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
184
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
185
- Migrating to CreateTheAnswers (20150127220502)
186
-  (0.1ms) begin transaction
187
-  (0.4ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
188
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
189
-  (101.1ms) commit transaction
190
- Migrating to CreateParents (20150131153819)
191
-  (0.0ms) begin transaction
192
-  (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
193
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
194
-  (65.4ms) commit transaction
195
- Migrating to CreateBooleanModels (20150131161322)
196
-  (0.0ms) begin transaction
197
-  (0.1ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
198
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131161322"]]
199
-  (232.0ms) commit transaction
200
- Migrating to CreateNumericModels (20150131162551)
201
-  (0.1ms) begin transaction
202
-  (0.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
203
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131162551"]]
204
-  (85.5ms) commit transaction
205
- Migrating to CreateLexicons (20150131164609)
206
-  (0.1ms) begin transaction
207
-  (0.5ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
208
-  (0.3ms) CREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")
209
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
210
-  (87.0ms) commit transaction
211
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
212
-  (0.1ms)  SELECT sql
213
- FROM sqlite_master
214
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
215
- UNION ALL
216
- SELECT sql
217
- FROM sqlite_temp_master
218
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
219
- 
220
-  (78.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
221
-  (0.2ms) select sqlite_version(*)
222
-  (87.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
223
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
224
- Migrating to CreateTheAnswers (20150127220502)
225
-  (0.1ms) begin transaction
226
-  (0.3ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
227
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
228
-  (125.7ms) commit transaction
229
- Migrating to CreateParents (20150131153819)
230
-  (0.0ms) begin transaction
231
-  (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
232
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
233
-  (98.6ms) commit transaction
234
- Migrating to CreateBooleanModels (20150131161322)
235
-  (0.0ms) begin transaction
236
-  (0.2ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
237
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131161322"]]
238
-  (336.3ms) commit transaction
239
- Migrating to CreateNumericModels (20150131162551)
240
-  (0.0ms) begin transaction
241
-  (0.1ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
242
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131162551"]]
243
-  (152.8ms) commit transaction
244
- Migrating to CreateLexicons (20150131164609)
245
-  (0.1ms) begin transaction
246
-  (0.2ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
247
-  (0.1ms) CREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")
248
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
249
-  (115.1ms) commit transaction
250
- Migrating to CreateEnumModels (20150131170613)
251
-  (0.0ms) begin transaction
252
-  (0.2ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime, "updated_at" datetime) 
253
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131170613"]]
254
-  (65.4ms) commit transaction
255
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
256
-  (0.3ms)  SELECT sql
257
- FROM sqlite_master
258
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
259
- UNION ALL
260
- SELECT sql
261
- FROM sqlite_temp_master
262
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
263
- 
264
-  (97.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
265
-  (0.2ms) select sqlite_version(*)
266
-  (119.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
267
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
268
- Migrating to CreateTheAnswers (20150127220502)
269
-  (0.0ms) begin transaction
270
-  (0.2ms) CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
271
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127220502"]]
272
-  (106.2ms) commit transaction
273
- Migrating to CreateParents (20150131153819)
274
-  (0.1ms) begin transaction
275
-  (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
276
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131153819"]]
277
-  (66.0ms) commit transaction
278
- Migrating to CreateBooleanModels (20150131161322)
279
-  (0.1ms) begin transaction
280
-  (0.2ms) CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
281
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131161322"]]
282
-  (249.9ms) commit transaction
283
- Migrating to CreateNumericModels (20150131162551)
284
-  (0.0ms) begin transaction
285
-  (0.2ms) CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
286
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131162551"]]
287
-  (89.1ms) commit transaction
288
- Migrating to CreateLexicons (20150131164609)
289
-  (0.2ms) begin transaction
290
-  (0.6ms) CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
291
-  (0.3ms) CREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")
292
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
293
-  (74.7ms) commit transaction
294
- Migrating to CreateEnumModels (20150131170613)
295
-  (0.3ms) begin transaction
296
-  (0.6ms) CREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime, "updated_at" datetime) 
297
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131170613"]]
298
-  (106.3ms) commit transaction
299
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
300
-  (0.1ms)  SELECT sql
301
- FROM sqlite_master
302
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
303
- UNION ALL
304
- SELECT sql
305
- FROM sqlite_temp_master
306
- WHERE name='index_lexicons_on_the_answer_id' AND type='index'
307
- 
308
-
309
- ***** Debugger requested, but was not available (ensure the debugger gem is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
310
-