we_bridge_rails_engine_users 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bbbc359cde49b54ef02ec739ca2d82ee2214fac2
4
- data.tar.gz: e76d0fb5123c24ae69247bfb609c9b558d73f767
3
+ metadata.gz: d78155c5916a5019f027d5dc983a29076f7a8841
4
+ data.tar.gz: b9a71f2f7ccf739e968abfe7b886bfa212d050fb
5
5
  SHA512:
6
- metadata.gz: 9ce99e8ba5c95612c0228b8ffb2756534660dfb27bdbb23eeb31b35a690695d608476d19a5ecceb7f03533b226a0a63e71cff44bc8b62760a12d83d6a5d8a7b7
7
- data.tar.gz: 77f5d7db81dfab972eb0522eed5aeda0acf19b9222e7f41c5d3670fbf7c0e958833aed302fe8ff783483525f04ea0a31859659b71116b71ea7d21837d6c3b1fb
6
+ metadata.gz: f725bde05ca1f5fb2f5ae0e8b8ccb7daadcc24e034d767ff2cc47d2a4b728e3ec49e9910cccdb0542dbd0ab4f2e62a262e2cd9fb80563616faf37ef85fb09f78
7
+ data.tar.gz: 222eab5327d60863d60fdbc26949dd8d94ceff6e0423f96b66e7097d588bbabbd78eabbfe3f8115064059d8ea25169c4e62f34d871ab6c39a8094ebd10d9fb79
data/db/seeds.rb ADDED
@@ -0,0 +1 @@
1
+
@@ -9,5 +9,16 @@ module WeBridgeRailsEngineUsers
9
9
  g.stylesheets true
10
10
  g.javascripts true
11
11
  end
12
+
13
+ initializer :append_migrations_and_seeds do |app|
14
+ unless app.root.to_s.match root.to_s
15
+ config.paths["db/migrate"].expanded.each do |expanded_path|
16
+ app.config.paths["db/migrate"] << expanded_path
17
+ end
18
+ config.paths["db/seeds.rb"].existent.each do |expanded_path|
19
+ app.config.paths["db/seeds.rb"] << expanded_path
20
+ end
21
+ end
22
+ end
12
23
  end
13
24
  end
@@ -1,3 +1,3 @@
1
1
  module WeBridgeRailsEngineUsers
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
Binary file
Binary file
@@ -6132,3 +6132,1861 @@ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd81
6132
6132
 
6133
6133
 
6134
6134
  Started GET "/assets/application.self-1da6d28687370077cd6ba59def469f872870ada4ce65335c79d77914791d0983.js?body=1" for ::1 at 2015-08-12 09:52:23 +0900
