human_attribute_values 0.0.1
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +72 -0
- data/Rakefile +32 -0
- data/lib/human_attribute_values/human_attribute_value.rb +43 -0
- data/lib/human_attribute_values/version.rb +3 -0
- data/lib/human_attribute_values.rb +4 -0
- data/lib/tasks/human_attribute_value_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/boolean_model.rb +2 -0
- data/test/dummy/app/models/child.rb +2 -0
- data/test/dummy/app/models/enum_model.rb +3 -0
- data/test/dummy/app/models/grand_child.rb +2 -0
- data/test/dummy/app/models/lexicon.rb +3 -0
- data/test/dummy/app/models/numeric_model.rb +2 -0
- data/test/dummy/app/models/parent.rb +2 -0
- data/test/dummy/app/models/sibling.rb +2 -0
- data/test/dummy/app/models/the_answer.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +40 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20150127220502_create_the_answers.rb +9 -0
- data/test/dummy/db/migrate/20150131153819_create_parents.rb +10 -0
- data/test/dummy/db/migrate/20150131161322_create_boolean_models.rb +9 -0
- data/test/dummy/db/migrate/20150131162551_create_numeric_models.rb +10 -0
- data/test/dummy/db/migrate/20150131164609_create_lexicons.rb +9 -0
- data/test/dummy/db/migrate/20150131170613_create_enum_models.rb +9 -0
- data/test/dummy/db/schema.rb +56 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +307 -0
- data/test/dummy/log/test.log +2445 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/fixtures/boolean_models.yml +7 -0
- data/test/dummy/test/fixtures/children.yml +11 -0
- data/test/dummy/test/fixtures/enum_models.yml +7 -0
- data/test/dummy/test/fixtures/grandchildren.yml +11 -0
- data/test/dummy/test/fixtures/lexicons.yml +7 -0
- data/test/dummy/test/fixtures/numeric_models.yml +9 -0
- data/test/dummy/test/fixtures/siblings.yml +11 -0
- data/test/dummy/test/fixtures/the_answers.yml +7 -0
- data/test/dummy/test/models/boolean_model_test.rb +7 -0
- data/test/dummy/test/models/child_test.rb +7 -0
- data/test/dummy/test/models/enum_model_test.rb +7 -0
- data/test/dummy/test/models/grand_child_test.rb +7 -0
- data/test/dummy/test/models/lexicon_test.rb +7 -0
- data/test/dummy/test/models/numeric_model_test.rb +7 -0
- data/test/dummy/test/models/sibling_test.rb +7 -0
- data/test/dummy/test/models/the_answer_test.rb +7 -0
- data/test/human_attribute_values_test.rb +69 -0
- data/test/test_helper.rb +15 -0
- metadata +216 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
en:
|
2
|
+
activerecord:
|
3
|
+
models:
|
4
|
+
the_answer: The ultimate Answer
|
5
|
+
attributes:
|
6
|
+
the_answer:
|
7
|
+
ultimate_truth: "The answer the answer to life, the universe and everything"
|
8
|
+
values:
|
9
|
+
the_answer:
|
10
|
+
ultimate_truth:
|
11
|
+
'42':
|
12
|
+
one: was calculated by Deep Thought
|
13
|
+
other: there is only one ultimate answer
|
14
|
+
'wissen ist Nacht': coined by Prof. Dr. Abdul Nachtigaller
|
15
|
+
parent:
|
16
|
+
field:
|
17
|
+
'1': 'parent value 1'
|
18
|
+
'2': 'parent value 2'
|
19
|
+
'3': 'parent value 3'
|
20
|
+
child:
|
21
|
+
field:
|
22
|
+
'1': 'child value 1'
|
23
|
+
'2': 'child value 2'
|
24
|
+
sibling:
|
25
|
+
field:
|
26
|
+
'4': 'sibling value 4'
|
27
|
+
grand_child:
|
28
|
+
field:
|
29
|
+
'1': 'grandchild value 1'
|
30
|
+
boolean_model:
|
31
|
+
boolean_field:
|
32
|
+
'true': 'This is true'
|
33
|
+
numeric_model:
|
34
|
+
integer_field:
|
35
|
+
'1': 'One'
|
36
|
+
decimal_field:
|
37
|
+
'1_0': 'One point zero'
|
38
|
+
enum_model:
|
39
|
+
status:
|
40
|
+
dead_and_alive: 'The box has not been opened yet'
|
@@ -0,0 +1,56 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
3
|
+
# See how all your routes lay out with "rake routes".
|
4
|
+
|
5
|
+
# You can have the root of your site routed with "root"
|
6
|
+
# root 'welcome#index'
|
7
|
+
|
8
|
+
# Example of regular route:
|
9
|
+
# get 'products/:id' => 'catalog#view'
|
10
|
+
|
11
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
12
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
13
|
+
|
14
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
15
|
+
# resources :products
|
16
|
+
|
17
|
+
# Example resource route with options:
|
18
|
+
# resources :products do
|
19
|
+
# member do
|
20
|
+
# get 'short'
|
21
|
+
# post 'toggle'
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# collection do
|
25
|
+
# get 'sold'
|
26
|
+
# end
|
27
|
+
# end
|
28
|
+
|
29
|
+
# Example resource route with sub-resources:
|
30
|
+
# resources :products do
|
31
|
+
# resources :comments, :sales
|
32
|
+
# resource :seller
|
33
|
+
# end
|
34
|
+
|
35
|
+
# Example resource route with more complex sub-resources:
|
36
|
+
# resources :products do
|
37
|
+
# resources :comments
|
38
|
+
# resources :sales do
|
39
|
+
# get 'recent', on: :collection
|
40
|
+
# end
|
41
|
+
# end
|
42
|
+
|
43
|
+
# Example resource route with concerns:
|
44
|
+
# concern :toggleable do
|
45
|
+
# post 'toggle'
|
46
|
+
# end
|
47
|
+
# resources :posts, concerns: :toggleable
|
48
|
+
# resources :photos, concerns: :toggleable
|
49
|
+
|
50
|
+
# Example resource route within a namespace:
|
51
|
+
# namespace :admin do
|
52
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
53
|
+
# # (app/controllers/admin/products_controller.rb)
|
54
|
+
# resources :products
|
55
|
+
# end
|
56
|
+
end
|
Binary file
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20150131170613) do
|
15
|
+
|
16
|
+
create_table "boolean_models", force: true do |t|
|
17
|
+
t.boolean "boolean_field"
|
18
|
+
t.datetime "created_at"
|
19
|
+
t.datetime "updated_at"
|
20
|
+
end
|
21
|
+
|
22
|
+
create_table "enum_models", force: true do |t|
|
23
|
+
t.integer "status"
|
24
|
+
t.datetime "created_at"
|
25
|
+
t.datetime "updated_at"
|
26
|
+
end
|
27
|
+
|
28
|
+
create_table "lexicons", force: true do |t|
|
29
|
+
t.integer "the_answer_id"
|
30
|
+
t.datetime "created_at"
|
31
|
+
t.datetime "updated_at"
|
32
|
+
end
|
33
|
+
|
34
|
+
add_index "lexicons", ["the_answer_id"], name: "index_lexicons_on_the_answer_id"
|
35
|
+
|
36
|
+
create_table "numeric_models", force: true do |t|
|
37
|
+
t.integer "integer_field"
|
38
|
+
t.decimal "decimal_field"
|
39
|
+
t.datetime "created_at"
|
40
|
+
t.datetime "updated_at"
|
41
|
+
end
|
42
|
+
|
43
|
+
create_table "parents", force: true do |t|
|
44
|
+
t.string "type"
|
45
|
+
t.string "field"
|
46
|
+
t.datetime "created_at"
|
47
|
+
t.datetime "updated_at"
|
48
|
+
end
|
49
|
+
|
50
|
+
create_table "the_answers", force: true do |t|
|
51
|
+
t.string "ultimate_truth"
|
52
|
+
t.datetime "created_at"
|
53
|
+
t.datetime "updated_at"
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
Binary file
|
@@ -0,0 +1,307 @@
|
|
1
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2
|
+
Migrating to Parent (20150131153819)
|
3
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
5
|
+
[1m[35m (65.8ms)[0m commit transaction
|
6
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
8
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
9
|
+
Migrating to Parent (20150131153819)
|
10
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11
|
+
[1m[35m (0.1ms)[0m DROP TABLE "parent"
|
12
|
+
SQLite3::SQLException: no such table: parent: DROP TABLE "parent"
|
13
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14
|
+
[1m[36m (71.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
15
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
16
|
+
[1m[36m (105.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
17
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
18
|
+
Migrating to CreateTheAnswers (20150127220502)
|
19
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
20
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
21
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
22
|
+
[1m[35m (62.1ms)[0m commit transaction
|
23
|
+
Migrating to Parent (20150131153819)
|
24
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
25
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "parent" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
26
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
27
|
+
[1m[35m (65.2ms)[0m commit transaction
|
28
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
29
|
+
[1m[36m (96.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
30
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
31
|
+
[1m[36m (99.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
32
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
33
|
+
Migrating to CreateTheAnswers (20150127220502)
|
34
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
35
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
36
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
37
|
+
[1m[35m (106.6ms)[0m commit transaction
|
38
|
+
Migrating to Parent (20150131153819)
|
39
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
40
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "parent" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
41
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
42
|
+
[1m[35m (64.3ms)[0m commit transaction
|
43
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
44
|
+
[1m[36m (93.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
45
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
46
|
+
[1m[36m (99.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
47
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
48
|
+
Migrating to CreateTheAnswers (20150127220502)
|
49
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
51
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
52
|
+
[1m[35m (106.6ms)[0m commit transaction
|
53
|
+
Migrating to CreateParents (20150131153819)
|
54
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "parent" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
56
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
57
|
+
[1m[35m (65.2ms)[0m commit transaction
|
58
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
59
|
+
[1m[36m (90.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
60
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
61
|
+
[1m[36m (111.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
62
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
63
|
+
Migrating to CreateTheAnswers (20150127220502)
|
64
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
65
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
66
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
67
|
+
[1m[35m (106.0ms)[0m commit transaction
|
68
|
+
Migrating to CreateParents (20150131153819)
|
69
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
70
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
71
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
72
|
+
[1m[35m (65.2ms)[0m commit transaction
|
73
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
74
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
75
|
+
Migrating to CreateBooleanModels (20150131161322)
|
76
|
+
[1m[35m (0.0ms)[0m begin transaction
|
77
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
78
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131161322"]]
|
79
|
+
[1m[36m (43.4ms)[0m [1mcommit transaction[0m
|
80
|
+
Migrating to CreateNumericModels (20150131162551)
|
81
|
+
[1m[35m (0.0ms)[0m begin transaction
|
82
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime) [0m
|
83
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131162551"]]
|
84
|
+
[1m[36m (26.3ms)[0m [1mcommit transaction[0m
|
85
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
86
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
87
|
+
Migrating to CreateLexicons (20150131164609)
|
88
|
+
[1m[35m (0.0ms)[0m begin transaction
|
89
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "answers_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
90
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
91
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_lexicons_on_answers_id" ON "lexicons" ("answers_id")[0m
|
92
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
|
93
|
+
[1m[36m (44.0ms)[0m [1mcommit transaction[0m
|
94
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
95
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
103
|
+
[1m[36m (94.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
104
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
105
|
+
[1m[36m (120.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
106
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
107
|
+
Migrating to CreateTheAnswers (20150127220502)
|
108
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
109
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
110
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
111
|
+
[1m[35m (106.5ms)[0m commit transaction
|
112
|
+
Migrating to CreateParents (20150131153819)
|
113
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
114
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
115
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
116
|
+
[1m[35m (64.0ms)[0m commit transaction
|
117
|
+
Migrating to CreateBooleanModels (20150131161322)
|
118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
119
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
|
120
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131161322"]]
|
121
|
+
[1m[35m (269.3ms)[0m commit transaction
|
122
|
+
Migrating to CreateNumericModels (20150131162551)
|
123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
124
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
|
125
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131162551"]]
|
126
|
+
[1m[35m (73.4ms)[0m commit transaction
|
127
|
+
Migrating to CreateLexicons (20150131164609)
|
128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
129
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "answer_id" integer, "created_at" datetime, "updated_at" datetime)
|
130
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_lexicons_on_answer_id" ON "lexicons" ("answer_id")[0m
|
131
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
|
132
|
+
[1m[36m (73.9ms)[0m [1mcommit transaction[0m
|
133
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
134
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
142
|
+
[1m[36m (103.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
143
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
144
|
+
[1m[36m (110.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
145
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
146
|
+
Migrating to CreateTheAnswers (20150127220502)
|
147
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
148
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
149
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
150
|
+
[1m[35m (117.4ms)[0m commit transaction
|
151
|
+
Migrating to CreateParents (20150131153819)
|
152
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
153
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
154
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
155
|
+
[1m[35m (66.6ms)[0m commit transaction
|
156
|
+
Migrating to CreateBooleanModels (20150131161322)
|
157
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
158
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
|
159
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131161322"]]
|
160
|
+
[1m[35m (283.4ms)[0m commit transaction
|
161
|
+
Migrating to CreateNumericModels (20150131162551)
|
162
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
163
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
|
164
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131162551"]]
|
165
|
+
[1m[35m (88.9ms)[0m commit transaction
|
166
|
+
Migrating to CreateLexicons (20150131164609)
|
167
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
168
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
|
169
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")[0m
|
170
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
|
171
|
+
[1m[36m (85.4ms)[0m [1mcommit transaction[0m
|
172
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
173
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
181
|
+
[1m[36m (91.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
182
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
183
|
+
[1m[36m (120.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
184
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
185
|
+
Migrating to CreateTheAnswers (20150127220502)
|
186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
187
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
188
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
189
|
+
[1m[35m (101.1ms)[0m commit transaction
|
190
|
+
Migrating to CreateParents (20150131153819)
|
191
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
192
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
193
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
194
|
+
[1m[35m (65.4ms)[0m commit transaction
|
195
|
+
Migrating to CreateBooleanModels (20150131161322)
|
196
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
197
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
|
198
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131161322"]]
|
199
|
+
[1m[35m (232.0ms)[0m commit transaction
|
200
|
+
Migrating to CreateNumericModels (20150131162551)
|
201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
202
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
|
203
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131162551"]]
|
204
|
+
[1m[35m (85.5ms)[0m commit transaction
|
205
|
+
Migrating to CreateLexicons (20150131164609)
|
206
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
207
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
|
208
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")[0m
|
209
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
|
210
|
+
[1m[36m (87.0ms)[0m [1mcommit transaction[0m
|
211
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
212
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
220
|
+
[1m[36m (78.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
221
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
222
|
+
[1m[36m (87.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
223
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
224
|
+
Migrating to CreateTheAnswers (20150127220502)
|
225
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
226
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
227
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
228
|
+
[1m[35m (125.7ms)[0m commit transaction
|
229
|
+
Migrating to CreateParents (20150131153819)
|
230
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
231
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
232
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
233
|
+
[1m[35m (98.6ms)[0m commit transaction
|
234
|
+
Migrating to CreateBooleanModels (20150131161322)
|
235
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
236
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
|
237
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131161322"]]
|
238
|
+
[1m[35m (336.3ms)[0m commit transaction
|
239
|
+
Migrating to CreateNumericModels (20150131162551)
|
240
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
241
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
|
242
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131162551"]]
|
243
|
+
[1m[35m (152.8ms)[0m commit transaction
|
244
|
+
Migrating to CreateLexicons (20150131164609)
|
245
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
246
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
|
247
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")[0m
|
248
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
|
249
|
+
[1m[36m (115.1ms)[0m [1mcommit transaction[0m
|
250
|
+
Migrating to CreateEnumModels (20150131170613)
|
251
|
+
[1m[35m (0.0ms)[0m begin transaction
|
252
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime, "updated_at" datetime) [0m
|
253
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131170613"]]
|
254
|
+
[1m[36m (65.4ms)[0m [1mcommit transaction[0m
|
255
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
256
|
+
[1m[36m (0.3ms)[0m [1m 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
|
+
[0m
|
264
|
+
[1m[36m (97.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
265
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
266
|
+
[1m[36m (119.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
267
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
268
|
+
Migrating to CreateTheAnswers (20150127220502)
|
269
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
270
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "the_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ultimate_truth" varchar(255), "created_at" datetime, "updated_at" datetime)
|
271
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150127220502"]]
|
272
|
+
[1m[35m (106.2ms)[0m commit transaction
|
273
|
+
Migrating to CreateParents (20150131153819)
|
274
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
275
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "field" varchar(255), "created_at" datetime, "updated_at" datetime)
|
276
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131153819"]]
|
277
|
+
[1m[35m (66.0ms)[0m commit transaction
|
278
|
+
Migrating to CreateBooleanModels (20150131161322)
|
279
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "boolean_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "boolean_field" boolean, "created_at" datetime, "updated_at" datetime)
|
281
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131161322"]]
|
282
|
+
[1m[35m (249.9ms)[0m commit transaction
|
283
|
+
Migrating to CreateNumericModels (20150131162551)
|
284
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
285
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "numeric_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "integer_field" integer, "decimal_field" decimal, "created_at" datetime, "updated_at" datetime)
|
286
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150131162551"]]
|
287
|
+
[1m[35m (89.1ms)[0m commit transaction
|
288
|
+
Migrating to CreateLexicons (20150131164609)
|
289
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
290
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "lexicons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "the_answer_id" integer, "created_at" datetime, "updated_at" datetime)
|
291
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "index_lexicons_on_the_answer_id" ON "lexicons" ("the_answer_id")[0m
|
292
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131164609"]]
|
293
|
+
[1m[36m (74.7ms)[0m [1mcommit transaction[0m
|
294
|
+
Migrating to CreateEnumModels (20150131170613)
|
295
|
+
[1m[35m (0.3ms)[0m begin transaction
|
296
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "enum_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer, "created_at" datetime, "updated_at" datetime) [0m
|
297
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150131170613"]]
|
298
|
+
[1m[36m (106.3ms)[0m [1mcommit transaction[0m
|
299
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
300
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|