translatable_records 1.0.7 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1333,3 +1333,2147 @@ RecrodsTest: test_should_edit_associated_translation
1333
1333
  SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", Mon, 03 Mar 2014 18:12:49 UTC +00:00]]
1334
1334
   (0.0ms) RELEASE SAVEPOINT active_record_1
1335
1335
   (0.1ms) rollback transaction
1336
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1337
+  (0.2ms) select sqlite_version(*)
1338
+  (0.2ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1339
+  (0.1ms) SELECT sql
1340
+ FROM sqlite_master
1341
+ WHERE name='index_model_translations_on_locale' AND type='index'
1342
+ UNION ALL
1343
+ SELECT sql
1344
+ FROM sqlite_temp_master
1345
+ WHERE name='index_model_translations_on_locale' AND type='index'
1346
+
1347
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1348
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1349
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1350
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1351
+  (0.0ms) SELECT version FROM "schema_migrations"
1352
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1353
+  (0.1ms) begin transaction
1354
+ ---------------------------------------------
1355
+ I18nGeneratorTest: test_should_generate_files
1356
+ ---------------------------------------------
1357
+  (0.1ms) rollback transaction
1358
+  (0.0ms) begin transaction
1359
+ ---------------------------------------
1360
+ RecrodsTest: test_should_change_locales
1361
+ ---------------------------------------
1362
+  (0.1ms) SAVEPOINT active_record_1
1363
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1364
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:41:42.825816"], ["updated_at", "2014-06-08 20:41:42.825816"]]
1365
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:41:42.828714"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:41:42.828714"]]
1366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1367
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1368
+  (0.0ms) SAVEPOINT active_record_1
1369
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1370
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1371
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1372
+  (0.1ms) rollback transaction
1373
+  (0.0ms) begin transaction
1374
+ ------------------------------------------------------
1375
+ RecrodsTest: test_should_create_associated_translation
1376
+ ------------------------------------------------------
1377
+  (0.1ms) SAVEPOINT active_record_1
1378
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1379
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:41:42.837522"], ["updated_at", "2014-06-08 20:41:42.837522"]]
1380
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:41:42.838536"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:41:42.838536"]]
1381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1382
+  (0.0ms) rollback transaction
1383
+  (0.0ms) begin transaction
1384
+ ------------------------------------------------------
1385
+ RecrodsTest: test_should_delete_associated_translation
1386
+ ------------------------------------------------------
1387
+  (0.0ms) SAVEPOINT active_record_1
1388
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1389
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:41:42.841247"], ["updated_at", "2014-06-08 20:41:42.841247"]]
1390
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:41:42.841806"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:41:42.841806"]]
1391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1392
+  (0.0ms) SAVEPOINT active_record_1
1393
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1394
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1396
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1397
+  (0.0ms) rollback transaction
1398
+  (0.0ms) begin transaction
1399
+ ----------------------------------------------------
1400
+ RecrodsTest: test_should_edit_associated_translation
1401
+ ----------------------------------------------------
1402
+  (0.0ms) SAVEPOINT active_record_1
1403
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1404
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:41:42.845613"], ["updated_at", "2014-06-08 20:41:42.845613"]]
1405
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:41:42.846206"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:41:42.846206"]]
1406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1407
+  (0.0ms) SAVEPOINT active_record_1
1408
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1409
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 20:41:42.848258"]]
1410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1411
+  (0.0ms) rollback transaction
1412
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1413
+  (0.1ms) select sqlite_version(*)
1414
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1415
+  (0.1ms) SELECT sql
1416
+ FROM sqlite_master
1417
+ WHERE name='index_model_translations_on_locale' AND type='index'
1418
+ UNION ALL
1419
+ SELECT sql
1420
+ FROM sqlite_temp_master
1421
+ WHERE name='index_model_translations_on_locale' AND type='index'
1422
+
1423
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1424
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1425
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1426
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1427
+  (0.1ms) SELECT version FROM "schema_migrations"
1428
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1429
+  (0.1ms) begin transaction
1430
+ ---------------------------------------------
1431
+ I18nGeneratorTest: test_should_generate_files
1432
+ ---------------------------------------------
1433
+  (0.1ms) rollback transaction
1434
+  (0.0ms) begin transaction
1435
+ ---------------------------------------
1436
+ RecrodsTest: test_should_change_locales
1437
+ ---------------------------------------
1438
+  (0.1ms) SAVEPOINT active_record_1
1439
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1440
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:43:49.115864"], ["updated_at", "2014-06-08 20:43:49.115864"]]
1441
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:43:49.118968"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:43:49.118968"]]
1442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1443
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1444
+  (0.1ms) SAVEPOINT active_record_1
1445
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1446
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1447
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1448
+  (0.1ms) rollback transaction
1449
+  (0.0ms) begin transaction
1450
+ ------------------------------------------------------
1451
+ RecrodsTest: test_should_create_associated_translation
1452
+ ------------------------------------------------------
1453
+  (0.0ms) SAVEPOINT active_record_1
1454
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1455
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:43:49.127272"], ["updated_at", "2014-06-08 20:43:49.127272"]]
1456
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:43:49.127999"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:43:49.127999"]]
1457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1458
+  (0.0ms) rollback transaction
1459
+  (0.0ms) begin transaction
1460
+ ------------------------------------------------------
1461
+ RecrodsTest: test_should_delete_associated_translation
1462
+ ------------------------------------------------------
1463
+  (0.0ms) SAVEPOINT active_record_1
1464
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1465
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:43:49.130566"], ["updated_at", "2014-06-08 20:43:49.130566"]]
1466
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:43:49.131172"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:43:49.131172"]]
1467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1468
+  (0.0ms) SAVEPOINT active_record_1
1469
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1470
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1472
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1473
+  (0.0ms) rollback transaction
1474
+  (0.0ms) begin transaction
1475
+ ----------------------------------------------------
1476
+ RecrodsTest: test_should_edit_associated_translation
1477
+ ----------------------------------------------------
1478
+  (0.0ms) SAVEPOINT active_record_1
1479
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1480
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:43:49.135235"], ["updated_at", "2014-06-08 20:43:49.135235"]]
1481
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:43:49.135855"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:43:49.135855"]]
1482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1483
+  (0.0ms) SAVEPOINT active_record_1
1484
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1485
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 20:43:49.138037"]]
1486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1487
+  (0.1ms) rollback transaction
1488
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1489
+  (0.1ms) select sqlite_version(*)
1490
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1491
+  (0.1ms) SELECT sql
1492
+ FROM sqlite_master
1493
+ WHERE name='index_model_translations_on_locale' AND type='index'
1494
+ UNION ALL
1495
+ SELECT sql
1496
+ FROM sqlite_temp_master
1497
+ WHERE name='index_model_translations_on_locale' AND type='index'
1498
+
1499
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1500
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1501
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1502
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1503
+  (0.1ms) SELECT version FROM "schema_migrations"
1504
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1505
+  (0.1ms) begin transaction
1506
+ ---------------------------------------
1507
+ RecrodsTest: test_should_change_locales
1508
+ ---------------------------------------
1509
+  (0.1ms) SAVEPOINT active_record_1
1510
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1511
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:45:51.768468"], ["updated_at", "2014-06-08 20:45:51.768468"]]
1512
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:45:51.771388"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:45:51.771388"]]
1513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1514
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1515
+  (0.0ms) SAVEPOINT active_record_1
1516
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1517
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1518
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1519
+  (0.1ms) rollback transaction
1520
+  (0.1ms) begin transaction
1521
+ ------------------------------------------------------
1522
+ RecrodsTest: test_should_create_associated_translation
1523
+ ------------------------------------------------------
1524
+  (0.0ms) SAVEPOINT active_record_1
1525
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1526
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:45:51.779470"], ["updated_at", "2014-06-08 20:45:51.779470"]]
1527
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:45:51.780153"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:45:51.780153"]]
1528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1529
+  (0.0ms) rollback transaction
1530
+  (0.1ms) begin transaction
1531
+ ------------------------------------------------------
1532
+ RecrodsTest: test_should_delete_associated_translation
1533
+ ------------------------------------------------------
1534
+  (0.0ms) SAVEPOINT active_record_1
1535
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1536
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:45:51.782750"], ["updated_at", "2014-06-08 20:45:51.782750"]]
1537
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:45:51.783332"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:45:51.783332"]]
1538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1539
+  (0.0ms) SAVEPOINT active_record_1
1540
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1541
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1543
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1544
+  (0.0ms) rollback transaction
1545
+  (0.0ms) begin transaction
1546
+ ----------------------------------------------------
1547
+ RecrodsTest: test_should_edit_associated_translation
1548
+ ----------------------------------------------------
1549
+  (0.0ms) SAVEPOINT active_record_1
1550
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1551
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:45:51.787552"], ["updated_at", "2014-06-08 20:45:51.787552"]]
1552
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:45:51.788155"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:45:51.788155"]]
1553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1554
+  (0.0ms) SAVEPOINT active_record_1
1555
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1556
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 20:45:51.790207"]]
1557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1558
+  (0.1ms) rollback transaction
1559
+  (0.0ms) begin transaction
1560
+ ---------------------------------------------
1561
+ I18nGeneratorTest: test_should_generate_files
1562
+ ---------------------------------------------
1563
+  (0.1ms) rollback transaction
1564
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1565
+  (0.1ms) select sqlite_version(*)
1566
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1567
+  (0.1ms) SELECT sql
1568
+ FROM sqlite_master
1569
+ WHERE name='index_model_translations_on_locale' AND type='index'
1570
+ UNION ALL
1571
+ SELECT sql
1572
+ FROM sqlite_temp_master
1573
+ WHERE name='index_model_translations_on_locale' AND type='index'
1574
+
1575
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1576
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1577
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1578
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1579
+  (0.0ms) SELECT version FROM "schema_migrations"
1580
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1581
+  (0.1ms) begin transaction
1582
+ ---------------------------------------------
1583
+ I18nGeneratorTest: test_should_generate_files
1584
+ ---------------------------------------------
1585
+  (0.1ms) rollback transaction
1586
+  (0.0ms) begin transaction
1587
+ ---------------------------------------
1588
+ RecrodsTest: test_should_change_locales
1589
+ ---------------------------------------
1590
+  (0.1ms) SAVEPOINT active_record_1
1591
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1592
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:46:22.251791"], ["updated_at", "2014-06-08 20:46:22.251791"]]
1593
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:46:22.254905"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:46:22.254905"]]
1594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1595
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1596
+  (0.1ms) SAVEPOINT active_record_1
1597
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1598
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1599
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1600
+  (0.1ms) rollback transaction
1601
+  (0.1ms) begin transaction
1602
+ ------------------------------------------------------
1603
+ RecrodsTest: test_should_create_associated_translation
1604
+ ------------------------------------------------------
1605
+  (0.0ms) SAVEPOINT active_record_1
1606
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1607
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:46:22.263200"], ["updated_at", "2014-06-08 20:46:22.263200"]]
1608
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:46:22.263912"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:46:22.263912"]]
1609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1610
+  (0.1ms) rollback transaction
1611
+  (0.0ms) begin transaction
1612
+ ------------------------------------------------------
1613
+ RecrodsTest: test_should_delete_associated_translation
1614
+ ------------------------------------------------------
1615
+  (0.0ms) SAVEPOINT active_record_1
1616
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1617
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:46:22.266507"], ["updated_at", "2014-06-08 20:46:22.266507"]]
1618
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:46:22.267079"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:46:22.267079"]]
1619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1620
+  (0.0ms) SAVEPOINT active_record_1
1621
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1622
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1624
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1625
+  (0.1ms) rollback transaction
1626
+  (0.1ms) begin transaction
1627
+ ----------------------------------------------------
1628
+ RecrodsTest: test_should_edit_associated_translation
1629
+ ----------------------------------------------------
1630
+  (0.0ms) SAVEPOINT active_record_1
1631
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1632
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 20:46:22.271552"], ["updated_at", "2014-06-08 20:46:22.271552"]]
1633
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 20:46:22.272252"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 20:46:22.272252"]]
1634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1635
+  (0.0ms) SAVEPOINT active_record_1
1636
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1637
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 20:46:22.274377"]]
1638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1639
+  (0.0ms) rollback transaction
1640
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1641
+  (0.2ms) select sqlite_version(*)
1642
+  (0.2ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1643
+  (0.1ms) SELECT sql
1644
+ FROM sqlite_master
1645
+ WHERE name='index_model_translations_on_locale' AND type='index'
1646
+ UNION ALL
1647
+ SELECT sql
1648
+ FROM sqlite_temp_master
1649
+ WHERE name='index_model_translations_on_locale' AND type='index'
1650
+
1651
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1652
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1653
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1654
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1655
+  (0.0ms) SELECT version FROM "schema_migrations"
1656
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1657
+  (0.1ms) begin transaction
1658
+ ---------------------------------------
1659
+ RecrodsTest: test_should_change_locales
1660
+ ---------------------------------------
1661
+  (0.1ms) SAVEPOINT active_record_1
1662
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1663
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:25:23.307782"], ["updated_at", "2014-06-08 21:25:23.307782"]]
1664
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:25:23.311420"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:25:23.311420"]]
1665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1666
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1667
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1668
+  (0.0ms) SAVEPOINT active_record_1
1669
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1670
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1671
+  (0.1ms) rollback transaction
1672
+  (0.0ms) begin transaction
1673
+ ------------------------------------------------------
1674
+ RecrodsTest: test_should_create_associated_translation
1675
+ ------------------------------------------------------
1676
+  (0.0ms) SAVEPOINT active_record_1
1677
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1678
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:25:23.319911"], ["updated_at", "2014-06-08 21:25:23.319911"]]
1679
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:25:23.320618"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:25:23.320618"]]
1680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1681
+  (0.0ms) rollback transaction
1682
+  (0.0ms) begin transaction
1683
+ ------------------------------------------------------
1684
+ RecrodsTest: test_should_delete_associated_translation
1685
+ ------------------------------------------------------
1686
+  (0.0ms) SAVEPOINT active_record_1
1687
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1688
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:25:23.323217"], ["updated_at", "2014-06-08 21:25:23.323217"]]
1689
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:25:23.323874"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:25:23.323874"]]
1690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1691
+  (0.0ms) SAVEPOINT active_record_1
1692
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1693
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1695
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1696
+  (0.1ms) rollback transaction
1697
+  (0.0ms) begin transaction
1698
+ ----------------------------------------------------
1699
+ RecrodsTest: test_should_edit_associated_translation
1700
+ ----------------------------------------------------
1701
+  (0.0ms) SAVEPOINT active_record_1
1702
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1703
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:25:23.328589"], ["updated_at", "2014-06-08 21:25:23.328589"]]
1704
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:25:23.329276"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:25:23.329276"]]
1705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1706
+  (0.0ms) SAVEPOINT active_record_1
1707
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1708
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 21:25:23.331326"]]
1709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1710
+  (0.0ms) rollback transaction
1711
+  (0.0ms) begin transaction
1712
+ ---------------------------------------------
1713
+ I18nGeneratorTest: test_should_generate_files
1714
+ ---------------------------------------------
1715
+  (0.1ms) rollback transaction
1716
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1717
+  (0.1ms) select sqlite_version(*)
1718
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1719
+  (0.1ms) SELECT sql
1720
+ FROM sqlite_master
1721
+ WHERE name='index_model_translations_on_locale' AND type='index'
1722
+ UNION ALL
1723
+ SELECT sql
1724
+ FROM sqlite_temp_master
1725
+ WHERE name='index_model_translations_on_locale' AND type='index'
1726
+
1727
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1728
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1729
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1730
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1731
+  (0.1ms) SELECT version FROM "schema_migrations"
1732
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1733
+  (0.1ms) begin transaction
1734
+ ---------------------------------------
1735
+ RecrodsTest: test_should_change_locales
1736
+ ---------------------------------------
1737
+  (0.1ms) SAVEPOINT active_record_1
1738
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1739
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:30:32.580317"], ["updated_at", "2014-06-08 21:30:32.580317"]]
1740
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:30:32.583351"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:30:32.583351"]]
1741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1742
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1743
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1744
+  (0.1ms) SAVEPOINT active_record_1
1745
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1746
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1747
+  (0.1ms) rollback transaction
1748
+  (0.0ms) begin transaction
1749
+ ------------------------------------------------------
1750
+ RecrodsTest: test_should_create_associated_translation
1751
+ ------------------------------------------------------
1752
+  (0.0ms) SAVEPOINT active_record_1
1753
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1754
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:30:32.591279"], ["updated_at", "2014-06-08 21:30:32.591279"]]
1755
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:30:32.591883"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:30:32.591883"]]
1756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1757
+  (0.0ms) rollback transaction
1758
+  (0.0ms) begin transaction
1759
+ ------------------------------------------------------
1760
+ RecrodsTest: test_should_delete_associated_translation
1761
+ ------------------------------------------------------
1762
+  (0.0ms) SAVEPOINT active_record_1
1763
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1764
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:30:32.594428"], ["updated_at", "2014-06-08 21:30:32.594428"]]
1765
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:30:32.594979"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:30:32.594979"]]
1766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1767
+  (0.0ms) SAVEPOINT active_record_1
1768
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1769
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1771
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1772
+  (0.0ms) rollback transaction
1773
+  (0.0ms) begin transaction
1774
+ ----------------------------------------------------
1775
+ RecrodsTest: test_should_edit_associated_translation
1776
+ ----------------------------------------------------
1777
+  (0.0ms) SAVEPOINT active_record_1
1778
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1779
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:30:32.598802"], ["updated_at", "2014-06-08 21:30:32.598802"]]
1780
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:30:32.599348"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:30:32.599348"]]
1781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1782
+  (0.0ms) SAVEPOINT active_record_1
1783
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1784
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 21:30:32.601261"]]
1785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1786
+  (0.0ms) rollback transaction
1787
+  (0.0ms) begin transaction
1788
+ ---------------------------------------------
1789
+ I18nGeneratorTest: test_should_generate_files
1790
+ ---------------------------------------------
1791
+  (0.1ms) rollback transaction
1792
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1793
+  (0.1ms) select sqlite_version(*)
1794
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1795
+  (0.1ms) SELECT sql
1796
+ FROM sqlite_master
1797
+ WHERE name='index_model_translations_on_locale' AND type='index'
1798
+ UNION ALL
1799
+ SELECT sql
1800
+ FROM sqlite_temp_master
1801
+ WHERE name='index_model_translations_on_locale' AND type='index'
1802
+
1803
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1804
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1805
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1806
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1807
+  (0.1ms) SELECT version FROM "schema_migrations"
1808
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1809
+  (0.1ms) begin transaction
1810
+ ---------------------------------------------
1811
+ I18nGeneratorTest: test_should_generate_files
1812
+ ---------------------------------------------
1813
+  (0.1ms) rollback transaction
1814
+  (0.0ms) begin transaction
1815
+ ---------------------------------------
1816
+ RecrodsTest: test_should_change_locales
1817
+ ---------------------------------------
1818
+  (0.1ms) SAVEPOINT active_record_1
1819
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1820
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:31:27.920762"], ["updated_at", "2014-06-08 21:31:27.920762"]]
1821
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:31:27.923677"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:31:27.923677"]]
1822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1823
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1824
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1825
+  (0.0ms) SAVEPOINT active_record_1
1826
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1827
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1828
+  (0.0ms) rollback transaction
1829
+  (0.0ms) begin transaction
1830
+ ------------------------------------------------------
1831
+ RecrodsTest: test_should_create_associated_translation
1832
+ ------------------------------------------------------
1833
+  (0.0ms) SAVEPOINT active_record_1
1834
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1835
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:31:27.932485"], ["updated_at", "2014-06-08 21:31:27.932485"]]
1836
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:31:27.933143"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:31:27.933143"]]
1837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1838
+  (0.0ms) rollback transaction
1839
+  (0.0ms) begin transaction
1840
+ ------------------------------------------------------
1841
+ RecrodsTest: test_should_delete_associated_translation
1842
+ ------------------------------------------------------
1843
+  (0.0ms) SAVEPOINT active_record_1
1844
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1845
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:31:27.935804"], ["updated_at", "2014-06-08 21:31:27.935804"]]
1846
+ SQL (0.0ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:31:27.936438"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:31:27.936438"]]
1847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1848
+  (0.0ms) SAVEPOINT active_record_1
1849
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1850
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1852
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1853
+  (0.0ms) rollback transaction
1854
+  (0.0ms) begin transaction
1855
+ ----------------------------------------------------
1856
+ RecrodsTest: test_should_edit_associated_translation
1857
+ ----------------------------------------------------
1858
+  (0.0ms) SAVEPOINT active_record_1
1859
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1860
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:31:27.940725"], ["updated_at", "2014-06-08 21:31:27.940725"]]
1861
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:31:27.941424"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:31:27.941424"]]
1862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1863
+  (0.0ms) SAVEPOINT active_record_1
1864
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1865
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 21:31:27.943632"]]
1866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1867
+  (0.1ms) rollback transaction
1868
+  (0.4ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1869
+  (0.1ms) select sqlite_version(*)
1870
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1871
+  (0.1ms) SELECT sql
1872
+ FROM sqlite_master
1873
+ WHERE name='index_model_translations_on_locale' AND type='index'
1874
+ UNION ALL
1875
+ SELECT sql
1876
+ FROM sqlite_temp_master
1877
+ WHERE name='index_model_translations_on_locale' AND type='index'
1878
+
1879
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1880
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1881
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1882
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1883
+  (0.0ms) SELECT version FROM "schema_migrations"
1884
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1885
+  (0.1ms) begin transaction
1886
+ ---------------------------------------
1887
+ RecrodsTest: test_should_change_locales
1888
+ ---------------------------------------
1889
+  (0.0ms) SAVEPOINT active_record_1
1890
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1891
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:32:24.056164"], ["updated_at", "2014-06-08 21:32:24.056164"]]
1892
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:32:24.058972"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:32:24.058972"]]
1893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1894
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1895
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1896
+  (0.1ms) select sqlite_version(*)
1897
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1898
+  (0.1ms) SELECT sql
1899
+ FROM sqlite_master
1900
+ WHERE name='index_model_translations_on_locale' AND type='index'
1901
+ UNION ALL
1902
+ SELECT sql
1903
+ FROM sqlite_temp_master
1904
+ WHERE name='index_model_translations_on_locale' AND type='index'
1905
+
1906
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1907
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1908
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1909
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1910
+  (0.0ms) SELECT version FROM "schema_migrations"
1911
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1912
+  (0.1ms) begin transaction
1913
+ ---------------------------------------------
1914
+ I18nGeneratorTest: test_should_generate_files
1915
+ ---------------------------------------------
1916
+  (0.1ms) rollback transaction
1917
+  (0.0ms) begin transaction
1918
+ ---------------------------------------
1919
+ RecrodsTest: test_should_change_locales
1920
+ ---------------------------------------
1921
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1922
+  (0.1ms) select sqlite_version(*)
1923
+  (0.2ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
1924
+  (0.1ms) SELECT sql
1925
+ FROM sqlite_master
1926
+ WHERE name='index_model_translations_on_locale' AND type='index'
1927
+ UNION ALL
1928
+ SELECT sql
1929
+ FROM sqlite_temp_master
1930
+ WHERE name='index_model_translations_on_locale' AND type='index'
1931
+
1932
+  (0.2ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
1933
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1934
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1935
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1936
+  (0.0ms) SELECT version FROM "schema_migrations"
1937
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
1938
+  (0.1ms) begin transaction
1939
+ ---------------------------------------------
1940
+ I18nGeneratorTest: test_should_generate_files
1941
+ ---------------------------------------------
1942
+  (0.1ms) rollback transaction
1943
+  (0.1ms) begin transaction
1944
+ ---------------------------------------
1945
+ RecrodsTest: test_should_change_locales
1946
+ ---------------------------------------
1947
+  (0.1ms) SAVEPOINT active_record_1
1948
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1949
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:37:01.257215"], ["updated_at", "2014-06-08 21:37:01.257215"]]
1950
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:37:01.260198"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:37:01.260198"]]
1951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1952
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1953
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
1954
+  (0.1ms) SAVEPOINT active_record_1
1955
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
1956
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:37:01.265283"], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", "2014-06-08 21:37:01.265283"]]
1957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1958
+  (0.1ms) rollback transaction
1959
+  (0.0ms) begin transaction
1960
+ ------------------------------------------------------
1961
+ RecrodsTest: test_should_create_associated_translation
1962
+ ------------------------------------------------------
1963
+  (0.0ms) SAVEPOINT active_record_1
1964
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1965
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:37:01.268233"], ["updated_at", "2014-06-08 21:37:01.268233"]]
1966
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:37:01.268816"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:37:01.268816"]]
1967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1968
+  (0.0ms) rollback transaction
1969
+  (0.0ms) begin transaction
1970
+ ------------------------------------------------------
1971
+ RecrodsTest: test_should_delete_associated_translation
1972
+ ------------------------------------------------------
1973
+  (0.0ms) SAVEPOINT active_record_1
1974
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1975
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:37:01.271292"], ["updated_at", "2014-06-08 21:37:01.271292"]]
1976
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:37:01.271840"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:37:01.271840"]]
1977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1978
+  (0.0ms) SAVEPOINT active_record_1
1979
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
1980
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
1981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1982
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
1983
+  (0.0ms) rollback transaction
1984
+  (0.1ms) begin transaction
1985
+ ----------------------------------------------------
1986
+ RecrodsTest: test_should_edit_associated_translation
1987
+ ----------------------------------------------------
1988
+  (0.0ms) SAVEPOINT active_record_1
1989
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
1990
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-08 21:37:01.275760"], ["updated_at", "2014-06-08 21:37:01.275760"]]
1991
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 21:37:01.276382"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-08 21:37:01.276382"]]
1992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1993
+  (0.0ms) SAVEPOINT active_record_1
1994
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
1995
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-08 21:37:01.278426"]]
1996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1997
+  (0.0ms) rollback transaction
1998
+  (0.1ms) select sqlite_version(*)
1999
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2000
+  (0.0ms) PRAGMA index_list("model_translations")
2001
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2002
+  (0.0ms) PRAGMA index_list("model_translations")
2003
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2004
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2005
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2006
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2007
+  (0.0ms) PRAGMA index_list("schema_migrations")
2008
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2009
+  (0.0ms) SELECT version FROM "schema_migrations"
2010
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2011
+ WARNING: Can't mass-assign protected attributes: name
2012
+  (0.0ms) SAVEPOINT active_record_1
2013
+ SQL (3.3ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:10:54 UTC], ["name", nil], ["updated_at", 2014-06-08 22:10:54 UTC]]
2014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2015
+ WARNING: Can't mass-assign protected attributes: name
2016
+  (0.0ms) SAVEPOINT active_record_1
2017
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:10:54 UTC], ["name", nil], ["updated_at", 2014-06-08 22:10:54 UTC]]
2018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2019
+ WARNING: Can't mass-assign protected attributes: name
2020
+  (0.0ms) SAVEPOINT active_record_1
2021
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:10:54 UTC], ["name", nil], ["updated_at", 2014-06-08 22:10:54 UTC]]
2022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2023
+  (0.0ms) SAVEPOINT active_record_1
2024
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2025
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2027
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2028
+ WARNING: Can't mass-assign protected attributes: name
2029
+  (0.0ms) SAVEPOINT active_record_1
2030
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:10:54 UTC], ["name", nil], ["updated_at", 2014-06-08 22:10:54 UTC]]
2031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2032
+  (0.2ms) select sqlite_version(*)
2033
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2034
+  (0.0ms) PRAGMA index_list("model_translations")
2035
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2036
+  (0.0ms) PRAGMA index_list("model_translations")
2037
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2038
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2039
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2040
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2041
+  (0.0ms) PRAGMA index_list("schema_migrations")
2042
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2043
+  (0.0ms) SELECT version FROM "schema_migrations"
2044
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2045
+ WARNING: Can't mass-assign protected attributes: name
2046
+  (0.0ms) SAVEPOINT active_record_1
2047
+ SQL (2.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:18 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:18 UTC]]
2048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2049
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2050
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2051
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2052
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2053
+  (0.0ms) SAVEPOINT active_record_1
2054
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2055
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:12:18 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:12:18 UTC]]
2056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2057
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2058
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2059
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2060
+ WARNING: Can't mass-assign protected attributes: name
2061
+  (0.0ms) SAVEPOINT active_record_1
2062
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:18 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:18 UTC]]
2063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2064
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2065
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2066
+ WARNING: Can't mass-assign protected attributes: name
2067
+  (0.0ms) SAVEPOINT active_record_1
2068
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:18 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:18 UTC]]
2069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2070
+  (0.0ms) SAVEPOINT active_record_1
2071
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2072
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2074
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2075
+ WARNING: Can't mass-assign protected attributes: name
2076
+  (0.0ms) SAVEPOINT active_record_1
2077
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:18 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:18 UTC]]
2078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2079
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2080
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2081
+  (0.0ms) SAVEPOINT active_record_1
2082
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2083
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:12:18 UTC], ["locale", "en"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:12:18 UTC]]
2084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2085
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2086
+  (0.2ms) select sqlite_version(*)
2087
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2088
+  (0.0ms) PRAGMA index_list("model_translations")
2089
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2090
+  (0.0ms) PRAGMA index_list("model_translations")
2091
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2092
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2093
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2094
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2095
+  (0.0ms) PRAGMA index_list("schema_migrations")
2096
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2097
+  (0.0ms) SELECT version FROM "schema_migrations"
2098
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2099
+ WARNING: Can't mass-assign protected attributes: name
2100
+  (0.0ms) SAVEPOINT active_record_1
2101
+ SQL (2.2ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:30 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:30 UTC]]
2102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2103
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2104
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2105
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2106
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2107
+  (0.0ms) SAVEPOINT active_record_1
2108
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2109
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:12:30 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:12:30 UTC]]
2110
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2111
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2112
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2113
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2114
+ WARNING: Can't mass-assign protected attributes: name
2115
+  (0.0ms) SAVEPOINT active_record_1
2116
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:30 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:30 UTC]]
2117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2118
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2119
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2120
+ WARNING: Can't mass-assign protected attributes: name
2121
+  (0.0ms) SAVEPOINT active_record_1
2122
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:30 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:30 UTC]]
2123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2124
+  (0.0ms) SAVEPOINT active_record_1
2125
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2126
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2128
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2129
+ WARNING: Can't mass-assign protected attributes: name
2130
+  (0.0ms) SAVEPOINT active_record_1
2131
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:12:30 UTC], ["name", nil], ["updated_at", 2014-06-08 22:12:30 UTC]]
2132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2133
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2134
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2135
+  (0.0ms) SAVEPOINT active_record_1
2136
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2137
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:12:30 UTC], ["locale", "en"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:12:30 UTC]]
2138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2139
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2140
+  (0.2ms) select sqlite_version(*)
2141
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2142
+  (0.0ms) PRAGMA index_list("model_translations")
2143
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2144
+  (0.0ms) PRAGMA index_list("model_translations")
2145
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2146
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2147
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2148
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2149
+  (0.0ms) PRAGMA index_list("schema_migrations")
2150
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2151
+  (0.0ms) SELECT version FROM "schema_migrations"
2152
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2153
+ WARNING: Can't mass-assign protected attributes: name
2154
+  (0.0ms) SAVEPOINT active_record_1
2155
+ SQL (2.2ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:16:00 UTC], ["name", nil], ["updated_at", 2014-06-08 22:16:00 UTC]]
2156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2157
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2158
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2159
+  (0.0ms) SAVEPOINT active_record_1
2160
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2161
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:16:00 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:16:00 UTC]]
2162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2163
+
2164
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
2165
+ WARNING: Can't mass-assign protected attributes: name
2166
+  (0.0ms) SAVEPOINT active_record_1
2167
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:16:00 UTC], ["name", nil], ["updated_at", 2014-06-08 22:16:00 UTC]]
2168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2169
+ WARNING: Can't mass-assign protected attributes: name
2170
+  (0.0ms) SAVEPOINT active_record_1
2171
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:16:00 UTC], ["name", nil], ["updated_at", 2014-06-08 22:16:00 UTC]]
2172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2173
+  (0.0ms) SAVEPOINT active_record_1
2174
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2175
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2177
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2178
+ WARNING: Can't mass-assign protected attributes: name
2179
+  (0.0ms) SAVEPOINT active_record_1
2180
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:16:00 UTC], ["name", nil], ["updated_at", 2014-06-08 22:16:00 UTC]]
2181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2182
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2183
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2184
+  (0.0ms) SAVEPOINT active_record_1
2185
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2186
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:16:00 UTC], ["locale", "en"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:16:00 UTC]]
2187
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2188
+  (0.2ms) select sqlite_version(*)
2189
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2190
+  (0.0ms) PRAGMA index_list("model_translations")
2191
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2192
+  (0.1ms) PRAGMA index_list("model_translations")
2193
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2194
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2195
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2196
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2197
+  (0.0ms) PRAGMA index_list("schema_migrations")
2198
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2199
+  (0.1ms) SELECT version FROM "schema_migrations"
2200
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2201
+ WARNING: Can't mass-assign protected attributes: name
2202
+  (0.1ms) SAVEPOINT active_record_1
2203
+ SQL (2.4ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:17:00 UTC], ["name", nil], ["updated_at", 2014-06-08 22:17:00 UTC]]
2204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2205
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2206
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2207
+  (0.0ms) SAVEPOINT active_record_1
2208
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2209
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:17:00 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:17:00 UTC]]
2210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2211
+  (0.2ms) select sqlite_version(*)
2212
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2213
+  (0.0ms) PRAGMA index_list("model_translations")
2214
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2215
+  (0.0ms) PRAGMA index_list("model_translations")
2216
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2217
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2218
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2219
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2220
+  (0.0ms) PRAGMA index_list("schema_migrations")
2221
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2222
+  (0.0ms) SELECT version FROM "schema_migrations"
2223
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2224
+ WARNING: Can't mass-assign protected attributes: name
2225
+  (0.0ms) SAVEPOINT active_record_1
2226
+ SQL (2.5ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:20:47 UTC], ["name", nil], ["updated_at", 2014-06-08 22:20:47 UTC]]
2227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2228
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2229
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2230
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2231
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2232
+  (0.0ms) SAVEPOINT active_record_1
2233
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2234
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:20:47 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:20:47 UTC]]
2235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2236
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2237
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2238
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2239
+ WARNING: Can't mass-assign protected attributes: name
2240
+  (0.1ms) SAVEPOINT active_record_1
2241
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:20:57 UTC], ["name", nil], ["updated_at", 2014-06-08 22:20:57 UTC]]
2242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2243
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2244
+  (0.2ms) select sqlite_version(*)
2245
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2246
+  (0.0ms) PRAGMA index_list("model_translations")
2247
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2248
+  (0.0ms) PRAGMA index_list("model_translations")
2249
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2250
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2251
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2252
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2253
+  (0.0ms) PRAGMA index_list("schema_migrations")
2254
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2255
+  (0.0ms) SELECT version FROM "schema_migrations"
2256
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2257
+ WARNING: Can't mass-assign protected attributes: name
2258
+  (0.0ms) SAVEPOINT active_record_1
2259
+ SQL (2.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:21:28 UTC], ["name", nil], ["updated_at", 2014-06-08 22:21:28 UTC]]
2260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2261
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2262
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2263
+  (0.2ms) select sqlite_version(*)
2264
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2265
+  (0.0ms) PRAGMA index_list("model_translations")
2266
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2267
+  (0.0ms) PRAGMA index_list("model_translations")
2268
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2269
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2270
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2271
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2272
+  (0.0ms) PRAGMA index_list("schema_migrations")
2273
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2274
+  (0.0ms) SELECT version FROM "schema_migrations"
2275
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2276
+ WARNING: Can't mass-assign protected attributes: name
2277
+  (0.0ms) SAVEPOINT active_record_1
2278
+ SQL (2.7ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:21:56 UTC], ["name", nil], ["updated_at", 2014-06-08 22:21:56 UTC]]
2279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2280
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2281
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2282
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2283
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2284
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2285
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2286
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2287
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2288
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2289
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2290
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2291
+  (0.1ms) SAVEPOINT active_record_1
2292
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2293
+ SQL (0.3ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:22:43 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:22:43 UTC]]
2294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2295
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2296
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2297
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2298
+ WARNING: Can't mass-assign protected attributes: name
2299
+  (0.1ms) SAVEPOINT active_record_1
2300
+ SQL (0.3ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:22:46 UTC], ["name", nil], ["updated_at", 2014-06-08 22:22:46 UTC]]
2301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2302
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2303
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2304
+ WARNING: Can't mass-assign protected attributes: name
2305
+  (0.0ms) SAVEPOINT active_record_1
2306
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:22:46 UTC], ["name", nil], ["updated_at", 2014-06-08 22:22:46 UTC]]
2307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2308
+  (0.0ms) SAVEPOINT active_record_1
2309
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2310
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2312
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2313
+ WARNING: Can't mass-assign protected attributes: name
2314
+  (0.0ms) SAVEPOINT active_record_1
2315
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:22:46 UTC], ["name", nil], ["updated_at", 2014-06-08 22:22:46 UTC]]
2316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2317
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2318
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2319
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2320
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2321
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2322
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2323
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2324
+  (0.1ms) SAVEPOINT active_record_1
2325
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2326
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:23:12 UTC], ["locale", "en"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:23:12 UTC]]
2327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2328
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2329
+  (0.1ms) select sqlite_version(*)
2330
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2331
+  (0.0ms) PRAGMA index_list("model_translations")
2332
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2333
+  (0.0ms) PRAGMA index_list("model_translations")
2334
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2335
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2336
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2337
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2338
+  (0.0ms) PRAGMA index_list("schema_migrations")
2339
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2340
+  (0.0ms) SELECT version FROM "schema_migrations"
2341
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2342
+ WARNING: Can't mass-assign protected attributes: name
2343
+  (0.0ms) SAVEPOINT active_record_1
2344
+ SQL (2.2ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:23:30 UTC], ["name", nil], ["updated_at", 2014-06-08 22:23:30 UTC]]
2345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2346
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2347
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2348
+  (0.2ms) select sqlite_version(*)
2349
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2350
+  (0.0ms) PRAGMA index_list("model_translations")
2351
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2352
+  (0.0ms) PRAGMA index_list("model_translations")
2353
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2354
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2355
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2356
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2357
+  (0.0ms) PRAGMA index_list("schema_migrations")
2358
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2359
+  (0.0ms) SELECT version FROM "schema_migrations"
2360
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2361
+ WARNING: Can't mass-assign protected attributes: name
2362
+  (0.0ms) SAVEPOINT active_record_1
2363
+ SQL (2.2ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:23:53 UTC], ["name", nil], ["updated_at", 2014-06-08 22:23:53 UTC]]
2364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2365
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2366
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2367
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2368
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2369
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2370
+  (0.1ms) SAVEPOINT active_record_1
2371
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2372
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:24:19 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:24:19 UTC]]
2373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2374
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2375
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2376
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2377
+ WARNING: Can't mass-assign protected attributes: name
2378
+  (0.0ms) SAVEPOINT active_record_1
2379
+ SQL (0.2ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:25:01 UTC], ["name", nil], ["updated_at", 2014-06-08 22:25:01 UTC]]
2380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2381
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2382
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2383
+  (0.2ms) select sqlite_version(*)
2384
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2385
+  (0.0ms) PRAGMA index_list("model_translations")
2386
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2387
+  (0.0ms) PRAGMA index_list("model_translations")
2388
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2389
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2390
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2391
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2392
+  (0.0ms) PRAGMA index_list("schema_migrations")
2393
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2394
+  (0.0ms) SELECT version FROM "schema_migrations"
2395
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2396
+ WARNING: Can't mass-assign protected attributes: name
2397
+  (0.0ms) SAVEPOINT active_record_1
2398
+ SQL (2.3ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:26:10 UTC], ["name", nil], ["updated_at", 2014-06-08 22:26:10 UTC]]
2399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2400
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2401
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2402
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2403
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2404
+  (0.1ms) SAVEPOINT active_record_1
2405
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2406
+ SQL (0.3ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:26:37 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:26:37 UTC]]
2407
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2408
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2409
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2410
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2411
+ WARNING: Can't mass-assign protected attributes: name
2412
+  (0.0ms) SAVEPOINT active_record_1
2413
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:26:44 UTC], ["name", nil], ["updated_at", 2014-06-08 22:26:44 UTC]]
2414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2415
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2416
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2417
+ WARNING: Can't mass-assign protected attributes: name
2418
+  (0.0ms) SAVEPOINT active_record_1
2419
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:26:54 UTC], ["name", nil], ["updated_at", 2014-06-08 22:26:54 UTC]]
2420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2421
+  (0.0ms) SAVEPOINT active_record_1
2422
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2423
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2425
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2426
+ WARNING: Can't mass-assign protected attributes: name
2427
+  (0.0ms) SAVEPOINT active_record_1
2428
+ SQL (0.2ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:26:54 UTC], ["name", nil], ["updated_at", 2014-06-08 22:26:54 UTC]]
2429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2430
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2431
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2432
+  (0.1ms) SAVEPOINT active_record_1
2433
+  (0.2ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2434
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:27:02 UTC], ["locale", "en"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:27:02 UTC]]
2435
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2436
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2437
+  (0.2ms) select sqlite_version(*)
2438
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2439
+  (0.0ms) PRAGMA index_list("model_translations")
2440
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2441
+  (0.0ms) PRAGMA index_list("model_translations")
2442
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2443
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2444
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2445
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2446
+  (0.0ms) PRAGMA index_list("schema_migrations")
2447
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2448
+  (0.0ms) SELECT version FROM "schema_migrations"
2449
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2450
+ WARNING: Can't mass-assign protected attributes: name
2451
+  (0.0ms) SAVEPOINT active_record_1
2452
+ SQL (2.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:28:58 UTC], ["name", nil], ["updated_at", 2014-06-08 22:28:58 UTC]]
2453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2454
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2455
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2456
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2457
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2458
+  (0.0ms) SAVEPOINT active_record_1
2459
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2460
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:28:58 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:28:58 UTC]]
2461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2462
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2463
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2464
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2465
+ WARNING: Can't mass-assign protected attributes: name
2466
+  (0.1ms) SAVEPOINT active_record_1
2467
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:29:00 UTC], ["name", nil], ["updated_at", 2014-06-08 22:29:00 UTC]]
2468
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2469
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2470
+  (0.2ms) select sqlite_version(*)
2471
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2472
+  (0.0ms) PRAGMA index_list("model_translations")
2473
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2474
+  (0.0ms) PRAGMA index_list("model_translations")
2475
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2476
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2477
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2478
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2479
+  (0.0ms) PRAGMA index_list("schema_migrations")
2480
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2481
+  (0.0ms) SELECT version FROM "schema_migrations"
2482
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2483
+ WARNING: Can't mass-assign protected attributes: name
2484
+  (0.0ms) SAVEPOINT active_record_1
2485
+ SQL (2.3ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:30:31 UTC], ["name", nil], ["updated_at", 2014-06-08 22:30:31 UTC]]
2486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2487
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2488
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2489
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2490
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2491
+  (0.0ms) SAVEPOINT active_record_1
2492
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2493
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:30:31 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:30:31 UTC]]
2494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2495
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2496
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2497
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2498
+ WARNING: Can't mass-assign protected attributes: name
2499
+  (0.0ms) SAVEPOINT active_record_1
2500
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:30:31 UTC], ["name", nil], ["updated_at", 2014-06-08 22:30:31 UTC]]
2501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2502
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2503
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2504
+ WARNING: Can't mass-assign protected attributes: name
2505
+  (0.0ms) SAVEPOINT active_record_1
2506
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:30:31 UTC], ["name", nil], ["updated_at", 2014-06-08 22:30:31 UTC]]
2507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2508
+  (0.0ms) SAVEPOINT active_record_1
2509
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2510
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2512
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2513
+ WARNING: Can't mass-assign protected attributes: name
2514
+  (0.0ms) SAVEPOINT active_record_1
2515
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", 2014-06-08 22:30:31 UTC], ["name", nil], ["updated_at", 2014-06-08 22:30:31 UTC]]
2516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2517
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2518
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2519
+  (0.0ms) SAVEPOINT active_record_1
2520
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en') LIMIT 1
2521
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:30:31 UTC], ["locale", "en"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:30:31 UTC]]
2522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2523
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2524
+  (0.0ms) select sqlite_version(*)
2525
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2526
+  (0.0ms) PRAGMA index_list("schema_migrations")
2527
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2528
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2529
+ Migrating to CreateModels (20130819155126)
2530
+  (0.2ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2531
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819155126')
2532
+ Migrating to CreateModelTranslations (20130819165249)
2533
+  (0.1ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2534
+  (0.0ms) PRAGMA index_list("model_translations")
2535
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2536
+  (0.0ms) PRAGMA index_list("model_translations")
2537
+  (0.0ms) PRAGMA index_info('index_model_translations_on_model_id')
2538
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2539
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819165249')
2540
+  (0.2ms) select sqlite_version(*)
2541
+  (0.0ms) select sqlite_version(*)
2542
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2543
+  (0.0ms) PRAGMA index_list("schema_migrations")
2544
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2545
+  (0.0ms) SELECT version FROM "schema_migrations"
2546
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2547
+  (0.0ms) select sqlite_version(*)
2548
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2549
+  (0.0ms) PRAGMA index_list("schema_migrations")
2550
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2551
+  (0.0ms) SELECT version FROM "schema_migrations"
2552
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2553
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2554
+  (0.0ms) select sqlite_version(*)
2555
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2556
+  (0.0ms) PRAGMA index_list("schema_migrations")
2557
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2558
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2559
+ Migrating to CreateModels (20130819155126)
2560
+  (0.2ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2561
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819155126')
2562
+ Migrating to CreateModelTranslations (20130819165249)
2563
+  (0.1ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2564
+  (0.0ms) PRAGMA index_list("model_translations")
2565
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2566
+  (0.0ms) PRAGMA index_list("model_translations")
2567
+  (0.0ms) PRAGMA index_info('index_model_translations_on_model_id')
2568
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2569
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819165249')
2570
+  (0.1ms) select sqlite_version(*)
2571
+  (0.0ms) select sqlite_version(*)
2572
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2573
+  (0.0ms) PRAGMA index_list("schema_migrations")
2574
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2575
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2576
+ Migrating to CreateModels (20130819155126)
2577
+  (0.2ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2578
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819155126')
2579
+ Migrating to CreateModelTranslations (20130819165249)
2580
+  (0.1ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2581
+  (0.0ms) PRAGMA index_list("model_translations")
2582
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2583
+  (0.0ms) PRAGMA index_list("model_translations")
2584
+  (0.0ms) PRAGMA index_info('index_model_translations_on_model_id')
2585
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2586
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819165249')
2587
+  (0.1ms) select sqlite_version(*)
2588
+  (0.0ms) select sqlite_version(*)
2589
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2590
+  (0.0ms) PRAGMA index_list("schema_migrations")
2591
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2592
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2593
+ Migrating to CreateModels (20130819155126)
2594
+  (0.2ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2595
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819155126')
2596
+ Migrating to CreateModelTranslations (20130819165249)
2597
+  (0.1ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2598
+  (0.0ms) PRAGMA index_list("model_translations")
2599
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2600
+  (0.0ms) PRAGMA index_list("model_translations")
2601
+  (0.0ms) PRAGMA index_info('index_model_translations_on_model_id')
2602
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2603
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819165249')
2604
+  (0.1ms) select sqlite_version(*)
2605
+  (0.0ms) select sqlite_version(*)
2606
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2607
+  (0.0ms) PRAGMA index_list("schema_migrations")
2608
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2609
+  (0.0ms) SELECT version FROM "schema_migrations"
2610
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2611
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2612
+  (0.0ms) select sqlite_version(*)
2613
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2614
+  (0.0ms) PRAGMA index_list("schema_migrations")
2615
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2616
+  (0.1ms) SELECT version FROM "schema_migrations"
2617
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2618
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2619
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2620
+ Migrating to CreateModels (20130819155126)
2621
+  (0.0ms) select sqlite_version(*)
2622
+  (0.4ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
2623
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819155126')
2624
+ Migrating to CreateModelTranslations (20130819165249)
2625
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
2626
+  (0.0ms) PRAGMA index_list("model_translations")
2627
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2628
+  (0.0ms) PRAGMA index_list("model_translations")
2629
+  (0.0ms) PRAGMA index_info('index_model_translations_on_model_id')
2630
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2631
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130819165249')
2632
+  (0.2ms) select sqlite_version(*)
2633
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2634
+  (0.0ms) PRAGMA index_list("model_translations")
2635
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2636
+  (0.0ms) PRAGMA index_info('index_model_translations_on_model_id')
2637
+  (0.0ms) PRAGMA index_list("models")
2638
+  (0.2ms) select sqlite_version(*)
2639
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2640
+  (0.0ms) PRAGMA index_list("model_translations")
2641
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2642
+  (0.0ms) PRAGMA index_list("model_translations")
2643
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2644
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2645
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2646
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2647
+  (0.0ms) PRAGMA index_list("schema_migrations")
2648
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2649
+  (0.0ms) SELECT version FROM "schema_migrations"
2650
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2651
+ WARNING: Can't mass-assign protected attributes: name
2652
+  (0.0ms) SAVEPOINT active_record_1
2653
+ SQL (2.2ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:39:09 UTC], ["updated_at", 2014-06-08 22:39:09 UTC]]
2654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2655
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2656
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2657
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2658
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2659
+  (0.0ms) SAVEPOINT active_record_1
2660
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2661
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:39:10 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:39:10 UTC]]
2662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2663
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2664
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2665
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2666
+ WARNING: Can't mass-assign protected attributes: name
2667
+  (0.1ms) SAVEPOINT active_record_1
2668
+ SQL (0.2ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:39:23 UTC], ["updated_at", 2014-06-08 22:39:23 UTC]]
2669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2670
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2671
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2672
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2673
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2674
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2675
+  (0.2ms) select sqlite_version(*)
2676
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2677
+  (0.0ms) PRAGMA index_list("model_translations")
2678
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2679
+  (0.0ms) PRAGMA index_list("model_translations")
2680
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2681
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2682
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2683
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2684
+  (0.0ms) PRAGMA index_list("schema_migrations")
2685
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2686
+  (0.0ms) SELECT version FROM "schema_migrations"
2687
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2688
+ WARNING: Can't mass-assign protected attributes: name
2689
+  (0.0ms) SAVEPOINT active_record_1
2690
+ SQL (2.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:43:10 UTC], ["updated_at", 2014-06-08 22:43:10 UTC]]
2691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2692
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2693
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
2694
+  (0.2ms) select sqlite_version(*)
2695
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2696
+  (0.0ms) PRAGMA index_list("model_translations")
2697
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2698
+  (0.1ms) PRAGMA index_list("model_translations")
2699
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2700
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2701
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2702
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2703
+  (0.0ms) PRAGMA index_list("schema_migrations")
2704
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2705
+  (0.0ms) SELECT version FROM "schema_migrations"
2706
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2707
+  (0.2ms) select sqlite_version(*)
2708
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2709
+  (0.0ms) PRAGMA index_list("model_translations")
2710
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2711
+  (0.1ms) PRAGMA index_list("model_translations")
2712
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2713
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2714
+  (0.2ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2715
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2716
+  (0.0ms) PRAGMA index_list("schema_migrations")
2717
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2718
+  (0.0ms) SELECT version FROM "schema_migrations"
2719
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2720
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2721
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2722
+  (0.0ms) SAVEPOINT active_record_1
2723
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2724
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["updated_at", 2014-06-08 22:52:42 UTC]]
2725
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:52:42 UTC]]
2726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2727
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2728
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2729
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2730
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2731
+  (0.0ms) SAVEPOINT active_record_1
2732
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2733
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:52:42 UTC]]
2734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2735
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2736
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2737
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2738
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2739
+  (0.0ms) SAVEPOINT active_record_1
2740
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2741
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["updated_at", 2014-06-08 22:52:42 UTC]]
2742
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:52:42 UTC]]
2743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2744
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2745
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2746
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2747
+  (0.0ms) SAVEPOINT active_record_1
2748
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2749
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["updated_at", 2014-06-08 22:52:42 UTC]]
2750
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:52:42 UTC]]
2751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2752
+  (0.0ms) SAVEPOINT active_record_1
2753
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2754
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
2755
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2757
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2758
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2759
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2760
+  (0.0ms) SAVEPOINT active_record_1
2761
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2762
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["updated_at", 2014-06-08 22:52:42 UTC]]
2763
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:52:42 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:52:42 UTC]]
2764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2765
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2766
+  (0.0ms) SAVEPOINT active_record_1
2767
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2768
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2769
+  (0.2ms) select sqlite_version(*)
2770
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2771
+  (0.0ms) PRAGMA index_list("model_translations")
2772
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2773
+  (0.0ms) PRAGMA index_list("model_translations")
2774
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2775
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2776
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2777
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2778
+  (0.0ms) PRAGMA index_list("schema_migrations")
2779
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2780
+  (0.0ms) SELECT version FROM "schema_migrations"
2781
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2782
+  (0.2ms) select sqlite_version(*)
2783
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2784
+  (0.0ms) PRAGMA index_list("model_translations")
2785
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2786
+  (0.0ms) PRAGMA index_list("model_translations")
2787
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2788
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2789
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2790
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2791
+  (0.0ms) PRAGMA index_list("schema_migrations")
2792
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2793
+  (0.0ms) SELECT version FROM "schema_migrations"
2794
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2795
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2796
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2797
+  (0.0ms) SAVEPOINT active_record_1
2798
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2799
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["updated_at", 2014-06-08 22:53:13 UTC]]
2800
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:13 UTC]]
2801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2802
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2803
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2804
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2805
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2806
+  (0.0ms) SAVEPOINT active_record_1
2807
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2808
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:53:13 UTC]]
2809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2810
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2811
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2812
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2813
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2814
+  (0.0ms) SAVEPOINT active_record_1
2815
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2816
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["updated_at", 2014-06-08 22:53:13 UTC]]
2817
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:13 UTC]]
2818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2819
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2820
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2821
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2822
+  (0.0ms) SAVEPOINT active_record_1
2823
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2824
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["updated_at", 2014-06-08 22:53:13 UTC]]
2825
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:13 UTC]]
2826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2827
+  (0.0ms) SAVEPOINT active_record_1
2828
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2829
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
2830
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2832
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2833
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2834
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2835
+  (0.0ms) SAVEPOINT active_record_1
2836
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2837
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["updated_at", 2014-06-08 22:53:13 UTC]]
2838
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:13 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:13 UTC]]
2839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2840
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2841
+  (0.0ms) SAVEPOINT active_record_1
2842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2843
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2844
+  (0.2ms) select sqlite_version(*)
2845
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2846
+  (0.0ms) PRAGMA index_list("model_translations")
2847
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2848
+  (0.1ms) PRAGMA index_list("model_translations")
2849
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2850
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2851
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2852
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2853
+  (0.0ms) PRAGMA index_list("schema_migrations")
2854
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2855
+  (0.0ms) SELECT version FROM "schema_migrations"
2856
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2857
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2858
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2859
+  (0.0ms) SAVEPOINT active_record_1
2860
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2861
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["updated_at", 2014-06-08 22:53:38 UTC]]
2862
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:38 UTC]]
2863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2864
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2865
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2866
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2867
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2868
+  (0.0ms) SAVEPOINT active_record_1
2869
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2870
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:53:38 UTC]]
2871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2872
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2873
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2874
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2875
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2876
+  (0.0ms) SAVEPOINT active_record_1
2877
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2878
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["updated_at", 2014-06-08 22:53:38 UTC]]
2879
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:38 UTC]]
2880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2881
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2882
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2883
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2884
+  (0.0ms) SAVEPOINT active_record_1
2885
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2886
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["updated_at", 2014-06-08 22:53:38 UTC]]
2887
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:38 UTC]]
2888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2889
+  (0.0ms) SAVEPOINT active_record_1
2890
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2891
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
2892
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2894
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2895
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2896
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2897
+  (0.0ms) SAVEPOINT active_record_1
2898
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2899
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["updated_at", 2014-06-08 22:53:38 UTC]]
2900
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:53:38 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:53:38 UTC]]
2901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2902
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2903
+  (0.0ms) SAVEPOINT active_record_1
2904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2905
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2906
+  (0.2ms) select sqlite_version(*)
2907
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2908
+  (0.0ms) PRAGMA index_list("model_translations")
2909
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2910
+  (0.1ms) PRAGMA index_list("model_translations")
2911
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2912
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2913
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2914
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2915
+  (0.0ms) PRAGMA index_list("schema_migrations")
2916
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2917
+  (0.0ms) SELECT version FROM "schema_migrations"
2918
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2919
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2920
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2921
+  (0.0ms) SAVEPOINT active_record_1
2922
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2923
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["updated_at", 2014-06-08 22:54:49 UTC]]
2924
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:54:49 UTC]]
2925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2926
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2927
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2928
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2929
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2930
+  (0.0ms) SAVEPOINT active_record_1
2931
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
2932
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 22:54:49 UTC]]
2933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2934
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2935
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2936
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2937
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2938
+  (0.0ms) SAVEPOINT active_record_1
2939
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2940
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["updated_at", 2014-06-08 22:54:49 UTC]]
2941
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:54:49 UTC]]
2942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2943
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2944
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2945
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2946
+  (0.0ms) SAVEPOINT active_record_1
2947
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2948
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["updated_at", 2014-06-08 22:54:49 UTC]]
2949
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:54:49 UTC]]
2950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2951
+  (0.0ms) SAVEPOINT active_record_1
2952
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2953
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
2954
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
2955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2956
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
2957
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2958
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2959
+  (0.0ms) SAVEPOINT active_record_1
2960
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2961
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["updated_at", 2014-06-08 22:54:49 UTC]]
2962
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:54:49 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:54:49 UTC]]
2963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2964
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2965
+  (0.0ms) SAVEPOINT active_record_1
2966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2967
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2968
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2969
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2970
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2971
+  (0.1ms) select sqlite_version(*)
2972
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2973
+  (0.0ms) PRAGMA index_list("model_translations")
2974
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2975
+  (0.0ms) PRAGMA index_list("model_translations")
2976
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
2977
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
2978
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
2979
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2980
+  (0.0ms) PRAGMA index_list("schema_migrations")
2981
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2982
+  (0.0ms) SELECT version FROM "schema_migrations"
2983
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
2984
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
2985
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
2986
+  (0.1ms) SAVEPOINT active_record_1
2987
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
2988
+ SQL (0.2ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 22:56:21 UTC], ["updated_at", 2014-06-08 22:56:21 UTC]]
2989
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 22:56:21 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 22:56:21 UTC]]
2990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2991
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2992
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2993
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
2994
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
2995
+  (0.2ms) select sqlite_version(*)
2996
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
2997
+  (0.1ms) PRAGMA index_list("model_translations")
2998
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
2999
+  (0.1ms) PRAGMA index_list("model_translations")
3000
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
3001
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3002
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3003
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3004
+  (0.0ms) PRAGMA index_list("schema_migrations")
3005
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3006
+  (0.0ms) SELECT version FROM "schema_migrations"
3007
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3008
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3009
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3010
+  (0.1ms) SAVEPOINT active_record_1
3011
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3012
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["updated_at", 2014-06-08 23:00:16 UTC]]
3013
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:00:16 UTC]]
3014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3015
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3016
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3017
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3018
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3019
+  (0.0ms) SAVEPOINT active_record_1
3020
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3021
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 23:00:16 UTC]]
3022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3023
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3024
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3025
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3026
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3027
+  (0.0ms) SAVEPOINT active_record_1
3028
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3029
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["updated_at", 2014-06-08 23:00:16 UTC]]
3030
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:00:16 UTC]]
3031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3032
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3033
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3034
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3035
+  (0.0ms) SAVEPOINT active_record_1
3036
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3037
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["updated_at", 2014-06-08 23:00:16 UTC]]
3038
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:00:16 UTC]]
3039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3040
+  (0.0ms) SAVEPOINT active_record_1
3041
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3042
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
3043
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
3044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3045
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
3046
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3047
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3048
+  (0.0ms) SAVEPOINT active_record_1
3049
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3050
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["updated_at", 2014-06-08 23:00:16 UTC]]
3051
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:00:16 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:00:16 UTC]]
3052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3053
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3054
+  (0.0ms) SAVEPOINT active_record_1
3055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3056
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3057
+  (0.2ms) select sqlite_version(*)
3058
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
3059
+  (0.0ms) PRAGMA index_list("model_translations")
3060
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
3061
+  (0.0ms) PRAGMA index_list("model_translations")
3062
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
3063
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3064
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3065
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3066
+  (0.0ms) PRAGMA index_list("schema_migrations")
3067
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3068
+  (0.0ms) SELECT version FROM "schema_migrations"
3069
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3070
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3071
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3072
+  (0.0ms) SAVEPOINT active_record_1
3073
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3074
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["updated_at", 2014-06-08 23:03:05 UTC]]
3075
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:03:05 UTC]]
3076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3077
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3078
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3079
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3080
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3081
+  (0.0ms) SAVEPOINT active_record_1
3082
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3083
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 23:03:05 UTC]]
3084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3085
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3086
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3087
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3088
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3089
+  (0.0ms) SAVEPOINT active_record_1
3090
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3091
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["updated_at", 2014-06-08 23:03:05 UTC]]
3092
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:03:05 UTC]]
3093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3094
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3095
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3096
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3097
+  (0.0ms) SAVEPOINT active_record_1
3098
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3099
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["updated_at", 2014-06-08 23:03:05 UTC]]
3100
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:03:05 UTC]]
3101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3102
+  (0.0ms) SAVEPOINT active_record_1
3103
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3104
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
3105
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
3106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3107
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
3108
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3109
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3110
+  (0.0ms) SAVEPOINT active_record_1
3111
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3112
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["updated_at", 2014-06-08 23:03:05 UTC]]
3113
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:03:05 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:03:05 UTC]]
3114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3115
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3116
+  (0.0ms) SAVEPOINT active_record_1
3117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3118
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3119
+  (0.2ms) select sqlite_version(*)
3120
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
3121
+  (0.0ms) PRAGMA index_list("model_translations")
3122
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
3123
+  (0.1ms) PRAGMA index_list("model_translations")
3124
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
3125
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3126
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3127
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3128
+  (0.0ms) PRAGMA index_list("schema_migrations")
3129
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3130
+  (0.0ms) SELECT version FROM "schema_migrations"
3131
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3132
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3133
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3134
+  (0.1ms) SAVEPOINT active_record_1
3135
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3136
+ SQL (0.2ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:03:53 UTC], ["updated_at", 2014-06-08 23:03:53 UTC]]
3137
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:03:53 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:03:53 UTC]]
3138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3139
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3140
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3141
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3142
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3143
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3144
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3145
+  (0.2ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3146
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
3147
+  (0.1ms) SELECT COUNT(*) FROM "model_translations" WHERE "model_translations"."model_id" = 1
3148
+  (0.1ms) SAVEPOINT active_record_1
3149
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3150
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3151
+ SQL (0.2ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:05:17 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 23:05:17 UTC]]
3152
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:05:17 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 23:05:17 UTC]]
3153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3154
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3155
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3156
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3157
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3158
+  (0.2ms) select sqlite_version(*)
3159
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
3160
+  (0.0ms) PRAGMA index_list("model_translations")
3161
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
3162
+  (0.0ms) PRAGMA index_list("model_translations")
3163
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
3164
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3165
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3166
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3167
+  (0.0ms) PRAGMA index_list("schema_migrations")
3168
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3169
+  (0.0ms) SELECT version FROM "schema_migrations"
3170
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3171
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3172
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3173
+  (0.0ms) SAVEPOINT active_record_1
3174
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3175
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["updated_at", 2014-06-08 23:06:07 UTC]]
3176
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:07 UTC]]
3177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3178
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3179
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3180
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3181
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3182
+  (0.0ms) SAVEPOINT active_record_1
3183
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3184
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 23:06:07 UTC]]
3185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3186
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3187
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3188
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3189
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3190
+  (0.0ms) SAVEPOINT active_record_1
3191
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3192
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["updated_at", 2014-06-08 23:06:07 UTC]]
3193
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:07 UTC]]
3194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3195
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3196
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3197
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3198
+  (0.0ms) SAVEPOINT active_record_1
3199
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3200
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["updated_at", 2014-06-08 23:06:07 UTC]]
3201
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:07 UTC]]
3202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3203
+  (0.1ms) SAVEPOINT active_record_1
3204
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3205
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
3206
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
3207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3208
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
3209
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3210
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3211
+  (0.0ms) SAVEPOINT active_record_1
3212
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3213
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["updated_at", 2014-06-08 23:06:07 UTC]]
3214
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:07 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:07 UTC]]
3215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3216
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3217
+  (0.0ms) SAVEPOINT active_record_1
3218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3219
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3220
+  (0.2ms) select sqlite_version(*)
3221
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
3222
+  (0.0ms) PRAGMA index_list("model_translations")
3223
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
3224
+  (0.0ms) PRAGMA index_list("model_translations")
3225
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
3226
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3227
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3228
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3229
+  (0.0ms) PRAGMA index_list("schema_migrations")
3230
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3231
+  (0.0ms) SELECT version FROM "schema_migrations"
3232
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3233
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3234
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3235
+  (0.0ms) SAVEPOINT active_record_1
3236
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3237
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["updated_at", 2014-06-08 23:06:25 UTC]]
3238
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:25 UTC]]
3239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3240
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3241
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3242
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3243
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3244
+  (0.0ms) SAVEPOINT active_record_1
3245
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3246
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 23:06:25 UTC]]
3247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3248
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3249
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3250
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3251
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3252
+  (0.0ms) SAVEPOINT active_record_1
3253
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3254
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["updated_at", 2014-06-08 23:06:25 UTC]]
3255
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:25 UTC]]
3256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3257
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3258
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3259
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3260
+  (0.0ms) SAVEPOINT active_record_1
3261
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3262
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["updated_at", 2014-06-08 23:06:25 UTC]]
3263
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:25 UTC]]
3264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3265
+  (0.0ms) SAVEPOINT active_record_1
3266
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3267
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
3268
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
3269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3270
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
3271
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL
3272
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3273
+  (0.0ms) SAVEPOINT active_record_1
3274
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3275
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["updated_at", 2014-06-08 23:06:25 UTC]]
3276
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:06:25 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:06:25 UTC]]
3277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3278
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3279
+  (0.0ms) SAVEPOINT active_record_1
3280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3281
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3282
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3283
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3284
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3285
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3286
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3287
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3288
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3289
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3290
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3291
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3292
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3293
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3294
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3295
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
3296
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
3297
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'en' LIMIT 1
3298
+ ModelTranslation Load (0.2ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1
3299
+  (0.2ms) select sqlite_version(*)
3300
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
3301
+  (0.0ms) PRAGMA index_list("model_translations")
3302
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
3303
+  (0.1ms) PRAGMA index_list("model_translations")
3304
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
3305
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3306
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3307
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3308
+  (0.0ms) PRAGMA index_list("schema_migrations")
3309
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3310
+  (0.0ms) SELECT version FROM "schema_migrations"
3311
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3312
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3313
+  (0.0ms) SAVEPOINT active_record_1
3314
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3315
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:13:41 UTC], ["updated_at", 2014-06-08 23:13:41 UTC]]
3316
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:13:41 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:13:41 UTC]]
3317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3318
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3319
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3320
+  (0.0ms) SAVEPOINT active_record_1
3321
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3322
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:13:41 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-08 23:13:41 UTC]]
3323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3324
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3325
+  (0.0ms) SAVEPOINT active_record_1
3326
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3327
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:13:41 UTC], ["updated_at", 2014-06-08 23:13:41 UTC]]
3328
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:13:41 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:13:41 UTC]]
3329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3330
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3331
+  (0.0ms) SAVEPOINT active_record_1
3332
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3333
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:13:41 UTC], ["updated_at", 2014-06-08 23:13:41 UTC]]
3334
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:13:41 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:13:41 UTC]]
3335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3336
+  (0.0ms) SAVEPOINT active_record_1
3337
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
3338
+ SQL (0.0ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
3339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3340
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
3341
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3342
+  (0.0ms) SAVEPOINT active_record_1
3343
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3344
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-08 23:13:42 UTC], ["updated_at", 2014-06-08 23:13:42 UTC]]
3345
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-08 23:13:42 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-08 23:13:42 UTC]]
3346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3347
+  (0.0ms) SAVEPOINT active_record_1
3348
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
3349
+  (0.0ms) UPDATE "model_translations" SET "name" = 'new name', "updated_at" = '2014-06-08 23:13:42.003737' WHERE "model_translations"."id" = 1
3350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3351
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
3352
+  (0.1ms) select sqlite_version(*)
3353
+  (0.2ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
3354
+  (0.1ms) SELECT sql
3355
+ FROM sqlite_master
3356
+ WHERE name='index_model_translations_on_locale' AND type='index'
3357
+ UNION ALL
3358
+ SELECT sql
3359
+ FROM sqlite_temp_master
3360
+ WHERE name='index_model_translations_on_locale' AND type='index'
3361
+
3362
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3363
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3364
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3365
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3366
+  (0.1ms) SELECT version FROM "schema_migrations"
3367
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3368
+  (0.1ms) begin transaction
3369
+ ---------------------------------------------
3370
+ I18nGeneratorTest: test_should_generate_files
3371
+ ---------------------------------------------
3372
+  (0.1ms) rollback transaction
3373
+  (0.1ms) begin transaction
3374
+ ---------------------------------------
3375
+ RecrodsTest: test_should_change_locales
3376
+ ---------------------------------------
3377
+  (0.1ms) SAVEPOINT active_record_1
3378
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3379
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-09 18:25:06.716038"], ["updated_at", "2014-06-09 18:25:06.716038"]]
3380
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-09 18:25:06.718649"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-09 18:25:06.718649"]]
3381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3382
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
3383
+ ModelTranslation Load (0.0ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = ? AND "model_translations"."locale" = 'es' LIMIT 1 [["model_id", 1]]
3384
+  (0.0ms) SAVEPOINT active_record_1
3385
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3386
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-09 18:25:06.723013"], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", "2014-06-09 18:25:06.723013"]]
3387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3388
+  (0.0ms) rollback transaction
3389
+  (0.0ms) begin transaction
3390
+ ------------------------------------------------------
3391
+ RecrodsTest: test_should_create_associated_translation
3392
+ ------------------------------------------------------
3393
+  (0.1ms) SAVEPOINT active_record_1
3394
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3395
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-09 18:25:06.726664"], ["updated_at", "2014-06-09 18:25:06.726664"]]
3396
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-09 18:25:06.727410"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-09 18:25:06.727410"]]
3397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3398
+  (0.1ms) rollback transaction
3399
+  (0.0ms) begin transaction
3400
+ ------------------------------------------------------
3401
+ RecrodsTest: test_should_delete_associated_translation
3402
+ ------------------------------------------------------
3403
+  (0.1ms) SAVEPOINT active_record_1
3404
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3405
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-09 18:25:06.730896"], ["updated_at", "2014-06-09 18:25:06.730896"]]
3406
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-09 18:25:06.731604"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-09 18:25:06.731604"]]
3407
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3408
+  (0.0ms) SAVEPOINT active_record_1
3409
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
3410
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
3411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3412
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
3413
+  (0.0ms) rollback transaction
3414
+  (0.1ms) begin transaction
3415
+ ----------------------------------------------------
3416
+ RecrodsTest: test_should_edit_associated_translation
3417
+ ----------------------------------------------------
3418
+  (0.1ms) SAVEPOINT active_record_1
3419
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3420
+ SQL (0.0ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-06-09 18:25:06.735957"], ["updated_at", "2014-06-09 18:25:06.735957"]]
3421
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-09 18:25:06.736580"], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", "2014-06-09 18:25:06.736580"]]
3422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3423
+  (0.0ms) SAVEPOINT active_record_1
3424
+ ModelTranslation Exists (0.1ms) SELECT 1 AS one FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
3425
+ SQL (0.1ms) UPDATE "model_translations" SET "name" = ?, "updated_at" = ? WHERE "model_translations"."id" = 1 [["name", "new name"], ["updated_at", "2014-06-09 18:25:06.738656"]]
3426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3427
+  (0.1ms) rollback transaction
3428
+  (0.2ms) select sqlite_version(*)
3429
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime)
3430
+  (0.0ms) PRAGMA index_list("model_translations")
3431
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
3432
+  (0.0ms) PRAGMA index_list("model_translations")
3433
+  (0.0ms) PRAGMA index_info('index_model_translations_on_locale')
3434
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
3435
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3436
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3437
+  (0.0ms) PRAGMA index_list("schema_migrations")
3438
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3439
+  (0.0ms) SELECT version FROM "schema_migrations"
3440
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
3441
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3442
+  (0.0ms) SAVEPOINT active_record_1
3443
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3444
+ SQL (0.2ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["updated_at", 2014-06-09 18:26:46 UTC]]
3445
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-09 18:26:46 UTC]]
3446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3447
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3448
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es' LIMIT 1
3449
+  (0.0ms) SAVEPOINT active_record_1
3450
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."locale" = 'es') LIMIT 1
3451
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["locale", "es"], ["model_id", 1], ["name", "new name"], ["updated_at", 2014-06-09 18:26:46 UTC]]
3452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3453
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3454
+  (0.0ms) SAVEPOINT active_record_1
3455
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3456
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["updated_at", 2014-06-09 18:26:46 UTC]]
3457
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-09 18:26:46 UTC]]
3458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3459
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3460
+  (0.0ms) SAVEPOINT active_record_1
3461
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3462
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["updated_at", 2014-06-09 18:26:46 UTC]]
3463
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-09 18:26:46 UTC]]
3464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3465
+  (0.0ms) SAVEPOINT active_record_1
3466
+ SQL (0.1ms) DELETE FROM "model_translations" WHERE "model_translations"."id" = ? [["id", 1]]
3467
+ SQL (0.1ms) DELETE FROM "models" WHERE "models"."id" = ? [["id", 1]]
3468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3469
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" = 1 LIMIT 1
3470
+ ModelTranslation Load (0.1ms) SELECT "model_translations".* FROM "model_translations" WHERE "model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en' LIMIT 1
3471
+  (0.0ms) SAVEPOINT active_record_1
3472
+  (0.0ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" IS NULL AND "model_translations"."locale" = 'en') LIMIT 1
3473
+ SQL (0.1ms) INSERT INTO "models" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["updated_at", 2014-06-09 18:26:46 UTC]]
3474
+ SQL (0.1ms) INSERT INTO "model_translations" ("created_at", "locale", "model_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", 2014-06-09 18:26:46 UTC], ["locale", "en"], ["model_id", 1], ["name", "name"], ["updated_at", 2014-06-09 18:26:46 UTC]]
3475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3476
+  (0.0ms) SAVEPOINT active_record_1
3477
+  (0.1ms) SELECT 1 FROM "model_translations" WHERE ("model_translations"."model_id" = 1 AND "model_translations"."id" != 1 AND "model_translations"."locale" = 'en') LIMIT 1
3478
+  (0.1ms) UPDATE "model_translations" SET "name" = 'new name', "updated_at" = '2014-06-09 18:26:46.135758' WHERE "model_translations"."id" = 1
3479
+  (0.0ms) RELEASE SAVEPOINT active_record_1