6135
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6136
+  (0.1ms) select sqlite_version(*)
6137
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6138
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6139
+ Migrating to AddSessionsTable (20150611132719)
6140
+  (0.1ms) begin transaction
6141
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/shinjiro/git/we_bridge_rails_engine_users/db/migrate/20150611132719_add_sessions_table.rb:6)
6142
+  (0.7ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar NOT NULL, "data" text, "created_at" datetime, "updated_at" datetime)
6143
+  (3.4ms) CREATE UNIQUE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")
6144
+  (0.2ms) SELECT sql
6145
+ FROM sqlite_master
6146
+ WHERE name='index_sessions_on_session_id' AND type='index'
6147
+ UNION ALL
6148
+ SELECT sql
6149
+ FROM sqlite_temp_master
6150
+ WHERE name='index_sessions_on_session_id' AND type='index'
6151
+
6152
+  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")
6153
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150611132719"]]
6154
+  (1.4ms) commit transaction
6155
+ Migrating to CreatePeople (20150612005752)
6156
+  (0.1ms) begin transaction
6157
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/shinjiro/git/we_bridge_rails_engine_users/db/migrate/20150612005752_create_people.rb:11)
6158
+  (0.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "sex" integer DEFAULT 1 NOT NULL, "birth_year" integer DEFAULT 0 NOT NULL, "birth_month" integer DEFAULT 0 NOT NULL, "birth_day" integer DEFAULT 0 NOT NULL, "blood_type" varchar, "created_by" integer NOT NULL, "updated_by" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
6159
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/shinjiro/git/we_bridge_rails_engine_users/db/migrate/20150612005752_create_people.rb:19)
6160
+  (0.2ms) CREATE TABLE "person_texts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer NOT NULL, "lang_id" integer NOT NULL, "created_by" integer NOT NULL, "updated_by" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
6161
+  (0.5ms) CREATE UNIQUE INDEX "index_person_texts_on_parent_id_and_lang_id" ON "person_texts" ("parent_id", "lang_id")
6162
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/shinjiro/git/we_bridge_rails_engine_users/db/migrate/20150612005752_create_people.rb:27)
6163
+  (0.2ms) CREATE TABLE "person_names" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "revision" integer DEFAULT 0 NOT NULL, "modified_on" date NOT NULL, "created_at" datetime, "updated_at" datetime)
6164
+  (0.2ms) CREATE UNIQUE INDEX "index_person_names_on_person_id_and_revision" ON "person_names" ("person_id", "revision")
6165
+  (0.2ms) CREATE TABLE "person_name_texts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer NOT NULL, "lang_id" integer NOT NULL, "first_name" varchar, "first_name_pron" varchar, "last_name" varchar, "last_name_pron" varchar)
6166
+  (0.5ms) CREATE UNIQUE INDEX "idx_person_name_texts" ON "person_name_texts" ("parent_id", "lang_id")
6167
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150612005752"]]
6168
+  (1.0ms) commit transaction
6169
+ Migrating to AddUsers (20150712132226)
6170
+  (0.1ms) begin transaction
6171
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/shinjiro/git/we_bridge_rails_engine_users/db/migrate/20150712132226_add_users.rb:9)
6172
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "email" varchar, "user_img_url" varchar, "lang_id" integer NOT NULL, "deleted_at" datetime, "created_at" datetime, "updated_at" datetime) 
6173
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/shinjiro/git/we_bridge_rails_engine_users/db/migrate/20150712132226_add_users.rb:18)
6174
+  (0.2ms) CREATE TABLE "user_texts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer NOT NULL, "lang_id" integer NOT NULL, "nick_name" varchar, "nick_name_pron" varchar, "deleted_at" datetime, "created_at" datetime, "updated_at" datetime)
6175
+  (0.5ms) CREATE UNIQUE INDEX "index_user_texts_on_lang_id_and_parent_id" ON "user_texts" ("lang_id", "parent_id")
6176
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/shinjiro/git/we_bridge_rails_engine_users/db/migrate/20150712132226_add_users.rb:37)
6177
+  (0.3ms) CREATE TABLE "user_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "provider" varchar NOT NULL, "uid" varchar NOT NULL, "token" varchar, "name" varchar, "nickname" varchar, "email" varchar, "url" varchar, "image_url" varchar, "description" varchar, "other" text, "credentials" text, "raw_info" text, "deleted_at" datetime, "created_at" datetime, "updated_at" datetime)
6178
+  (0.4ms) CREATE UNIQUE INDEX "index_user_accounts_on_uid" ON "user_accounts" ("uid")
6179
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150712132226"]]
6180
+  (0.9ms) commit transaction
6181
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6182
+  (0.1ms)  SELECT sql
6183
+ FROM sqlite_master
6184
+ WHERE name='idx_person_name_texts' AND type='index'
6185
+ UNION ALL
6186
+ SELECT sql
6187
+ FROM sqlite_temp_master
6188
+ WHERE name='idx_person_name_texts' AND type='index'
6189
+ 
6190
+  (0.1ms) SELECT sql
6191
+ FROM sqlite_master
6192
+ WHERE name='index_person_names_on_person_id_and_revision' AND type='index'
6193
+ UNION ALL
6194
+ SELECT sql
6195
+ FROM sqlite_temp_master
6196
+ WHERE name='index_person_names_on_person_id_and_revision' AND type='index'
6197
+
6198
+  (0.1ms)  SELECT sql
6199
+ FROM sqlite_master
6200
+ WHERE name='index_person_texts_on_parent_id_and_lang_id' AND type='index'
6201
+ UNION ALL
6202
+ SELECT sql
6203
+ FROM sqlite_temp_master
6204
+ WHERE name='index_person_texts_on_parent_id_and_lang_id' AND type='index'
6205
+ 
6206
+  (0.1ms) SELECT sql
6207
+ FROM sqlite_master
6208
+ WHERE name='index_sessions_on_updated_at' AND type='index'
6209
+ UNION ALL
6210
+ SELECT sql
6211
+ FROM sqlite_temp_master
6212
+ WHERE name='index_sessions_on_updated_at' AND type='index'
6213
+
6214
+  (0.1ms)  SELECT sql
6215
+ FROM sqlite_master
6216
+ WHERE name='index_sessions_on_session_id' AND type='index'
6217
+ UNION ALL
6218
+ SELECT sql
6219
+ FROM sqlite_temp_master
6220
+ WHERE name='index_sessions_on_session_id' AND type='index'
6221
+ 
6222
+  (0.1ms) SELECT sql
6223
+ FROM sqlite_master
6224
+ WHERE name='index_user_accounts_on_uid' AND type='index'
6225
+ UNION ALL
6226
+ SELECT sql
6227
+ FROM sqlite_temp_master
6228
+ WHERE name='index_user_accounts_on_uid' AND type='index'
6229
+
6230
+  (0.1ms)  SELECT sql
6231
+ FROM sqlite_master
6232
+ WHERE name='index_user_texts_on_lang_id_and_parent_id' AND type='index'
6233
+ UNION ALL
6234
+ SELECT sql
6235
+ FROM sqlite_temp_master
6236
+ WHERE name='index_user_texts_on_lang_id_and_parent_id' AND type='index'
6237
+ 
6238
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6239
+ Migrating to CreateLangs (20150803101150)
6240
+  (0.1ms) begin transaction
6241
+  (0.6ms) CREATE TABLE "langs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "code" varchar(5) NOT NULL, "east" boolean DEFAULT 'f' NOT NULL, "position" integer DEFAULT 1 NOT NULL, "enable" boolean DEFAULT 't' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
6242
+  (0.1ms) select sqlite_version(*)
6243
+  (0.4ms) CREATE UNIQUE INDEX "index_langs_on_code" ON "langs" ("code")
6244
+  (0.3ms) CREATE TABLE "lang_texts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer NOT NULL, "lang_id" integer NOT NULL, "label" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6245
+  (0.2ms) CREATE UNIQUE INDEX "index_lang_texts_on_parent_id_and_lang_id" ON "lang_texts" ("parent_id", "lang_id")
6246
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150803101150"]]
6247
+  (1.2ms) commit transaction
6248
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
6249
+  (0.2ms)  SELECT sql
6250
+ FROM sqlite_master
6251
+ WHERE name='index_lang_texts_on_parent_id_and_lang_id' AND type='index'
6252
+ UNION ALL
6253
+ SELECT sql
6254
+ FROM sqlite_temp_master
6255
+ WHERE name='index_lang_texts_on_parent_id_and_lang_id' AND type='index'
6256
+ 
6257
+  (0.2ms) SELECT sql
6258
+ FROM sqlite_master
6259
+ WHERE name='index_langs_on_code' AND type='index'
6260
+ UNION ALL
6261
+ SELECT sql
6262
+ FROM sqlite_temp_master
6263
+ WHERE name='index_langs_on_code' AND type='index'
6264
+
6265
+  (0.2ms)  SELECT sql
6266
+ FROM sqlite_master
6267
+ WHERE name='idx_person_name_texts' AND type='index'
6268
+ UNION ALL
6269
+ SELECT sql
6270
+ FROM sqlite_temp_master
6271
+ WHERE name='idx_person_name_texts' AND type='index'
6272
+ 
6273
+  (0.2ms) SELECT sql
6274
+ FROM sqlite_master
6275
+ WHERE name='index_person_names_on_person_id_and_revision' AND type='index'
6276
+ UNION ALL
6277
+ SELECT sql
6278
+ FROM sqlite_temp_master
6279
+ WHERE name='index_person_names_on_person_id_and_revision' AND type='index'
6280
+
6281
+  (0.3ms)  SELECT sql
6282
+ FROM sqlite_master
6283
+ WHERE name='index_person_texts_on_parent_id_and_lang_id' AND type='index'
6284
+ UNION ALL
6285
+ SELECT sql
6286
+ FROM sqlite_temp_master
6287
+ WHERE name='index_person_texts_on_parent_id_and_lang_id' AND type='index'
6288
+ 
6289
+  (0.2ms) SELECT sql
6290
+ FROM sqlite_master
6291
+ WHERE name='index_sessions_on_updated_at' AND type='index'
6292
+ UNION ALL
6293
+ SELECT sql
6294
+ FROM sqlite_temp_master
6295
+ WHERE name='index_sessions_on_updated_at' AND type='index'
6296
+
6297
+  (0.1ms)  SELECT sql
6298
+ FROM sqlite_master
6299
+ WHERE name='index_sessions_on_session_id' AND type='index'
6300
+ UNION ALL
6301
+ SELECT sql
6302
+ FROM sqlite_temp_master
6303
+ WHERE name='index_sessions_on_session_id' AND type='index'
6304
+ 
6305
+  (0.1ms) SELECT sql
6306
+ FROM sqlite_master
6307
+ WHERE name='index_user_accounts_on_uid' AND type='index'
6308
+ UNION ALL
6309
+ SELECT sql
6310
+ FROM sqlite_temp_master
6311
+ WHERE name='index_user_accounts_on_uid' AND type='index'
6312
+
6313
+  (0.1ms)  SELECT sql
6314
+ FROM sqlite_master
6315
+ WHERE name='index_user_texts_on_lang_id_and_parent_id' AND type='index'
6316
+ UNION ALL
6317
+ SELECT sql
6318
+ FROM sqlite_temp_master
6319
+ WHERE name='index_user_texts_on_lang_id_and_parent_id' AND type='index'
6320
+ 
6321
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
6322
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
6323
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6324
+  (0.1ms) begin transaction
6325
+ SQL (1.6ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "ja"], ["created_at", "2015-08-14 07:06:20.084307"], ["updated_at", "2015-08-14 07:06:20.084307"]]
6326
+  (1.1ms) commit transaction
6327
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6328
+  (0.1ms) begin transaction
6329
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "en"], ["created_at", "2015-08-14 07:06:20.094106"], ["updated_at", "2015-08-14 07:06:20.094106"]]
6330
+  (1.1ms) commit transaction
6331
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6332
+  (0.1ms) begin transaction
6333
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "de"], ["created_at", "2015-08-14 07:06:20.098341"], ["updated_at", "2015-08-14 07:06:20.098341"]]
6334
+  (1.2ms) commit transaction
6335
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6336
+  (0.1ms) begin transaction
6337
+ SQL (0.4ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "fa"], ["created_at", "2015-08-14 07:06:20.102596"], ["updated_at", "2015-08-14 07:06:20.102596"]]
6338
+  (0.9ms) commit transaction
6339
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6340
+  (0.1ms) begin transaction
6341
+ SQL (0.2ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "es"], ["created_at", "2015-08-14 07:06:20.106362"], ["updated_at", "2015-08-14 07:06:20.106362"]]
6342
+  (0.8ms) commit transaction
6343
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
6344
+ Lang Load (0.8ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6345
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6346
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6347
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6348
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6349
+  (0.2ms) SELECT COUNT(*) FROM "langs"
6350
+ Lang Load (8.0ms) SELECT "langs".* FROM "langs"
6351
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
6352
+ Lang Load (0.8ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6353
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6354
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6355
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6356
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6357
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6358
+ ActiveRecord::Mlang::LangText Load (0.8ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 1], ["lang_id", 1]]
6359
+  (0.1ms) begin transaction
6360
+ SQL (4.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 1], ["parent_id", 1], ["created_at", "2015-08-14 07:36:12.547510"], ["updated_at", "2015-08-14 07:36:12.547510"]]
6361
+  (13.3ms) commit transaction
6362
+  (0.1ms) begin transaction
6363
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "日本語"], ["updated_at", "2015-08-14 07:36:12.567908"], ["id", 1]]
6364
+  (1.3ms) commit transaction
6365
+ ActiveRecord::Mlang::Lang Load (0.5ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6366
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 1], ["lang_id", 2]]
6367
+  (0.2ms) begin transaction
6368
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 2], ["parent_id", 1], ["created_at", "2015-08-14 07:36:12.587808"], ["updated_at", "2015-08-14 07:36:12.587808"]]
6369
+  (1.0ms) commit transaction
6370
+  (0.1ms) begin transaction
6371
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanese"], ["updated_at", "2015-08-14 07:36:12.592144"], ["id", 2]]
6372
+  (0.8ms) commit transaction
6373
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6374
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 2], ["lang_id", 1]]
6375
+  (0.1ms) begin transaction
6376
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 1], ["parent_id", 2], ["created_at", "2015-08-14 07:36:12.596899"], ["updated_at", "2015-08-14 07:36:12.596899"]]
6377
+  (0.9ms) commit transaction
6378
+  (0.1ms) begin transaction
6379
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "英語"], ["updated_at", "2015-08-14 07:36:12.599714"], ["id", 3]]
6380
+  (1.1ms) commit transaction
6381
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6382
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 2], ["lang_id", 2]]
6383
+  (0.1ms) begin transaction
6384
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 2], ["parent_id", 2], ["created_at", "2015-08-14 07:36:12.604938"], ["updated_at", "2015-08-14 07:36:12.604938"]]
6385
+  (1.1ms) commit transaction
6386
+  (0.1ms) begin transaction
6387
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "English"], ["updated_at", "2015-08-14 07:36:12.608483"], ["id", 4]]
6388
+  (1.0ms) commit transaction
6389
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" ASC LIMIT 1
6390
+ Lang Load (0.5ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" ASC LIMIT 1
6391
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 1]]
6392
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs"
6393
+  (0.1ms) begin transaction
6394
+ SQL (2.3ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 1]]
6395
+  (1.0ms) commit transaction
6396
+  (0.1ms) begin transaction
6397
+ SQL (0.3ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 2]]
6398
+  (1.1ms) commit transaction
6399
+  (0.1ms) begin transaction
6400
+ SQL (0.3ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 3]]
6401
+  (0.7ms) commit transaction
6402
+  (0.1ms) begin transaction
6403
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 4]]
6404
+  (0.9ms) commit transaction
6405
+  (0.1ms) begin transaction
6406
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 5]]
6407
+  (1.0ms) commit transaction
6408
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
6409
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
6410
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6411
+  (0.1ms) begin transaction
6412
+ SQL (0.5ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "en"], ["created_at", "2015-08-14 07:51:31.116047"], ["updated_at", "2015-08-14 07:51:31.116047"]]
6413
+  (1.0ms) commit transaction
6414
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6415
+  (0.1ms) begin transaction
6416
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "ja"], ["created_at", "2015-08-14 07:51:31.125670"], ["updated_at", "2015-08-14 07:51:31.125670"]]
6417
+  (1.0ms) commit transaction
6418
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6419
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6420
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 6], ["lang_id", 7]]
6421
+  (0.1ms) begin transaction
6422
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 7], ["parent_id", 6], ["created_at", "2015-08-14 07:51:31.161419"], ["updated_at", "2015-08-14 07:51:31.161419"]]
6423
+  (1.1ms) commit transaction
6424
+  (0.1ms) begin transaction
6425
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "英語"], ["updated_at", "2015-08-14 07:51:31.164435"], ["id", 5]]
6426
+  (1.0ms) commit transaction
6427
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6428
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 6], ["lang_id", 6]]
6429
+  (0.1ms) begin transaction
6430
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 6], ["parent_id", 6], ["created_at", "2015-08-14 07:51:31.170546"], ["updated_at", "2015-08-14 07:51:31.170546"]]
6431
+  (1.0ms) commit transaction
6432
+  (0.1ms) begin transaction
6433
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "English"], ["updated_at", "2015-08-14 07:51:31.173626"], ["id", 6]]
6434
+  (0.8ms) commit transaction
6435
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6436
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6437
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 7], ["lang_id", 7]]
6438
+  (0.1ms) begin transaction
6439
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 7], ["parent_id", 7], ["created_at", "2015-08-14 07:51:31.179078"], ["updated_at", "2015-08-14 07:51:31.179078"]]
6440
+  (0.8ms) commit transaction
6441
+  (0.1ms) begin transaction
6442
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "日本語"], ["updated_at", "2015-08-14 07:51:31.181686"], ["id", 7]]
6443
+  (0.8ms) commit transaction
6444
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6445
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 7], ["lang_id", 6]]
6446
+  (0.0ms) begin transaction
6447
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 6], ["parent_id", 7], ["created_at", "2015-08-14 07:51:31.185472"], ["updated_at", "2015-08-14 07:51:31.185472"]]
6448
+  (0.8ms) commit transaction
6449
+  (0.1ms) begin transaction
6450
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanese"], ["updated_at", "2015-08-14 07:51:31.187846"], ["id", 8]]
6451
+  (0.8ms) commit transaction
6452
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" ASC LIMIT 1
6453
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs"
6454
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs"
6455
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6456
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6457
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6458
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6459
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6460
+ ActiveRecord::Mlang::LangText Load (0.3ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 6], ["lang_id", 7]]
6461
+  (0.1ms) begin transaction
6462
+  (0.1ms) commit transaction
6463
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6464
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 6], ["lang_id", 6]]
6465
+  (0.1ms) begin transaction
6466
+  (0.1ms) commit transaction
6467
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6468
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6469
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 7], ["lang_id", 7]]
6470
+  (0.1ms) begin transaction
6471
+  (0.0ms) commit transaction
6472
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6473
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 7], ["lang_id", 6]]
6474
+  (0.0ms) begin transaction
6475
+  (0.0ms) commit transaction
6476
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" ASC LIMIT 1
6477
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs"
6478
+  (0.3ms) SELECT COUNT(*) FROM "langs"
6479
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs"
6480
+  (0.1ms) begin transaction
6481
+ SQL (1.9ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 6]]
6482
+  (8.8ms) commit transaction
6483
+  (0.1ms) begin transaction
6484
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 7]]
6485
+  (0.8ms) commit transaction
6486
+  (0.3ms) SELECT COUNT(*) FROM "langs"
6487
+ ActiveRecord::SchemaMigration Load (10.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
6488
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6489
+  (0.1ms) begin transaction
6490
+ SQL (0.4ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "en"], ["created_at", "2015-08-14 07:53:27.064581"], ["updated_at", "2015-08-14 07:53:27.064581"]]
6491
+  (0.8ms) commit transaction
6492
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6493
+  (0.0ms) begin transaction
6494
+ SQL (0.2ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "ja"], ["created_at", "2015-08-14 07:53:27.071065"], ["updated_at", "2015-08-14 07:53:27.071065"]]
6495
+  (0.7ms) commit transaction
6496
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6497
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6498
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 8], ["lang_id", 9]]
6499
+  (0.1ms) begin transaction
6500
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 9], ["parent_id", 8], ["created_at", "2015-08-14 07:53:27.100480"], ["updated_at", "2015-08-14 07:53:27.100480"]]
6501
+  (1.2ms) commit transaction
6502
+  (0.1ms) begin transaction
6503
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "英語"], ["updated_at", "2015-08-14 07:53:27.103852"], ["id", 9]]
6504
+  (1.1ms) commit transaction
6505
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6506
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 8], ["lang_id", 8]]
6507
+  (0.1ms) begin transaction
6508
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 8], ["parent_id", 8], ["created_at", "2015-08-14 07:53:27.109680"], ["updated_at", "2015-08-14 07:53:27.109680"]]
6509
+  (1.0ms) commit transaction
6510
+  (0.1ms) begin transaction
6511
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "English"], ["updated_at", "2015-08-14 07:53:27.113083"], ["id", 10]]
6512
+  (0.9ms) commit transaction
6513
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6514
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6515
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 9], ["lang_id", 9]]
6516
+  (0.1ms) begin transaction
6517
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 9], ["parent_id", 9], ["created_at", "2015-08-14 07:53:27.119064"], ["updated_at", "2015-08-14 07:53:27.119064"]]
6518
+  (1.0ms) commit transaction
6519
+  (0.1ms) begin transaction
6520
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "日本語"], ["updated_at", "2015-08-14 07:53:27.122071"], ["id", 11]]
6521
+  (1.1ms) commit transaction
6522
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6523
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 9], ["lang_id", 8]]
6524
+  (0.1ms) begin transaction
6525
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 8], ["parent_id", 9], ["created_at", "2015-08-14 07:53:27.127475"], ["updated_at", "2015-08-14 07:53:27.127475"]]
6526
+  (1.0ms) commit transaction
6527
+  (0.1ms) begin transaction
6528
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanese"], ["updated_at", "2015-08-14 07:53:27.130993"], ["id", 12]]
6529
+  (1.0ms) commit transaction
6530
+  (0.3ms) SELECT COUNT(*) FROM "langs"
6531
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
6532
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6533
+  (0.1ms) begin transaction
6534
+ SQL (0.5ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "de"], ["created_at", "2015-08-14 08:44:50.292424"], ["updated_at", "2015-08-14 08:44:50.292424"]]
6535
+  (0.8ms) commit transaction
6536
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6537
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6538
+  (0.1ms) begin transaction
6539
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "es"], ["created_at", "2015-08-14 08:44:50.300398"], ["updated_at", "2015-08-14 08:44:50.300398"]]
6540
+  (0.7ms) commit transaction
6541
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6542
+  (0.0ms) begin transaction
6543
+ SQL (0.2ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "fa"], ["created_at", "2015-08-14 08:44:50.303788"], ["updated_at", "2015-08-14 08:44:50.303788"]]
6544
+  (0.7ms) commit transaction
6545
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6546
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
6547
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6548
+ ActiveRecord::Mlang::LangText Load (0.3ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 8], ["lang_id", 10]]
6549
+  (0.1ms) begin transaction
6550
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 10], ["parent_id", 8], ["created_at", "2015-08-14 08:44:50.340169"], ["updated_at", "2015-08-14 08:44:50.340169"]]
6551
+  (0.8ms) commit transaction
6552
+  (0.0ms) begin transaction
6553
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "German"], ["updated_at", "2015-08-14 08:44:50.342740"], ["id", 13]]
6554
+  (0.7ms) commit transaction
6555
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6556
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 8], ["lang_id", 8]]
6557
+  (0.1ms) begin transaction
6558
+  (0.1ms) commit transaction
6559
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6560
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 8], ["lang_id", 11]]
6561
+  (0.0ms) begin transaction
6562
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 11], ["parent_id", 8], ["created_at", "2015-08-14 08:44:50.349601"], ["updated_at", "2015-08-14 08:44:50.349601"]]
6563
+  (0.8ms) commit transaction
6564
+  (0.0ms) begin transaction
6565
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanish"], ["updated_at", "2015-08-14 08:44:50.351914"], ["id", 14]]
6566
+  (0.6ms) commit transaction
6567
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6568
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 8], ["lang_id", 12]]
6569
+  (0.0ms) begin transaction
6570
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 12], ["parent_id", 8], ["created_at", "2015-08-14 08:44:50.355749"], ["updated_at", "2015-08-14 08:44:50.355749"]]
6571
+  (0.7ms) commit transaction
6572
+  (0.0ms) begin transaction
6573
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persian"], ["updated_at", "2015-08-14 08:44:50.358068"], ["id", 15]]
6574
+  (0.7ms) commit transaction
6575
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6576
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 8], ["lang_id", 9]]
6577
+  (0.0ms) begin transaction
6578
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanese"], ["updated_at", "2015-08-14 08:44:50.361760"], ["id", 9]]
6579
+  (0.6ms) commit transaction
6580
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6581
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 9], ["lang_id", 10]]
6582
+  (0.1ms) begin transaction
6583
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 10], ["parent_id", 9], ["created_at", "2015-08-14 08:44:50.366324"], ["updated_at", "2015-08-14 08:44:50.366324"]]
6584
+  (0.7ms) commit transaction
6585
+  (0.1ms) begin transaction
6586
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ドイツ語"], ["updated_at", "2015-08-14 08:44:50.368677"], ["id", 16]]
6587
+  (0.7ms) commit transaction
6588
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6589
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 9], ["lang_id", 8]]
6590
+  (0.1ms) begin transaction
6591
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "英語"], ["updated_at", "2015-08-14 08:44:50.372804"], ["id", 12]]
6592
+  (0.7ms) commit transaction
6593
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6594
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 9], ["lang_id", 11]]
6595
+  (0.1ms) begin transaction
6596
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 11], ["parent_id", 9], ["created_at", "2015-08-14 08:44:50.377413"], ["updated_at", "2015-08-14 08:44:50.377413"]]
6597
+  (3.4ms) commit transaction
6598
+  (0.1ms) begin transaction
6599
+ SQL (1.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "スペイン語"], ["updated_at", "2015-08-14 08:44:50.396223"], ["id", 17]]
6600
+  (2.3ms) commit transaction
6601
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6602
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 9], ["lang_id", 12]]
6603
+  (0.1ms) begin transaction
6604
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 12], ["parent_id", 9], ["created_at", "2015-08-14 08:44:50.406755"], ["updated_at", "2015-08-14 08:44:50.406755"]]
6605
+  (12.3ms) commit transaction
6606
+  (0.1ms) begin transaction
6607
+ SQL (0.8ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ペルシア語"], ["updated_at", "2015-08-14 08:44:50.421917"], ["id", 18]]
6608
+  (1.8ms) commit transaction
6609
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6610
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 9], ["lang_id", 9]]
6611
+  (0.1ms) begin transaction
6612
+  (0.1ms) commit transaction
6613
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6614
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 10], ["lang_id", 10]]
6615
+  (0.1ms) begin transaction
6616
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 10], ["parent_id", 10], ["created_at", "2015-08-14 08:44:50.435410"], ["updated_at", "2015-08-14 08:44:50.435410"]]
6617
+  (0.8ms) commit transaction
6618
+  (0.1ms) begin transaction
6619
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Deutsch"], ["updated_at", "2015-08-14 08:44:50.438388"], ["id", 19]]
6620
+  (0.7ms) commit transaction
6621
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6622
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 10], ["lang_id", 8]]
6623
+  (0.0ms) begin transaction
6624
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 8], ["parent_id", 10], ["created_at", "2015-08-14 08:44:50.442139"], ["updated_at", "2015-08-14 08:44:50.442139"]]
6625
+  (0.7ms) commit transaction
6626
+  (0.1ms) begin transaction
6627
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Englisch"], ["updated_at", "2015-08-14 08:44:50.444554"], ["id", 20]]
6628
+  (0.9ms) commit transaction
6629
+ ActiveRecord::Mlang::Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6630
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 10], ["lang_id", 11]]
6631
+  (0.1ms) begin transaction
6632
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 11], ["parent_id", 10], ["created_at", "2015-08-14 08:44:50.453607"], ["updated_at", "2015-08-14 08:44:50.453607"]]
6633
+  (0.9ms) commit transaction
6634
+  (0.1ms) begin transaction
6635
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanisch"], ["updated_at", "2015-08-14 08:44:50.456737"], ["id", 21]]
6636
+  (0.6ms) commit transaction
6637
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6638
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 10], ["lang_id", 12]]
6639
+  (0.0ms) begin transaction
6640
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 12], ["parent_id", 10], ["created_at", "2015-08-14 08:44:50.460669"], ["updated_at", "2015-08-14 08:44:50.460669"]]
6641
+  (0.7ms) commit transaction
6642
+  (0.0ms) begin transaction
6643
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persisch"], ["updated_at", "2015-08-14 08:44:50.462946"], ["id", 22]]
6644
+  (0.7ms) commit transaction
6645
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6646
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 10], ["lang_id", 9]]
6647
+  (0.0ms) begin transaction
6648
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 9], ["parent_id", 10], ["created_at", "2015-08-14 08:44:50.466701"], ["updated_at", "2015-08-14 08:44:50.466701"]]
6649
+  (0.7ms) commit transaction
6650
+  (0.0ms) begin transaction
6651
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanisch"], ["updated_at", "2015-08-14 08:44:50.468916"], ["id", 23]]
6652
+  (0.6ms) commit transaction
6653
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6654
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 11], ["lang_id", 10]]
6655
+  (0.0ms) begin transaction
6656
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 10], ["parent_id", 11], ["created_at", "2015-08-14 08:44:50.472878"], ["updated_at", "2015-08-14 08:44:50.472878"]]
6657
+  (0.7ms) commit transaction
6658
+  (0.1ms) begin transaction
6659
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Alemán"], ["updated_at", "2015-08-14 08:44:50.475120"], ["id", 24]]
6660
+  (0.7ms) commit transaction
6661
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6662
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 11], ["lang_id", 8]]
6663
+  (0.1ms) begin transaction
6664
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 8], ["parent_id", 11], ["created_at", "2015-08-14 08:44:50.479244"], ["updated_at", "2015-08-14 08:44:50.479244"]]
6665
+  (1.0ms) commit transaction
6666
+  (0.1ms) begin transaction
6667
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Inglés"], ["updated_at", "2015-08-14 08:44:50.481826"], ["id", 25]]
6668
+  (0.9ms) commit transaction
6669
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6670
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 11], ["lang_id", 11]]
6671
+  (0.1ms) begin transaction
6672
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 11], ["parent_id", 11], ["created_at", "2015-08-14 08:44:50.486807"], ["updated_at", "2015-08-14 08:44:50.486807"]]
6673
+  (0.9ms) commit transaction
6674
+  (0.1ms) begin transaction
6675
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Españoles"], ["updated_at", "2015-08-14 08:44:50.489730"], ["id", 26]]
6676
+  (0.9ms) commit transaction
6677
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6678
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 11], ["lang_id", 12]]
6679
+  (0.1ms) begin transaction
6680
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 12], ["parent_id", 11], ["created_at", "2015-08-14 08:44:50.496003"], ["updated_at", "2015-08-14 08:44:50.496003"]]
6681
+  (1.1ms) commit transaction
6682
+  (0.1ms) begin transaction
6683
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persa"], ["updated_at", "2015-08-14 08:44:50.499608"], ["id", 27]]
6684
+  (0.9ms) commit transaction
6685
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6686
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 11], ["lang_id", 9]]
6687
+  (0.1ms) begin transaction
6688
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 9], ["parent_id", 11], ["created_at", "2015-08-14 08:44:50.505636"], ["updated_at", "2015-08-14 08:44:50.505636"]]
6689
+  (1.1ms) commit transaction
6690
+  (0.1ms) begin transaction
6691
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japonés"], ["updated_at", "2015-08-14 08:44:50.509380"], ["id", 28]]
6692
+  (1.0ms) commit transaction
6693
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6694
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 12], ["lang_id", 10]]
6695
+  (0.1ms) begin transaction
6696
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 10], ["parent_id", 12], ["created_at", "2015-08-14 08:44:50.515410"], ["updated_at", "2015-08-14 08:44:50.515410"]]
6697
+  (1.2ms) commit transaction
6698
+  (0.1ms) begin transaction
6699
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "آلمان"], ["updated_at", "2015-08-14 08:44:50.519177"], ["id", 29]]
6700
+  (1.0ms) commit transaction
6701
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6702
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 12], ["lang_id", 8]]
6703
+  (0.1ms) begin transaction
6704
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 8], ["parent_id", 12], ["created_at", "2015-08-14 08:44:50.524424"], ["updated_at", "2015-08-14 08:44:50.524424"]]
6705
+  (1.0ms) commit transaction
6706
+  (0.1ms) begin transaction
6707
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "انگلیسی"], ["updated_at", "2015-08-14 08:44:50.527465"], ["id", 30]]
6708
+  (0.7ms) commit transaction
6709
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6710
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 12], ["lang_id", 11]]
6711
+  (0.1ms) begin transaction
6712
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 11], ["parent_id", 12], ["created_at", "2015-08-14 08:44:50.532531"], ["updated_at", "2015-08-14 08:44:50.532531"]]
6713
+  (0.7ms) commit transaction
6714
+  (0.1ms) begin transaction
6715
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "اسپانیایی"], ["updated_at", "2015-08-14 08:44:50.535102"], ["id", 31]]
6716
+  (0.6ms) commit transaction
6717
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6718
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 12], ["lang_id", 12]]
6719
+  (0.0ms) begin transaction
6720
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 12], ["parent_id", 12], ["created_at", "2015-08-14 08:44:50.538923"], ["updated_at", "2015-08-14 08:44:50.538923"]]
6721
+  (0.7ms) commit transaction
6722
+  (0.1ms) begin transaction
6723
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "فارسی"], ["updated_at", "2015-08-14 08:44:50.541573"], ["id", 32]]
6724
+  (0.6ms) commit transaction
6725
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6726
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 12], ["lang_id", 9]]
6727
+  (0.0ms) begin transaction
6728
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 9], ["parent_id", 12], ["created_at", "2015-08-14 08:44:50.545638"], ["updated_at", "2015-08-14 08:44:50.545638"]]
6729
+  (0.6ms) commit transaction
6730
+  (0.0ms) begin transaction
6731
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ژاپن"], ["updated_at", "2015-08-14 08:44:50.547892"], ["id", 33]]
6732
+  (0.7ms) commit transaction
6733
+ Lang Load (1.8ms) SELECT "langs".* FROM "langs"
6734
+  (0.4ms) SELECT COUNT(*) FROM "langs"
6735
+  (0.4ms) SELECT COUNT(*) FROM "lang_texts"
6736
+ LangText Load (1.3ms) SELECT "lang_texts".* FROM "lang_texts"
6737
+ LangText Load (0.8ms) SELECT "lang_texts".* FROM "lang_texts"
6738
+  (0.3ms) begin transaction
6739
+ SQL (0.9ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 1]]
6740
+  (8.7ms) commit transaction
6741
+  (0.1ms) begin transaction
6742
+ SQL (0.5ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 2]]
6743
+  (1.1ms) commit transaction
6744
+  (0.1ms) begin transaction
6745
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 3]]
6746
+  (0.8ms) commit transaction
6747
+  (0.2ms) begin transaction
6748
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 4]]
6749
+  (1.0ms) commit transaction
6750
+  (0.2ms) begin transaction
6751
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 5]]
6752
+  (0.9ms) commit transaction
6753
+  (0.1ms) begin transaction
6754
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 6]]
6755
+  (1.0ms) commit transaction
6756
+  (0.1ms) begin transaction
6757
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 7]]
6758
+  (0.9ms) commit transaction
6759
+  (0.1ms) begin transaction
6760
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 8]]
6761
+  (0.7ms) commit transaction
6762
+  (0.1ms) begin transaction
6763
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 9]]
6764
+  (0.7ms) commit transaction
6765
+  (0.1ms) begin transaction
6766
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 10]]
6767
+  (2.1ms) commit transaction
6768
+  (0.1ms) begin transaction
6769
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 11]]
6770
+  (0.8ms) commit transaction
6771
+  (0.1ms) begin transaction
6772
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 12]]
6773
+  (0.6ms) commit transaction
6774
+  (0.1ms) begin transaction
6775
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 13]]
6776
+  (0.8ms) commit transaction
6777
+  (0.1ms) begin transaction
6778
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 14]]
6779
+  (0.6ms) commit transaction
6780
+  (0.1ms) begin transaction
6781
+ SQL (0.5ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 15]]
6782
+  (0.9ms) commit transaction
6783
+  (0.1ms) begin transaction
6784
+ SQL (0.6ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 16]]
6785
+  (0.9ms) commit transaction
6786
+  (0.1ms) begin transaction
6787
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 17]]
6788
+  (0.7ms) commit transaction
6789
+  (0.1ms) begin transaction
6790
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 18]]
6791
+  (0.9ms) commit transaction
6792
+  (0.1ms) begin transaction
6793
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 19]]
6794
+  (0.9ms) commit transaction
6795
+  (0.1ms) begin transaction
6796
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 20]]
6797
+  (1.1ms) commit transaction
6798
+  (0.2ms) begin transaction
6799
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 21]]
6800
+  (0.9ms) commit transaction
6801
+  (0.1ms) begin transaction
6802
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 22]]
6803
+  (1.1ms) commit transaction
6804
+  (0.1ms) begin transaction
6805
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 23]]
6806
+  (1.1ms) commit transaction
6807
+  (0.1ms) begin transaction
6808
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 24]]
6809
+  (0.9ms) commit transaction
6810
+  (0.1ms) begin transaction
6811
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 25]]
6812
+  (0.9ms) commit transaction
6813
+  (0.1ms) begin transaction
6814
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 26]]
6815
+  (0.7ms) commit transaction
6816
+  (0.1ms) begin transaction
6817
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 27]]
6818
+  (0.6ms) commit transaction
6819
+  (0.1ms) begin transaction
6820
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 28]]
6821
+  (0.6ms) commit transaction
6822
+  (0.0ms) begin transaction
6823
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 29]]
6824
+  (0.6ms) commit transaction
6825
+  (0.1ms) begin transaction
6826
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 30]]
6827
+  (2.3ms) commit transaction
6828
+  (0.1ms) begin transaction
6829
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 31]]
6830
+  (0.8ms) commit transaction
6831
+  (0.2ms) begin transaction
6832
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 32]]
6833
+  (0.8ms) commit transaction
6834
+  (0.1ms) begin transaction
6835
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 33]]
6836
+  (0.8ms) commit transaction
6837
+ Lang Load (0.8ms) SELECT "langs".* FROM "langs"
6838
+  (0.2ms) begin transaction
6839
+ SQL (0.6ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 8]]
6840
+  (8.7ms) commit transaction
6841
+  (0.1ms) begin transaction
6842
+ SQL (0.4ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 9]]
6843
+  (0.8ms) commit transaction
6844
+  (0.1ms) begin transaction
6845
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 10]]
6846
+  (1.8ms) commit transaction
6847
+  (0.1ms) begin transaction
6848
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 11]]
6849
+  (0.6ms) commit transaction
6850
+  (0.1ms) begin transaction
6851
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 12]]
6852
+  (0.7ms) commit transaction
6853
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6854
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6855
+  (0.1ms) begin transaction
6856
+ SQL (0.4ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "de"], ["created_at", "2015-08-14 08:45:43.950893"], ["updated_at", "2015-08-14 08:45:43.950893"]]
6857
+  (9.2ms) commit transaction
6858
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6859
+  (0.1ms) begin transaction
6860
+ SQL (0.4ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "en"], ["created_at", "2015-08-14 08:45:43.966131"], ["updated_at", "2015-08-14 08:45:43.966131"]]
6861
+  (1.3ms) commit transaction
6862
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6863
+  (0.1ms) begin transaction
6864
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "es"], ["created_at", "2015-08-14 08:45:43.970869"], ["updated_at", "2015-08-14 08:45:43.970869"]]
6865
+  (1.0ms) commit transaction
6866
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6867
+  (0.1ms) begin transaction
6868
+ SQL (0.2ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "fa"], ["created_at", "2015-08-14 08:45:43.974610"], ["updated_at", "2015-08-14 08:45:43.974610"]]
6869
+  (1.0ms) commit transaction
6870
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6871
+  (0.1ms) begin transaction
6872
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "ja"], ["created_at", "2015-08-14 08:45:43.978175"], ["updated_at", "2015-08-14 08:45:43.978175"]]
6873
+  (1.1ms) commit transaction
6874
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
6875
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6876
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 13], ["lang_id", 13]]
6877
+  (0.0ms) begin transaction
6878
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 13], ["parent_id", 13], ["created_at", "2015-08-14 08:45:44.002807"], ["updated_at", "2015-08-14 08:45:44.002807"]]
6879
+  (0.9ms) commit transaction
6880
+  (0.1ms) begin transaction
6881
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Deutsch"], ["updated_at", "2015-08-14 08:45:44.005576"], ["id", 34]]
6882
+  (0.9ms) commit transaction
6883
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6884
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 13], ["lang_id", 14]]
6885
+  (0.1ms) begin transaction
6886
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 14], ["parent_id", 13], ["created_at", "2015-08-14 08:45:44.011006"], ["updated_at", "2015-08-14 08:45:44.011006"]]
6887
+  (0.9ms) commit transaction
6888
+  (0.1ms) begin transaction
6889
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Englisch"], ["updated_at", "2015-08-14 08:45:44.014062"], ["id", 35]]
6890
+  (0.7ms) commit transaction
6891
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6892
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 13], ["lang_id", 15]]
6893
+  (0.1ms) begin transaction
6894
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 15], ["parent_id", 13], ["created_at", "2015-08-14 08:45:44.018052"], ["updated_at", "2015-08-14 08:45:44.018052"]]
6895
+  (0.9ms) commit transaction
6896
+  (0.1ms) begin transaction
6897
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanisch"], ["updated_at", "2015-08-14 08:45:44.020690"], ["id", 36]]
6898
+  (0.9ms) commit transaction
6899
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6900
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 13], ["lang_id", 16]]
6901
+  (0.1ms) begin transaction
6902
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 16], ["parent_id", 13], ["created_at", "2015-08-14 08:45:44.025928"], ["updated_at", "2015-08-14 08:45:44.025928"]]
6903
+  (1.5ms) commit transaction
6904
+  (0.1ms) begin transaction
6905
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persisch"], ["updated_at", "2015-08-14 08:45:44.029988"], ["id", 37]]
6906
+  (1.1ms) commit transaction
6907
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6908
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 13], ["lang_id", 17]]
6909
+  (0.1ms) begin transaction
6910
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 17], ["parent_id", 13], ["created_at", "2015-08-14 08:45:44.034932"], ["updated_at", "2015-08-14 08:45:44.034932"]]
6911
+  (1.1ms) commit transaction
6912
+  (0.1ms) begin transaction
6913
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanisch"], ["updated_at", "2015-08-14 08:45:44.038016"], ["id", 38]]
6914
+  (1.0ms) commit transaction
6915
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6916
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 14], ["lang_id", 13]]
6917
+  (0.1ms) begin transaction
6918
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 13], ["parent_id", 14], ["created_at", "2015-08-14 08:45:44.044281"], ["updated_at", "2015-08-14 08:45:44.044281"]]
6919
+  (1.0ms) commit transaction
6920
+  (0.1ms) begin transaction
6921
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "German"], ["updated_at", "2015-08-14 08:45:44.047543"], ["id", 39]]
6922
+  (0.8ms) commit transaction
6923
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6924
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 14], ["lang_id", 14]]
6925
+  (0.1ms) begin transaction
6926
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 14], ["parent_id", 14], ["created_at", "2015-08-14 08:45:44.051720"], ["updated_at", "2015-08-14 08:45:44.051720"]]
6927
+  (0.8ms) commit transaction
6928
+  (0.1ms) begin transaction
6929
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "English"], ["updated_at", "2015-08-14 08:45:44.054419"], ["id", 40]]
6930
+  (0.6ms) commit transaction
6931
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6932
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 14], ["lang_id", 15]]
6933
+  (0.0ms) begin transaction
6934
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 15], ["parent_id", 14], ["created_at", "2015-08-14 08:45:44.058022"], ["updated_at", "2015-08-14 08:45:44.058022"]]
6935
+  (0.7ms) commit transaction
6936
+  (0.0ms) begin transaction
6937
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanish"], ["updated_at", "2015-08-14 08:45:44.060259"], ["id", 41]]
6938
+  (0.8ms) commit transaction
6939
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6940
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 14], ["lang_id", 16]]
6941
+  (0.1ms) begin transaction
6942
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 16], ["parent_id", 14], ["created_at", "2015-08-14 08:45:44.064421"], ["updated_at", "2015-08-14 08:45:44.064421"]]
6943
+  (1.0ms) commit transaction
6944
+  (0.1ms) begin transaction
6945
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persian"], ["updated_at", "2015-08-14 08:45:44.067526"], ["id", 42]]
6946
+  (0.8ms) commit transaction
6947
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6948
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 14], ["lang_id", 17]]
6949
+  (0.0ms) begin transaction
6950
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 17], ["parent_id", 14], ["created_at", "2015-08-14 08:45:44.071587"], ["updated_at", "2015-08-14 08:45:44.071587"]]
6951
+  (0.9ms) commit transaction
6952
+  (0.0ms) begin transaction
6953
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanese"], ["updated_at", "2015-08-14 08:45:44.074170"], ["id", 43]]
6954
+  (0.7ms) commit transaction
6955
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6956
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 15], ["lang_id", 13]]
6957
+  (0.0ms) begin transaction
6958
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 13], ["parent_id", 15], ["created_at", "2015-08-14 08:45:44.078042"], ["updated_at", "2015-08-14 08:45:44.078042"]]
6959
+  (1.1ms) commit transaction
6960
+  (0.1ms) begin transaction
6961
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Alemán"], ["updated_at", "2015-08-14 08:45:44.080987"], ["id", 44]]
6962
+  (1.1ms) commit transaction
6963
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
6964
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 15], ["lang_id", 14]]
6965
+  (0.1ms) begin transaction
6966
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 14], ["parent_id", 15], ["created_at", "2015-08-14 08:45:44.086315"], ["updated_at", "2015-08-14 08:45:44.086315"]]
6967
+  (0.8ms) commit transaction
6968
+  (0.1ms) begin transaction
6969
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Inglés"], ["updated_at", "2015-08-14 08:45:44.089678"], ["id", 45]]
6970
+  (1.0ms) commit transaction
6971
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
6972
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 15], ["lang_id", 15]]
6973
+  (0.1ms) begin transaction
6974
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 15], ["parent_id", 15], ["created_at", "2015-08-14 08:45:44.094833"], ["updated_at", "2015-08-14 08:45:44.094833"]]
6975
+  (1.1ms) commit transaction
6976
+  (0.1ms) begin transaction
6977
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Españoles"], ["updated_at", "2015-08-14 08:45:44.098359"], ["id", 46]]
6978
+  (1.0ms) commit transaction
6979
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
6980
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 15], ["lang_id", 16]]
6981
+  (0.1ms) begin transaction
6982
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 16], ["parent_id", 15], ["created_at", "2015-08-14 08:45:44.104023"], ["updated_at", "2015-08-14 08:45:44.104023"]]
6983
+  (1.2ms) commit transaction
6984
+  (0.1ms) begin transaction
6985
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persa"], ["updated_at", "2015-08-14 08:45:44.107689"], ["id", 47]]
6986
+  (1.0ms) commit transaction
6987
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
6988
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 15], ["lang_id", 17]]
6989
+  (0.1ms) begin transaction
6990
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 17], ["parent_id", 15], ["created_at", "2015-08-14 08:45:44.113278"], ["updated_at", "2015-08-14 08:45:44.113278"]]
6991
+  (1.1ms) commit transaction
6992
+  (0.1ms) begin transaction
6993
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japonés"], ["updated_at", "2015-08-14 08:45:44.117229"], ["id", 48]]
6994
+  (1.0ms) commit transaction
6995
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
6996
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 16], ["lang_id", 13]]
6997
+  (0.1ms) begin transaction
6998
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 13], ["parent_id", 16], ["created_at", "2015-08-14 08:45:44.122811"], ["updated_at", "2015-08-14 08:45:44.122811"]]
6999
+  (0.7ms) commit transaction
7000
+  (0.1ms) begin transaction
7001
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "آلمان"], ["updated_at", "2015-08-14 08:45:44.125395"], ["id", 49]]
7002
+  (0.9ms) commit transaction
7003
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7004
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 16], ["lang_id", 14]]
7005
+  (0.1ms) begin transaction
7006
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 14], ["parent_id", 16], ["created_at", "2015-08-14 08:45:44.130442"], ["updated_at", "2015-08-14 08:45:44.130442"]]
7007
+  (1.0ms) commit transaction
7008
+  (0.1ms) begin transaction
7009
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "انگلیسی"], ["updated_at", "2015-08-14 08:45:44.133568"], ["id", 50]]
7010
+  (1.0ms) commit transaction
7011
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7012
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 16], ["lang_id", 15]]
7013
+  (0.1ms) begin transaction
7014
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 15], ["parent_id", 16], ["created_at", "2015-08-14 08:45:44.139442"], ["updated_at", "2015-08-14 08:45:44.139442"]]
7015
+  (0.8ms) commit transaction
7016
+  (0.1ms) begin transaction
7017
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "اسپانیایی"], ["updated_at", "2015-08-14 08:45:44.142392"], ["id", 51]]
7018
+  (0.9ms) commit transaction
7019
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7020
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 16], ["lang_id", 16]]
7021
+  (0.1ms) begin transaction
7022
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 16], ["parent_id", 16], ["created_at", "2015-08-14 08:45:44.146878"], ["updated_at", "2015-08-14 08:45:44.146878"]]
7023
+  (1.1ms) commit transaction
7024
+  (0.1ms) begin transaction
7025
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "فارسی"], ["updated_at", "2015-08-14 08:45:44.150041"], ["id", 52]]
7026
+  (1.0ms) commit transaction
7027
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7028
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 16], ["lang_id", 17]]
7029
+  (0.1ms) begin transaction
7030
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 17], ["parent_id", 16], ["created_at", "2015-08-14 08:45:44.155973"], ["updated_at", "2015-08-14 08:45:44.155973"]]
7031
+  (0.8ms) commit transaction
7032
+  (0.1ms) begin transaction
7033
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ژاپن"], ["updated_at", "2015-08-14 08:45:44.158996"], ["id", 53]]
7034
+  (0.7ms) commit transaction
7035
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7036
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 17], ["lang_id", 13]]
7037
+  (0.1ms) begin transaction
7038
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 13], ["parent_id", 17], ["created_at", "2015-08-14 08:45:44.163908"], ["updated_at", "2015-08-14 08:45:44.163908"]]
7039
+  (0.7ms) commit transaction
7040
+  (0.0ms) begin transaction
7041
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ドイツ語"], ["updated_at", "2015-08-14 08:45:44.166356"], ["id", 54]]
7042
+  (0.8ms) commit transaction
7043
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7044
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 17], ["lang_id", 14]]
7045
+  (0.1ms) begin transaction
7046
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 14], ["parent_id", 17], ["created_at", "2015-08-14 08:45:44.170590"], ["updated_at", "2015-08-14 08:45:44.170590"]]
7047
+  (0.8ms) commit transaction
7048
+  (0.1ms) begin transaction
7049
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "英語"], ["updated_at", "2015-08-14 08:45:44.173274"], ["id", 55]]
7050
+  (0.7ms) commit transaction
7051
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7052
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 17], ["lang_id", 15]]
7053
+  (0.1ms) begin transaction
7054
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 15], ["parent_id", 17], ["created_at", "2015-08-14 08:45:44.177013"], ["updated_at", "2015-08-14 08:45:44.177013"]]
7055
+  (0.9ms) commit transaction
7056
+  (0.1ms) begin transaction
7057
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "スペイン語"], ["updated_at", "2015-08-14 08:45:44.179777"], ["id", 56]]
7058
+  (0.7ms) commit transaction
7059
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7060
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 17], ["lang_id", 16]]
7061
+  (0.0ms) begin transaction
7062
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 16], ["parent_id", 17], ["created_at", "2015-08-14 08:45:44.183466"], ["updated_at", "2015-08-14 08:45:44.183466"]]
7063
+  (1.0ms) commit transaction
7064
+  (0.1ms) begin transaction
7065
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ペルシア語"], ["updated_at", "2015-08-14 08:45:44.186323"], ["id", 57]]
7066
+  (0.9ms) commit transaction
7067
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7068
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 17], ["lang_id", 17]]
7069
+  (0.0ms) begin transaction
7070
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 17], ["parent_id", 17], ["created_at", "2015-08-14 08:45:44.190510"], ["updated_at", "2015-08-14 08:45:44.190510"]]
7071
+  (1.1ms) commit transaction
7072
+  (0.1ms) begin transaction
7073
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "日本語"], ["updated_at", "2015-08-14 08:45:44.193370"], ["id", 58]]
7074
+  (1.1ms) commit transaction
7075
+  (0.3ms) SELECT COUNT(*) FROM "lang_texts"
7076
+  (0.4ms) SELECT "lang_texts"."label" FROM "lang_texts"
7077
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs"
7078
+  (0.1ms) begin transaction
7079
+ SQL (1.8ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 13]]
7080
+  (8.8ms) commit transaction
7081
+  (0.1ms) begin transaction
7082
+ SQL (0.3ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 14]]
7083
+  (0.9ms) commit transaction
7084
+  (0.2ms) begin transaction
7085
+ SQL (0.3ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 15]]
7086
+  (0.7ms) commit transaction
7087
+  (0.1ms) begin transaction
7088
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 16]]
7089
+  (0.7ms) commit transaction
7090
+  (0.1ms) begin transaction
7091
+ SQL (0.2ms) DELETE FROM "langs" WHERE "langs"."id" = ? [["id", 17]]
7092
+  (0.8ms) commit transaction
7093
+ LangText Load (0.6ms) SELECT "lang_texts".* FROM "lang_texts"
7094
+  (0.1ms) begin transaction
7095
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 34]]
7096
+  (8.7ms) commit transaction
7097
+  (0.1ms) begin transaction
7098
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 35]]
7099
+  (0.8ms) commit transaction
7100
+  (0.1ms) begin transaction
7101
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 36]]
7102
+  (1.1ms) commit transaction
7103
+  (0.1ms) begin transaction
7104
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 37]]
7105
+  (1.1ms) commit transaction
7106
+  (0.1ms) begin transaction
7107
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 38]]
7108
+  (0.9ms) commit transaction
7109
+  (0.1ms) begin transaction
7110
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 39]]
7111
+  (0.9ms) commit transaction
7112
+  (0.1ms) begin transaction
7113
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 40]]
7114
+  (1.0ms) commit transaction
7115
+  (0.1ms) begin transaction
7116
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 41]]
7117
+  (0.9ms) commit transaction
7118
+  (0.1ms) begin transaction
7119
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 42]]
7120
+  (0.9ms) commit transaction
7121
+  (0.1ms) begin transaction
7122
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 43]]
7123
+  (0.9ms) commit transaction
7124
+  (0.1ms) begin transaction
7125
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 44]]
7126
+  (0.9ms) commit transaction
7127
+  (0.1ms) begin transaction
7128
+ SQL (0.4ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 45]]
7129
+  (0.7ms) commit transaction
7130
+  (0.1ms) begin transaction
7131
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 46]]
7132
+  (0.7ms) commit transaction
7133
+  (0.1ms) begin transaction
7134
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 47]]
7135
+  (5.6ms) commit transaction
7136
+  (0.1ms) begin transaction
7137
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 48]]
7138
+  (0.9ms) commit transaction
7139
+  (0.1ms) begin transaction
7140
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 49]]
7141
+  (0.8ms) commit transaction
7142
+  (0.1ms) begin transaction
7143
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 50]]
7144
+  (1.1ms) commit transaction
7145
+  (0.1ms) begin transaction
7146
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 51]]
7147
+  (0.8ms) commit transaction
7148
+  (0.1ms) begin transaction
7149
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 52]]
7150
+  (0.8ms) commit transaction
7151
+  (0.1ms) begin transaction
7152
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 53]]
7153
+  (1.3ms) commit transaction
7154
+  (0.1ms) begin transaction
7155
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 54]]
7156
+  (0.9ms) commit transaction
7157
+  (0.1ms) begin transaction
7158
+ SQL (0.2ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 55]]
7159
+  (0.7ms) commit transaction
7160
+  (0.1ms) begin transaction
7161
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 56]]
7162
+  (1.0ms) commit transaction
7163
+  (0.2ms) begin transaction
7164
+ SQL (0.5ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 57]]
7165
+  (1.1ms) commit transaction
7166
+  (0.2ms) begin transaction
7167
+ SQL (0.3ms) DELETE FROM "lang_texts" WHERE "lang_texts"."id" = ? [["id", 58]]
7168
+  (0.9ms) commit transaction
7169
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
7170
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7171
+  (0.1ms) begin transaction
7172
+ SQL (0.5ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "de"], ["created_at", "2015-08-14 08:47:42.114339"], ["updated_at", "2015-08-14 08:47:42.114339"]]
7173
+  (1.0ms) commit transaction
7174
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7175
+  (0.1ms) begin transaction
7176
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "en"], ["created_at", "2015-08-14 08:47:42.122371"], ["updated_at", "2015-08-14 08:47:42.122371"]]
7177
+  (1.1ms) commit transaction
7178
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7179
+  (0.1ms) begin transaction
7180
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "es"], ["created_at", "2015-08-14 08:47:42.127006"], ["updated_at", "2015-08-14 08:47:42.127006"]]
7181
+  (0.7ms) commit transaction
7182
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7183
+  (0.1ms) begin transaction
7184
+ SQL (0.3ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "fa"], ["created_at", "2015-08-14 08:47:42.131143"], ["updated_at", "2015-08-14 08:47:42.131143"]]
7185
+  (0.9ms) commit transaction
7186
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7187
+  (0.1ms) begin transaction
7188
+ SQL (0.2ms) INSERT INTO "langs" ("code", "created_at", "updated_at") VALUES (?, ?, ?) [["code", "ja"], ["created_at", "2015-08-14 08:47:42.135644"], ["updated_at", "2015-08-14 08:47:42.135644"]]
7189
+  (1.0ms) commit transaction
7190
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
7191
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7192
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7193
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7194
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7195
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7196
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7197
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
7198
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
7199
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7200
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7201
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7202
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7203
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7204
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs"
7205
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
7206
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7207
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7208
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7209
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7210
+ Lang Load (0.7ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7211
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
7212
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7213
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 18]]
7214
+  (0.1ms) begin transaction
7215
+ SQL (0.6ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 18], ["parent_id", 18], ["created_at", "2015-08-14 08:48:34.266026"], ["updated_at", "2015-08-14 08:48:34.266026"]]
7216
+  (1.1ms) commit transaction
7217
+  (0.1ms) begin transaction
7218
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Deutsch"], ["updated_at", "2015-08-14 08:48:34.270473"], ["id", 59]]
7219
+  (0.8ms) commit transaction
7220
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7221
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 19]]
7222
+  (0.1ms) begin transaction
7223
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 19], ["parent_id", 18], ["created_at", "2015-08-14 08:48:34.277090"], ["updated_at", "2015-08-14 08:48:34.277090"]]
7224
+  (1.2ms) commit transaction
7225
+  (0.1ms) begin transaction
7226
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Englisch"], ["updated_at", "2015-08-14 08:48:34.280139"], ["id", 60]]
7227
+  (1.0ms) commit transaction
7228
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7229
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 20]]
7230
+  (0.1ms) begin transaction
7231
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 20], ["parent_id", 18], ["created_at", "2015-08-14 08:48:34.285848"], ["updated_at", "2015-08-14 08:48:34.285848"]]
7232
+  (1.1ms) commit transaction
7233
+  (0.1ms) begin transaction
7234
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanisch"], ["updated_at", "2015-08-14 08:48:34.289579"], ["id", 61]]
7235
+  (1.0ms) commit transaction
7236
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7237
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 21]]
7238
+  (0.1ms) begin transaction
7239
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 21], ["parent_id", 18], ["created_at", "2015-08-14 08:48:34.295633"], ["updated_at", "2015-08-14 08:48:34.295633"]]
7240
+  (1.0ms) commit transaction
7241
+  (0.1ms) begin transaction
7242
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persisch"], ["updated_at", "2015-08-14 08:48:34.311942"], ["id", 62]]
7243
+  (0.8ms) commit transaction
7244
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7245
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 22]]
7246
+  (0.1ms) begin transaction
7247
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 22], ["parent_id", 18], ["created_at", "2015-08-14 08:48:34.316835"], ["updated_at", "2015-08-14 08:48:34.316835"]]
7248
+  (1.0ms) commit transaction
7249
+  (0.1ms) begin transaction
7250
+ SQL (0.5ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanisch"], ["updated_at", "2015-08-14 08:48:34.319633"], ["id", 63]]
7251
+  (1.0ms) commit transaction
7252
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7253
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 18]]
7254
+  (0.1ms) begin transaction
7255
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 18], ["parent_id", 19], ["created_at", "2015-08-14 08:48:34.326244"], ["updated_at", "2015-08-14 08:48:34.326244"]]
7256
+  (1.0ms) commit transaction
7257
+  (0.1ms) begin transaction
7258
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "German"], ["updated_at", "2015-08-14 08:48:34.329467"], ["id", 64]]
7259
+  (1.2ms) commit transaction
7260
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7261
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 19]]
7262
+  (0.1ms) begin transaction
7263
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 19], ["parent_id", 19], ["created_at", "2015-08-14 08:48:34.335314"], ["updated_at", "2015-08-14 08:48:34.335314"]]
7264
+  (0.9ms) commit transaction
7265
+  (0.1ms) begin transaction
7266
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "English"], ["updated_at", "2015-08-14 08:48:34.338578"], ["id", 65]]
7267
+  (0.8ms) commit transaction
7268
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7269
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 20]]
7270
+  (0.1ms) begin transaction
7271
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 20], ["parent_id", 19], ["created_at", "2015-08-14 08:48:34.343758"], ["updated_at", "2015-08-14 08:48:34.343758"]]
7272
+  (1.0ms) commit transaction
7273
+  (0.1ms) begin transaction
7274
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanish"], ["updated_at", "2015-08-14 08:48:34.346777"], ["id", 66]]
7275
+  (0.9ms) commit transaction
7276
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7277
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 21]]
7278
+  (0.1ms) begin transaction
7279
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 21], ["parent_id", 19], ["created_at", "2015-08-14 08:48:34.351344"], ["updated_at", "2015-08-14 08:48:34.351344"]]
7280
+  (1.0ms) commit transaction
7281
+  (0.1ms) begin transaction
7282
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persian"], ["updated_at", "2015-08-14 08:48:34.354218"], ["id", 67]]
7283
+  (0.9ms) commit transaction
7284
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7285
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 22]]
7286
+  (0.1ms) begin transaction
7287
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 22], ["parent_id", 19], ["created_at", "2015-08-14 08:48:34.359613"], ["updated_at", "2015-08-14 08:48:34.359613"]]
7288
+  (1.0ms) commit transaction
7289
+  (0.1ms) begin transaction
7290
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanese"], ["updated_at", "2015-08-14 08:48:34.363185"], ["id", 68]]
7291
+  (0.9ms) commit transaction
7292
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7293
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 18]]
7294
+  (0.1ms) begin transaction
7295
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 18], ["parent_id", 20], ["created_at", "2015-08-14 08:48:34.369448"], ["updated_at", "2015-08-14 08:48:34.369448"]]
7296
+  (1.2ms) commit transaction
7297
+  (0.1ms) begin transaction
7298
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Alemán"], ["updated_at", "2015-08-14 08:48:34.372998"], ["id", 69]]
7299
+  (1.0ms) commit transaction
7300
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7301
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 19]]
7302
+  (0.1ms) begin transaction
7303
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 19], ["parent_id", 20], ["created_at", "2015-08-14 08:48:34.378874"], ["updated_at", "2015-08-14 08:48:34.378874"]]
7304
+  (1.1ms) commit transaction
7305
+  (0.1ms) begin transaction
7306
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Inglés"], ["updated_at", "2015-08-14 08:48:34.382393"], ["id", 70]]
7307
+  (1.0ms) commit transaction
7308
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7309
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 20]]
7310
+  (0.1ms) begin transaction
7311
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 20], ["parent_id", 20], ["created_at", "2015-08-14 08:48:34.387740"], ["updated_at", "2015-08-14 08:48:34.387740"]]
7312
+  (1.0ms) commit transaction
7313
+  (0.1ms) begin transaction
7314
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Españoles"], ["updated_at", "2015-08-14 08:48:34.390675"], ["id", 71]]
7315
+  (0.9ms) commit transaction
7316
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7317
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 21]]
7318
+  (0.1ms) begin transaction
7319
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 21], ["parent_id", 20], ["created_at", "2015-08-14 08:48:34.396317"], ["updated_at", "2015-08-14 08:48:34.396317"]]
7320
+  (1.1ms) commit transaction
7321
+  (0.1ms) begin transaction
7322
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persa"], ["updated_at", "2015-08-14 08:48:34.399840"], ["id", 72]]
7323
+  (0.9ms) commit transaction
7324
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7325
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 22]]
7326
+  (0.1ms) begin transaction
7327
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 22], ["parent_id", 20], ["created_at", "2015-08-14 08:48:34.405439"], ["updated_at", "2015-08-14 08:48:34.405439"]]
7328
+  (1.0ms) commit transaction
7329
+  (0.1ms) begin transaction
7330
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japonés"], ["updated_at", "2015-08-14 08:48:34.408610"], ["id", 73]]
7331
+  (0.9ms) commit transaction
7332
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7333
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 18]]
7334
+  (0.1ms) begin transaction
7335
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 18], ["parent_id", 21], ["created_at", "2015-08-14 08:48:34.414653"], ["updated_at", "2015-08-14 08:48:34.414653"]]
7336
+  (0.9ms) commit transaction
7337
+  (0.1ms) begin transaction
7338
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "آلمان"], ["updated_at", "2015-08-14 08:48:34.417920"], ["id", 74]]
7339
+  (0.7ms) commit transaction
7340
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7341
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 19]]
7342
+  (0.1ms) begin transaction
7343
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 19], ["parent_id", 21], ["created_at", "2015-08-14 08:48:34.422327"], ["updated_at", "2015-08-14 08:48:34.422327"]]
7344
+  (0.7ms) commit transaction
7345
+  (0.0ms) begin transaction
7346
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "انگلیسی"], ["updated_at", "2015-08-14 08:48:34.424690"], ["id", 75]]
7347
+  (0.6ms) commit transaction
7348
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7349
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 20]]
7350
+  (0.0ms) begin transaction
7351
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 20], ["parent_id", 21], ["created_at", "2015-08-14 08:48:34.428226"], ["updated_at", "2015-08-14 08:48:34.428226"]]
7352
+  (0.9ms) commit transaction
7353
+  (0.0ms) begin transaction
7354
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "اسپانیایی"], ["updated_at", "2015-08-14 08:48:34.430732"], ["id", 76]]
7355
+  (0.7ms) commit transaction
7356
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7357
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 21]]
7358
+  (0.1ms) begin transaction
7359
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 21], ["parent_id", 21], ["created_at", "2015-08-14 08:48:34.435392"], ["updated_at", "2015-08-14 08:48:34.435392"]]
7360
+  (1.2ms) commit transaction
7361
+  (0.1ms) begin transaction
7362
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "فارسی"], ["updated_at", "2015-08-14 08:48:34.438521"], ["id", 77]]
7363
+  (0.9ms) commit transaction
7364
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7365
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 22]]
7366
+  (0.1ms) begin transaction
7367
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 22], ["parent_id", 21], ["created_at", "2015-08-14 08:48:34.444140"], ["updated_at", "2015-08-14 08:48:34.444140"]]
7368
+  (0.9ms) commit transaction
7369
+  (0.1ms) begin transaction
7370
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ژاپن"], ["updated_at", "2015-08-14 08:48:34.447331"], ["id", 78]]
7371
+  (0.6ms) commit transaction
7372
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7373
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 18]]
7374
+  (0.1ms) begin transaction
7375
+ SQL (0.3ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 18], ["parent_id", 22], ["created_at", "2015-08-14 08:48:34.452329"], ["updated_at", "2015-08-14 08:48:34.452329"]]
7376
+  (0.8ms) commit transaction
7377
+  (0.1ms) begin transaction
7378
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ドイツ語"], ["updated_at", "2015-08-14 08:48:34.455033"], ["id", 79]]
7379
+  (0.6ms) commit transaction
7380
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7381
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 19]]
7382
+  (0.0ms) begin transaction
7383
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 19], ["parent_id", 22], ["created_at", "2015-08-14 08:48:34.458681"], ["updated_at", "2015-08-14 08:48:34.458681"]]
7384
+  (0.7ms) commit transaction
7385
+  (0.0ms) begin transaction
7386
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "英語"], ["updated_at", "2015-08-14 08:48:34.460905"], ["id", 80]]
7387
+  (0.6ms) commit transaction
7388
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7389
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 20]]
7390
+  (0.1ms) begin transaction
7391
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 20], ["parent_id", 22], ["created_at", "2015-08-14 08:48:34.464567"], ["updated_at", "2015-08-14 08:48:34.464567"]]
7392
+  (0.9ms) commit transaction
7393
+  (0.1ms) begin transaction
7394
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "スペイン語"], ["updated_at", "2015-08-14 08:48:34.467073"], ["id", 81]]
7395
+  (0.8ms) commit transaction
7396
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7397
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 21]]
7398
+  (0.0ms) begin transaction
7399
+ SQL (0.2ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 21], ["parent_id", 22], ["created_at", "2015-08-14 08:48:34.471329"], ["updated_at", "2015-08-14 08:48:34.471329"]]
7400
+  (1.0ms) commit transaction
7401
+  (0.1ms) begin transaction
7402
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ペルシア語"], ["updated_at", "2015-08-14 08:48:34.473855"], ["id", 82]]
7403
+  (0.7ms) commit transaction
7404
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7405
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 22]]
7406
+  (0.1ms) begin transaction
7407
+ SQL (0.4ms) INSERT INTO "lang_texts" ("lang_id", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["lang_id", 22], ["parent_id", 22], ["created_at", "2015-08-14 08:48:34.478987"], ["updated_at", "2015-08-14 08:48:34.478987"]]
7408
+  (1.0ms) commit transaction
7409
+  (0.1ms) begin transaction
7410
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "日本語"], ["updated_at", "2015-08-14 08:48:34.482391"], ["id", 83]]
7411
+  (0.9ms) commit transaction
7412
+  (0.3ms) SELECT COUNT(*) FROM "lang_texts"
7413
+  (0.2ms) SELECT COUNT(*) FROM "langs"
7414
+ LangText Load (0.4ms) SELECT "lang_texts".* FROM "lang_texts"
7415
+ LangText Load (0.5ms) SELECT "lang_texts".* FROM "lang_texts"
7416
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" ASC LIMIT 1
7417
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7418
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7419
+  (0.1ms) begin transaction
7420
+ SQL (0.6ms) UPDATE "langs" SET "enable" = ?, "position" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["enable", "f"], ["position", 3], ["updated_at", "2015-08-14 08:53:48.233584"], ["id", 18]]
7421
+  (1.0ms) commit transaction
7422
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7423
+  (0.1ms) begin transaction
7424
+ SQL (0.4ms) UPDATE "langs" SET "position" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 2], ["updated_at", "2015-08-14 08:53:48.243763"], ["id", 19]]
7425
+  (1.3ms) commit transaction
7426
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7427
+  (0.1ms) begin transaction
7428
+ SQL (0.5ms) UPDATE "langs" SET "position" = ?, "enable" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 4], ["enable", "f"], ["updated_at", "2015-08-14 08:53:48.249330"], ["id", 20]]
7429
+  (1.1ms) commit transaction
7430
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7431
+  (0.1ms) begin transaction
7432
+ SQL (0.3ms) UPDATE "langs" SET "position" = ?, "enable" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 5], ["enable", "f"], ["updated_at", "2015-08-14 08:53:48.254984"], ["id", 21]]
7433
+  (1.1ms) commit transaction
7434
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7435
+  (0.1ms) begin transaction
7436
+  (0.1ms) commit transaction
7437
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
7438
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7439
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 18]]
7440
+  (0.1ms) begin transaction
7441
+  (0.0ms) commit transaction
7442
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7443
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 19]]
7444
+  (0.1ms) begin transaction
7445
+  (0.1ms) commit transaction
7446
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7447
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 20]]
7448
+  (0.1ms) begin transaction
7449
+  (0.1ms) commit transaction
7450
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7451
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 21]]
7452
+  (0.1ms) begin transaction
7453
+  (0.1ms) commit transaction
7454
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7455
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 22]]
7456
+  (0.1ms) begin transaction
7457
+  (0.1ms) commit transaction
7458
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7459
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 18]]
7460
+  (0.1ms) begin transaction
7461
+  (0.1ms) commit transaction
7462
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7463
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 19]]
7464
+  (0.1ms) begin transaction
7465
+  (0.1ms) commit transaction
7466
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7467
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 20]]
7468
+  (0.1ms) begin transaction
7469
+  (0.1ms) commit transaction
7470
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7471
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 21]]
7472
+  (0.1ms) begin transaction
7473
+  (0.1ms) commit transaction
7474
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7475
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 22]]
7476
+  (0.1ms) begin transaction
7477
+  (0.1ms) commit transaction
7478
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7479
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 18]]
7480
+  (0.1ms) begin transaction
7481
+  (0.1ms) commit transaction
7482
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7483
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 19]]
7484
+  (0.0ms) begin transaction
7485
+  (0.0ms) commit transaction
7486
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7487
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 20]]
7488
+  (0.0ms) begin transaction
7489
+  (0.0ms) commit transaction
7490
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7491
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 21]]
7492
+  (0.1ms) begin transaction
7493
+  (0.1ms) commit transaction
7494
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7495
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 22]]
7496
+  (0.1ms) begin transaction
7497
+  (0.1ms) commit transaction
7498
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7499
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 18]]
7500
+  (0.1ms) begin transaction
7501
+  (0.1ms) commit transaction
7502
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7503
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 19]]
7504
+  (0.1ms) begin transaction
7505
+  (0.1ms) commit transaction
7506
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7507
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 20]]
7508
+  (0.1ms) begin transaction
7509
+  (0.1ms) commit transaction
7510
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7511
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 21]]
7512
+  (0.1ms) begin transaction
7513
+  (0.1ms) commit transaction
7514
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7515
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 22]]
7516
+  (0.1ms) begin transaction
7517
+  (0.1ms) commit transaction
7518
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7519
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 18]]
7520
+  (0.1ms) begin transaction
7521
+  (0.1ms) commit transaction
7522
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7523
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 19]]
7524
+  (0.1ms) begin transaction
7525
+  (0.1ms) commit transaction
7526
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7527
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 20]]
7528
+  (0.1ms) begin transaction
7529
+  (0.1ms) commit transaction
7530
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7531
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 21]]
7532
+  (0.1ms) begin transaction
7533
+  (0.1ms) commit transaction
7534
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7535
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 22]]
7536
+  (0.1ms) begin transaction
7537
+  (0.1ms) commit transaction
7538
+ LangText Load (0.6ms) SELECT "lang_texts".* FROM "lang_texts"
7539
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs"
7540
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs"
7541
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs"
7542
+ Lang Load (0.5ms) SELECT "langs".* FROM "langs"
7543
+ Lang Load (0.5ms) SELECT "langs".* FROM "langs"
7544
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7545
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7546
+  (0.1ms) begin transaction
7547
+ SQL (0.3ms) UPDATE "langs" SET "position" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 300], ["updated_at", "2015-08-14 08:59:42.454599"], ["id", 18]]
7548
+  (0.7ms) commit transaction
7549
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7550
+  (0.1ms) begin transaction
7551
+ SQL (0.2ms) UPDATE "langs" SET "position" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 200], ["updated_at", "2015-08-14 08:59:42.462009"], ["id", 19]]
7552
+  (0.6ms) commit transaction
7553
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7554
+  (0.1ms) begin transaction
7555
+ SQL (0.2ms) UPDATE "langs" SET "position" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 400], ["updated_at", "2015-08-14 08:59:42.465312"], ["id", 20]]
7556
+  (0.6ms) commit transaction
7557
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7558
+  (0.0ms) begin transaction
7559
+ SQL (0.2ms) UPDATE "langs" SET "position" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 500], ["updated_at", "2015-08-14 08:59:42.468575"], ["id", 21]]
7560
+  (0.7ms) commit transaction
7561
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7562
+  (0.1ms) begin transaction
7563
+ SQL (0.2ms) UPDATE "langs" SET "position" = ?, "updated_at" = ? WHERE "langs"."id" = ? [["position", 100], ["updated_at", "2015-08-14 08:59:42.472295"], ["id", 22]]
7564
+  (0.9ms) commit transaction
7565
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
7566
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7567
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 18]]
7568
+  (0.0ms) begin transaction
7569
+  (0.0ms) commit transaction
7570
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7571
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 19]]
7572
+  (0.0ms) begin transaction
7573
+  (0.0ms) commit transaction
7574
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7575
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 20]]
7576
+  (0.0ms) begin transaction
7577
+  (0.0ms) commit transaction
7578
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7579
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 21]]
7580
+  (0.1ms) begin transaction
7581
+  (0.0ms) commit transaction
7582
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7583
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 22]]
7584
+  (0.1ms) begin transaction
7585
+  (0.0ms) commit transaction
7586
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7587
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 18]]
7588
+  (0.1ms) begin transaction
7589
+  (0.0ms) commit transaction
7590
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7591
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 19]]
7592
+  (0.0ms) begin transaction
7593
+  (0.0ms) commit transaction
7594
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7595
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 20]]
7596
+  (0.0ms) begin transaction
7597
+  (0.0ms) commit transaction
7598
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7599
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 21]]
7600
+  (0.0ms) begin transaction
7601
+  (0.0ms) commit transaction
7602
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7603
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 22]]
7604
+  (0.0ms) begin transaction
7605
+  (0.0ms) commit transaction
7606
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7607
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 18]]
7608
+  (0.0ms) begin transaction
7609
+  (0.0ms) commit transaction
7610
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7611
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 19]]
7612
+  (0.1ms) begin transaction
7613
+  (0.1ms) commit transaction
7614
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7615
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 20]]
7616
+  (0.0ms) begin transaction
7617
+  (0.0ms) commit transaction
7618
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7619
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 21]]
7620
+  (0.1ms) begin transaction
7621
+  (0.0ms) commit transaction
7622
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7623
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 22]]
7624
+  (0.0ms) begin transaction
7625
+  (0.1ms) commit transaction
7626
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7627
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 18]]
7628
+  (0.1ms) begin transaction
7629
+  (0.0ms) commit transaction
7630
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7631
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 19]]
7632
+  (0.1ms) begin transaction
7633
+  (0.1ms) commit transaction
7634
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7635
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 20]]
7636
+  (0.1ms) begin transaction
7637
+  (0.1ms) commit transaction
7638
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7639
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 21]]
7640
+  (0.1ms) begin transaction
7641
+  (0.1ms) commit transaction
7642
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7643
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 22]]
7644
+  (0.1ms) begin transaction
7645
+  (0.1ms) commit transaction
7646
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7647
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 18]]
7648
+  (0.1ms) begin transaction
7649
+  (0.0ms) commit transaction
7650
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7651
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 19]]
7652
+  (0.1ms) begin transaction
7653
+  (0.0ms) commit transaction
7654
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7655
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 20]]
7656
+  (0.1ms) begin transaction
7657
+  (0.0ms) commit transaction
7658
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7659
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 21]]
7660
+  (0.0ms) begin transaction
7661
+  (0.0ms) commit transaction
7662
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7663
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 22]]
7664
+  (0.1ms) begin transaction
7665
+  (0.0ms) commit transaction
7666
+ Lang Load (2.9ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7667
+ Lang Load (2.3ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7668
+ ActiveRecord::Mlang::LangText Load (10.8ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]
7669
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7670
+ ActiveRecord::Mlang::LangText Load (0.7ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]
7671
+ Lang Load (0.4ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7672
+ ActiveRecord::Mlang::LangText Load (0.3ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]
7673
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7674
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7675
+  (0.4ms) begin transaction
7676
+  (0.1ms) commit transaction
7677
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7678
+  (0.1ms) begin transaction
7679
+  (0.1ms) commit transaction
7680
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7681
+  (0.1ms) begin transaction
7682
+  (0.1ms) commit transaction
7683
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7684
+  (0.1ms) begin transaction
7685
+  (0.1ms) commit transaction
7686
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7687
+  (0.1ms) begin transaction
7688
+  (0.1ms) commit transaction
7689
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
7690
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7691
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7692
+ ActiveRecord::Mlang::LangText Load (0.3ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 18]]
7693
+  (0.1ms) begin transaction
7694
+  (0.1ms) commit transaction
7695
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7696
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7697
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 18]]
7698
+  (0.1ms) begin transaction
7699
+ SQL (0.5ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Englisch"], ["updated_at", "2015-08-14 09:31:33.724182"], ["id", 64]]
7700
+  (1.0ms) commit transaction
7701
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7702
+ ActiveRecord::Mlang::Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7703
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 18]]
7704
+  (0.1ms) begin transaction
7705
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanisch"], ["updated_at", "2015-08-14 09:31:33.731537"], ["id", 69]]
7706
+  (0.9ms) commit transaction
7707
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7708
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7709
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 18]]
7710
+  (0.1ms) begin transaction
7711
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persisch"], ["updated_at", "2015-08-14 09:31:33.737897"], ["id", 74]]
7712
+  (1.3ms) commit transaction
7713
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7714
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7715
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 18]]
7716
+  (0.1ms) begin transaction
7717
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanisch"], ["updated_at", "2015-08-14 09:31:33.744024"], ["id", 79]]
7718
+  (1.0ms) commit transaction
7719
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7720
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7721
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 19]]
7722
+  (0.1ms) begin transaction
7723
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "German"], ["updated_at", "2015-08-14 09:31:33.749998"], ["id", 60]]
7724
+  (1.0ms) commit transaction
7725
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7726
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7727
+ ActiveRecord::Mlang::LangText Load (0.3ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 19]]
7728
+  (0.1ms) begin transaction
7729
+  (0.1ms) commit transaction
7730
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7731
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7732
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 19]]
7733
+  (0.1ms) begin transaction
7734
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Spanish"], ["updated_at", "2015-08-14 09:31:33.761149"], ["id", 70]]
7735
+  (1.0ms) commit transaction
7736
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7737
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7738
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 19]]
7739
+  (0.1ms) begin transaction
7740
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persian"], ["updated_at", "2015-08-14 09:31:33.767754"], ["id", 75]]
7741
+  (1.1ms) commit transaction
7742
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7743
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7744
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 19]]
7745
+  (0.1ms) begin transaction
7746
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japanese"], ["updated_at", "2015-08-14 09:31:33.773560"], ["id", 80]]
7747
+  (1.0ms) commit transaction
7748
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7749
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7750
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 20]]
7751
+  (0.1ms) begin transaction
7752
+ SQL (0.4ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Alemán"], ["updated_at", "2015-08-14 09:31:33.780288"], ["id", 61]]
7753
+  (1.2ms) commit transaction
7754
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7755
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7756
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 20]]
7757
+  (0.1ms) begin transaction
7758
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Inglés"], ["updated_at", "2015-08-14 09:31:33.797936"], ["id", 66]]
7759
+  (0.9ms) commit transaction
7760
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7761
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7762
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 20]]
7763
+  (0.1ms) begin transaction
7764
+  (0.1ms) commit transaction
7765
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7766
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7767
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 20]]
7768
+  (0.1ms) begin transaction
7769
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Persa"], ["updated_at", "2015-08-14 09:31:33.806171"], ["id", 76]]
7770
+  (1.1ms) commit transaction
7771
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7772
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7773
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 20]]
7774
+  (0.1ms) begin transaction
7775
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "Japonés"], ["updated_at", "2015-08-14 09:31:33.811848"], ["id", 81]]
7776
+  (0.9ms) commit transaction
7777
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7778
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7779
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 21]]
7780
+  (0.1ms) begin transaction
7781
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "آلمان"], ["updated_at", "2015-08-14 09:31:33.817241"], ["id", 62]]
7782
+  (0.7ms) commit transaction
7783
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7784
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7785
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 21]]
7786
+  (0.0ms) begin transaction
7787
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "انگلیسی"], ["updated_at", "2015-08-14 09:31:33.822060"], ["id", 67]]
7788
+  (0.9ms) commit transaction
7789
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7790
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7791
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 21]]
7792
+  (0.1ms) begin transaction
7793
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "اسپانیایی"], ["updated_at", "2015-08-14 09:31:33.827192"], ["id", 72]]
7794
+  (0.8ms) commit transaction
7795
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7796
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7797
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 21]]
7798
+  (0.0ms) begin transaction
7799
+  (0.0ms) commit transaction
7800
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7801
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7802
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 21]]
7803
+  (0.0ms) begin transaction
7804
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ژاپن"], ["updated_at", "2015-08-14 09:31:33.834613"], ["id", 82]]
7805
+  (0.9ms) commit transaction
7806
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7807
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7808
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 22]]
7809
+  (0.1ms) begin transaction
7810
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ドイツ語"], ["updated_at", "2015-08-14 09:31:33.840565"], ["id", 63]]
7811
+  (0.9ms) commit transaction
7812
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7813
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7814
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 22]]
7815
+  (0.1ms) begin transaction
7816
+ SQL (0.3ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "英語"], ["updated_at", "2015-08-14 09:31:33.845747"], ["id", 68]]
7817
+  (0.8ms) commit transaction
7818
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7819
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7820
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 22]]
7821
+  (0.0ms) begin transaction
7822
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "スペイン語"], ["updated_at", "2015-08-14 09:31:33.850921"], ["id", 73]]
7823
+  (0.9ms) commit transaction
7824
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7825
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7826
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 22]]
7827
+  (0.1ms) begin transaction
7828
+ SQL (0.2ms) UPDATE "lang_texts" SET "label" = ?, "updated_at" = ? WHERE "lang_texts"."id" = ? [["label", "ペルシア語"], ["updated_at", "2015-08-14 09:31:33.856006"], ["id", 78]]
7829
+  (1.3ms) commit transaction
7830
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7831
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7832
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 22]]
7833
+  (0.1ms) begin transaction
7834
+  (0.0ms) commit transaction
7835
+ Lang Load (0.8ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7836
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]
7837
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7838
+ ActiveRecord::Mlang::LangText Load (0.3ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]
7839
+ Lang Load (0.5ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7840
+ ActiveRecord::Mlang::LangText Load (0.3ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]
7841
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" DESC LIMIT 1
7842
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]
7843
+ Lang Load (0.8ms) SELECT "langs".* FROM "langs" ORDER BY "langs"."id" ASC LIMIT 1
7844
+ ActiveRecord::Mlang::LangText Load (1.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 18]]
7845
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
7846
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
7847
+ Lang Load (0.6ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7848
+  (0.1ms) begin transaction
7849
+  (0.1ms) commit transaction
7850
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7851
+  (0.1ms) begin transaction
7852
+  (0.1ms) commit transaction
7853
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7854
+  (0.1ms) begin transaction
7855
+  (0.0ms) commit transaction
7856
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7857
+  (0.1ms) begin transaction
7858
+  (0.0ms) commit transaction
7859
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7860
+  (0.1ms) begin transaction
7861
+  (0.0ms) commit transaction
7862
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs"
7863
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7864
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7865
+ ActiveRecord::Mlang::LangText Load (1.0ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 18]]
7866
+  (0.1ms) begin transaction
7867
+  (0.0ms) commit transaction
7868
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7869
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7870
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 18]]
7871
+  (0.1ms) begin transaction
7872
+  (0.1ms) commit transaction
7873
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7874
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7875
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 18]]
7876
+  (0.1ms) begin transaction
7877
+  (0.1ms) commit transaction
7878
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7879
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7880
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 18]]
7881
+  (0.1ms) begin transaction
7882
+  (0.1ms) commit transaction
7883
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7884
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7885
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 18]]
7886
+  (0.1ms) begin transaction
7887
+  (0.1ms) commit transaction
7888
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7889
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7890
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 19]]
7891
+  (0.1ms) begin transaction
7892
+  (0.1ms) commit transaction
7893
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7894
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7895
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 19]]
7896
+  (0.1ms) begin transaction
7897
+  (0.1ms) commit transaction
7898
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7899
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7900
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 19]]
7901
+  (0.1ms) begin transaction
7902
+  (0.1ms) commit transaction
7903
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7904
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7905
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 19]]
7906
+  (0.1ms) begin transaction
7907
+  (0.1ms) commit transaction
7908
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7909
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7910
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 19]]
7911
+  (0.1ms) begin transaction
7912
+  (0.1ms) commit transaction
7913
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7914
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7915
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 20]]
7916
+  (0.1ms) begin transaction
7917
+  (0.1ms) commit transaction
7918
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7919
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7920
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 20]]
7921
+  (0.1ms) begin transaction
7922
+  (0.1ms) commit transaction
7923
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7924
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7925
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 20]]
7926
+  (0.1ms) begin transaction
7927
+  (0.1ms) commit transaction
7928
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7929
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7930
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 20]]
7931
+  (0.1ms) begin transaction
7932
+  (0.1ms) commit transaction
7933
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7934
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7935
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 20]]
7936
+  (0.1ms) begin transaction
7937
+  (0.1ms) commit transaction
7938
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7939
+ ActiveRecord::Mlang::Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7940
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 21]]
7941
+  (0.1ms) begin transaction
7942
+  (0.1ms) commit transaction
7943
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7944
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7945
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 21]]
7946
+  (0.1ms) begin transaction
7947
+  (0.1ms) commit transaction
7948
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7949
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7950
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 21]]
7951
+  (0.1ms) begin transaction
7952
+  (0.1ms) commit transaction
7953
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7954
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7955
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 21]]
7956
+  (0.1ms) begin transaction
7957
+  (0.1ms) commit transaction
7958
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7959
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7960
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 21]]
7961
+  (0.1ms) begin transaction
7962
+  (0.1ms) commit transaction
7963
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "de"]]
7964
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7965
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 18], ["lang_id", 22]]
7966
+  (0.1ms) begin transaction
7967
+  (0.1ms) commit transaction
7968
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "en"]]
7969
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7970
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 19], ["lang_id", 22]]
7971
+  (0.1ms) begin transaction
7972
+  (0.1ms) commit transaction
7973
+ Lang Load (0.2ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "es"]]
7974
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7975
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 20], ["lang_id", 22]]
7976
+  (0.1ms) begin transaction
7977
+  (0.1ms) commit transaction
7978
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "fa"]]
7979
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7980
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 21], ["lang_id", 22]]
7981
+  (0.1ms) begin transaction
7982
+  (0.0ms) commit transaction
7983
+ Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7984
+ ActiveRecord::Mlang::Lang Load (0.1ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7985
+ ActiveRecord::Mlang::LangText Load (0.1ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? AND "lang_texts"."lang_id" = ? LIMIT 1 [["parent_id", 22], ["lang_id", 22]]
7986
+  (0.1ms) begin transaction
7987
+  (0.0ms) commit transaction
7988
+  (0.1ms) SELECT COUNT(*) FROM "langs"
7989
+ LangText Load (0.4ms) SELECT "lang_texts".* FROM "lang_texts"
7990
+ LangText Load (0.5ms) SELECT "lang_texts".* FROM "lang_texts"
7991
+ Lang Load (0.3ms) SELECT "langs".* FROM "langs" WHERE "langs"."code" = ? LIMIT 1 [["code", "ja"]]
7992
+ ActiveRecord::Mlang::LangText Load (0.2ms) SELECT "lang_texts".* FROM "lang_texts" WHERE "lang_texts"."parent_id" = ? [["parent_id", 22]]