uuids 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +17 -12
- data/Rakefile +2 -1
- data/lib/uuids/base.rb +36 -0
- data/lib/uuids/version.rb +1 -1
- data/lib/uuids.rb +1 -0
- data/spec/dummy/app/models/item.rb +4 -0
- data/spec/dummy/db/migrate/20141017081115_create_items.rb +8 -0
- data/spec/dummy/db/schema.rb +6 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +3715 -0
- data/spec/lib/uuids/base_spec.rb +53 -0
- metadata +9 -2
data/spec/dummy/log/test.log
CHANGED
@@ -3902,3 +3902,3718 @@ Migrating to CreateRecords (20141016113016)
|
|
3902
3902
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3903
3903
|
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
3904
3904
|
[1m[35m (0.1ms)[0m rollback transaction
|
3905
|
+
[1m[36m (5.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3906
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3907
|
+
[1m[36m (3.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3908
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3909
|
+
Migrating to CreateUuidsUuids (20141016112506)
|
3910
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3911
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "uuids_uuids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "value" varchar(36) NOT NULL, "record_id" integer NOT NULL, "record_type" varchar(255) NOT NULL)
|
3912
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uuids_uuids_on_record_id_and_record_type" ON "uuids_uuids" ("record_id", "record_type")[0m
|
3913
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
3914
|
+
FROM sqlite_master
|
3915
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
3916
|
+
UNION ALL
|
3917
|
+
SELECT sql
|
3918
|
+
FROM sqlite_temp_master
|
3919
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
3920
|
+
|
3921
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_uuids_uuids_on_value" ON "uuids_uuids" ("value")[0m
|
3922
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016112506"]]
|
3923
|
+
[1m[36m (2.7ms)[0m [1mcommit transaction[0m
|
3924
|
+
Migrating to CreateRecords (20141016113016)
|
3925
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3926
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
3927
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016113016"]]
|
3928
|
+
[1m[36m (2.6ms)[0m [1mcommit transaction[0m
|
3929
|
+
Migrating to CreateItems (20141017081115)
|
3930
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3931
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
3932
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141017081115"]]
|
3933
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
3934
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3935
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
3936
|
+
FROM sqlite_master
|
3937
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
3938
|
+
UNION ALL
|
3939
|
+
SELECT sql
|
3940
|
+
FROM sqlite_temp_master
|
3941
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
3942
|
+
[0m
|
3943
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
3944
|
+
FROM sqlite_master
|
3945
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
3946
|
+
UNION ALL
|
3947
|
+
SELECT sql
|
3948
|
+
FROM sqlite_temp_master
|
3949
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
3950
|
+
|
3951
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3952
|
+
[1m[35m (6.0ms)[0m DELETE FROM "uuids_uuids";
|
3953
|
+
[1m[36m (0.4ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
3954
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
3955
|
+
[1m[36m (3.4ms)[0m [1mDELETE FROM "records";[0m
|
3956
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
3957
|
+
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
3958
|
+
[1m[35m (3.1ms)[0m DELETE FROM "items";
|
3959
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
3960
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
3961
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3962
|
+
[1m[35m (0.1ms)[0m commit transaction
|
3963
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3964
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3965
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 08:42:15.848173"], ["updated_at", "2014-10-17 08:42:15.848173"]]
|
3966
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3967
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3968
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3969
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
3970
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3972
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 08:42:15.861992"], ["updated_at", "2014-10-17 08:42:15.861992"]]
|
3973
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3974
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3975
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "88b63372-baf5-4314-afe5-d083e872ff1c"]]
|
3976
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3977
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3978
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
3979
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
3980
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3981
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
3982
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3983
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3984
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 08:42:15.871395"], ["updated_at", "2014-10-17 08:42:15.871395"]]
|
3985
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3986
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3987
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "cf312e47-b297-4a9a-9e82-6037d6db9203"]]
|
3988
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3989
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3990
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
3991
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3992
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3993
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
3994
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3995
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3996
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 08:42:15.875882"], ["updated_at", "2014-10-17 08:42:15.875882"]]
|
3997
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3998
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3999
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "160f7564-7f29-4276-96d1-5b584871759d"]]
|
4000
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4001
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
4002
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4003
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4004
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4005
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4006
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 08:42:15.881165"], ["updated_at", "2014-10-17 08:42:15.881165"]]
|
4007
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4008
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4009
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "e84868db-7982-4037-b594-b60cda5a3a14"]]
|
4010
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4011
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
4012
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4013
|
+
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
4014
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4015
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
4016
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4017
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4018
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4020
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4021
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 08:42:15.889850"], ["updated_at", "2014-10-17 08:42:15.889850"]]
|
4022
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4024
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "6b964ec2-cfb0-4d9c-b27d-25f77704f93e"]]
|
4025
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4026
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
4027
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
4028
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4029
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4030
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4031
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4032
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4033
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4034
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4035
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4036
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4037
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4038
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4039
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4040
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4041
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4042
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4043
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4044
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4045
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4046
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4047
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4048
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4049
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4050
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4051
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4052
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4053
|
+
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
4054
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4055
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4056
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4057
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4058
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4059
|
+
[1m[35m (2.9ms)[0m DELETE FROM "items";
|
4060
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4061
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4062
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4063
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4064
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4065
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4066
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4067
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4068
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4069
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4070
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4071
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4072
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4073
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4074
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4075
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4076
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4077
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4078
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4079
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4080
|
+
[1m[35m (5.1ms)[0m DELETE FROM "uuids_uuids";
|
4081
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4082
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4083
|
+
[1m[36m (3.3ms)[0m [1mDELETE FROM "records";[0m
|
4084
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4085
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4086
|
+
[1m[35m (2.8ms)[0m DELETE FROM "items";
|
4087
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4088
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4089
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4090
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4091
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4092
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4093
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4094
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4095
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4096
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4097
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4098
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4099
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4100
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4101
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4102
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4103
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4104
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4105
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4106
|
+
[1m[35m (4.2ms)[0m DELETE FROM "uuids_uuids";
|
4107
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4108
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4109
|
+
[1m[36m (2.3ms)[0m [1mDELETE FROM "records";[0m
|
4110
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4111
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4112
|
+
[1m[35m (2.8ms)[0m DELETE FROM "items";
|
4113
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4114
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4115
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4116
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4117
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4118
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4119
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4120
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4121
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4122
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4124
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4125
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4126
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4127
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4128
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4130
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4131
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4132
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
4133
|
+
[1m[36m (0.4ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4134
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4135
|
+
[1m[36m (2.6ms)[0m [1mDELETE FROM "records";[0m
|
4136
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4137
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4138
|
+
[1m[35m (2.8ms)[0m DELETE FROM "items";
|
4139
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4140
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4141
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4142
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4144
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4145
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4146
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4147
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4148
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4149
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4150
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4151
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4152
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4153
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4154
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4155
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4156
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
4157
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4158
|
+
[1m[35m (5.0ms)[0m DELETE FROM "uuids_uuids";
|
4159
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4160
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4161
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4162
|
+
[1m[35m (0.5ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4163
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4164
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4165
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4166
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4167
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4168
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4169
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4170
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4172
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4173
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4174
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4175
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4176
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4177
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4178
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4179
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4180
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4182
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4183
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4184
|
+
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
4185
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4186
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4187
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4188
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4189
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4190
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4191
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4192
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4193
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4194
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4196
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4197
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4198
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4199
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4200
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4202
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4203
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4204
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4205
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4206
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4207
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4208
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4209
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4210
|
+
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
4211
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4212
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4213
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4214
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4215
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4216
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
4217
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4218
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4219
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4220
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4221
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4222
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4223
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4224
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4225
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4226
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4227
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4228
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4229
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4230
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4232
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4233
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4234
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4235
|
+
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
4236
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4237
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4238
|
+
[1m[36m (1.9ms)[0m [1mDELETE FROM "records";[0m
|
4239
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4240
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4241
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4242
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4243
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4245
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4246
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4247
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4248
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4249
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4250
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4251
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4252
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4253
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4255
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4257
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4259
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4260
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4261
|
+
[1m[35m (4.6ms)[0m DELETE FROM "uuids_uuids";
|
4262
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4263
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4264
|
+
[1m[36m (2.0ms)[0m [1mDELETE FROM "records";[0m
|
4265
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4266
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4267
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4268
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4269
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4270
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4271
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4273
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4275
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4276
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4277
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4279
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4280
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4281
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4282
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4283
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4284
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4285
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4286
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4287
|
+
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
4288
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4289
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4290
|
+
[1m[36m (2.3ms)[0m [1mDELETE FROM "records";[0m
|
4291
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4292
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4293
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4294
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4295
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4296
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4297
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4298
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4299
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4300
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4301
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4302
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4303
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4304
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4305
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4307
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4308
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4309
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4310
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4311
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4312
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4313
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4314
|
+
[1m[35m (5.5ms)[0m DELETE FROM "uuids_uuids";
|
4315
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4316
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4317
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4318
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4319
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4320
|
+
[1m[35m (2.9ms)[0m DELETE FROM "items";
|
4321
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4322
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4323
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4324
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4325
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4326
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4327
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4328
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4329
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4330
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4331
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4332
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4333
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4334
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4336
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4337
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4338
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4339
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4340
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4341
|
+
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
4342
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4343
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4344
|
+
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
4345
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4346
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4347
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4348
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4349
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4350
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4351
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4352
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4353
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4354
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4355
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4356
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4357
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4358
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4359
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4361
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4362
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4363
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4364
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4365
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4366
|
+
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
4367
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4368
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4369
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4370
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4371
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4372
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
4373
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4374
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4375
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
4376
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4378
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4379
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4380
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4381
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4382
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4383
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4384
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4386
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4387
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4388
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4389
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4390
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4391
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4392
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4393
|
+
[1m[35m (4.4ms)[0m DELETE FROM "uuids_uuids";
|
4394
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4395
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4396
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4397
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4398
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4399
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
4400
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4401
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4402
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4403
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4404
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4405
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4406
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4407
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4408
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4409
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4410
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4411
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4412
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4413
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4414
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4415
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4416
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4417
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4418
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4419
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4420
|
+
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
4421
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4422
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4423
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4424
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4425
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4426
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4427
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4428
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4429
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4430
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4431
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4432
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4434
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4436
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4437
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4438
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4439
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4440
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4441
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4442
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4443
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4444
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4445
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4446
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4447
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4448
|
+
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
4449
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4450
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4451
|
+
[1m[36m (1.9ms)[0m [1mDELETE FROM "records";[0m
|
4452
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4453
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4454
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4455
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4456
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4457
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4458
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4459
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4460
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4461
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4462
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4463
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4464
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4465
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4466
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4467
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4468
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4469
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4470
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
4471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4472
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4473
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4474
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4475
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4476
|
+
[1m[35m (5.5ms)[0m DELETE FROM "uuids_uuids";
|
4477
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4478
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4479
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4480
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4481
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4482
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4483
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4484
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4485
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4486
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4487
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4488
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4489
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4490
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4491
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4492
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4493
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4494
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4495
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4496
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4497
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4498
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4499
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4500
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4501
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4502
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4503
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4504
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4505
|
+
[1m[35m (5.6ms)[0m DELETE FROM "uuids_uuids";
|
4506
|
+
[1m[36m (0.4ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4507
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4508
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4509
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4510
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4511
|
+
[1m[35m (2.8ms)[0m DELETE FROM "items";
|
4512
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4513
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4514
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4515
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4516
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4518
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4519
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4520
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4521
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4522
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4523
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4524
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4525
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4527
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4528
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4529
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4530
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4531
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4532
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4533
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4534
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4535
|
+
[1m[35m (5.1ms)[0m DELETE FROM "uuids_uuids";
|
4536
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4537
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4538
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4539
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4540
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4541
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
4542
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4543
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4544
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4545
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4546
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4547
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4548
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4549
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4550
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4551
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4552
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4553
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4554
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4555
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4556
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4557
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4558
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4559
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4560
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4561
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4563
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4564
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4565
|
+
[1m[35m (5.5ms)[0m DELETE FROM "uuids_uuids";
|
4566
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4567
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4568
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4569
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4570
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4571
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4572
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4573
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4574
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4575
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4576
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4577
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4578
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4579
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4580
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4581
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4582
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4583
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4584
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4585
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4587
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4588
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4589
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4590
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4591
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4592
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4593
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4594
|
+
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
4595
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4596
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4597
|
+
[1m[36m (2.7ms)[0m [1mDELETE FROM "records";[0m
|
4598
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4599
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4600
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
4601
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4602
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4603
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4604
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4605
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4606
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4607
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4608
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4609
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4610
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4611
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4612
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4614
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4615
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4616
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4617
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4618
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4620
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4621
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4622
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4623
|
+
[1m[35m (5.0ms)[0m DELETE FROM "uuids_uuids";
|
4624
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4625
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4626
|
+
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
4627
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4628
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4629
|
+
[1m[35m (1.9ms)[0m DELETE FROM "items";
|
4630
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4631
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4632
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4633
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4635
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4636
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4637
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4639
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4640
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4641
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4643
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4644
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4645
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4646
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4647
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4649
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4650
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4651
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4652
|
+
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
4653
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4654
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4655
|
+
[1m[36m (2.9ms)[0m [1mDELETE FROM "records";[0m
|
4656
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4657
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4658
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4659
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4660
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4661
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4662
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4663
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4664
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4665
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4666
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4667
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4668
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4669
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4670
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4671
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4672
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4673
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4674
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4675
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4676
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4678
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4679
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4680
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4681
|
+
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
4682
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4683
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4684
|
+
[1m[36m (2.7ms)[0m [1mDELETE FROM "records";[0m
|
4685
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4686
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4687
|
+
[1m[35m (3.4ms)[0m DELETE FROM "items";
|
4688
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4689
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4690
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4691
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4692
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4693
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4694
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4695
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4696
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4697
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4699
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4700
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4701
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4702
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4703
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4704
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4705
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4706
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4707
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4708
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4709
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4710
|
+
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
4711
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4712
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4713
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4714
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4715
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4716
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
4717
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4718
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4719
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4720
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4721
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4722
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4723
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4724
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4725
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4726
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4727
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4728
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4729
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4730
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4731
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4732
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4733
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4734
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4736
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4737
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4738
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4739
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4740
|
+
[1m[35m (5.3ms)[0m DELETE FROM "uuids_uuids";
|
4741
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4742
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4743
|
+
[1m[36m (2.3ms)[0m [1mDELETE FROM "records";[0m
|
4744
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4745
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4746
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4747
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4748
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4749
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4750
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4751
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4752
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4753
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4754
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4755
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4756
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4757
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4758
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4759
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4760
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4762
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4763
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4764
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4765
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4766
|
+
[1m[35m (4.4ms)[0m DELETE FROM "uuids_uuids";
|
4767
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4768
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4769
|
+
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
4770
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4771
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4772
|
+
[1m[35m (2.8ms)[0m DELETE FROM "items";
|
4773
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4774
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4775
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4776
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4777
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4778
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4779
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:31:30.496400"], ["updated_at", "2014-10-17 09:31:30.496400"]]
|
4780
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4781
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4782
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4783
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4784
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4785
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4786
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4787
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4788
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4789
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4790
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4791
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4792
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4793
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4794
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4796
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4797
|
+
[1m[35m (5.0ms)[0m DELETE FROM "uuids_uuids";
|
4798
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4799
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4800
|
+
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
4801
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4802
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4803
|
+
[1m[35m (1.8ms)[0m DELETE FROM "items";
|
4804
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4805
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4806
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4807
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4808
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4809
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4810
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:31:52.358936"], ["updated_at", "2014-10-17 09:31:52.358936"]]
|
4811
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4812
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4813
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
4814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4815
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4817
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4818
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4819
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4820
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4821
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4822
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4823
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4824
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4825
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4827
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4828
|
+
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
4829
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4830
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4831
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
4832
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4833
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4834
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4835
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4836
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4837
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4838
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4840
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4841
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:32:06.161984"], ["updated_at", "2014-10-17 09:32:06.161984"]]
|
4842
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4843
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4844
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
4845
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4846
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4847
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4848
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4849
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:32:06.186805"], ["updated_at", "2014-10-17 09:32:06.186805"]]
|
4850
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4851
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4852
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4853
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4854
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4856
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4857
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4858
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4860
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4862
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4863
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4864
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4865
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4866
|
+
[1m[35m (5.6ms)[0m DELETE FROM "uuids_uuids";
|
4867
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4868
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4869
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4870
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4871
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4872
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4873
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4874
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4875
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4876
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4877
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4878
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4879
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:34:21.495269"], ["updated_at", "2014-10-17 09:34:21.495269"]]
|
4880
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4881
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4882
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
4883
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4884
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4885
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4886
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4887
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4888
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4889
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4890
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4891
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4892
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4893
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:34:21.532469"], ["updated_at", "2014-10-17 09:34:21.532469"]]
|
4894
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4895
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4896
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4897
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4898
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4899
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4900
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4901
|
+
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
4902
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4903
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4904
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4905
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4906
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4907
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
4908
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4909
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4910
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4911
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4912
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4913
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4914
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:34:58.593401"], ["updated_at", "2014-10-17 09:34:58.593401"]]
|
4915
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4916
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4917
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
4918
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4919
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4920
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
4921
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4922
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4923
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
4924
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4925
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4926
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4927
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4928
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4929
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:34:58.630256"], ["updated_at", "2014-10-17 09:34:58.630256"]]
|
4930
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4931
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
4932
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4933
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4934
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
4935
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4936
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4937
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4938
|
+
[1m[35m (5.1ms)[0m DELETE FROM "uuids_uuids";
|
4939
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4940
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4941
|
+
[1m[36m (2.0ms)[0m [1mDELETE FROM "records";[0m
|
4942
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4943
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4944
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4945
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4946
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4947
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4948
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4949
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4950
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4951
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4952
|
+
[1m[35m (0.1ms)[0m commit transaction
|
4953
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4954
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4955
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:35:15.774348"], ["updated_at", "2014-10-17 09:35:15.774348"]]
|
4956
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4957
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4958
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4959
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4960
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4961
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4962
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
4963
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4964
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4965
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4966
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4967
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4968
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:35:15.814600"], ["updated_at", "2014-10-17 09:35:15.814600"]]
|
4969
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4970
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
4971
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
4972
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4973
|
+
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
4974
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4975
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
4976
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
4977
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
4978
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
4979
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
4980
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
4981
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
4982
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4983
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4984
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4985
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4986
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4987
|
+
[1m[35m (0.0ms)[0m commit transaction
|
4988
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4989
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4990
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:35:51.271670"], ["updated_at", "2014-10-17 09:35:51.271670"]]
|
4991
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4992
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
4993
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4994
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
4995
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4996
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4997
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
4998
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4999
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5000
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5001
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5002
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids"[0m
|
5003
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5004
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:35:51.309649"], ["updated_at", "2014-10-17 09:35:51.309649"]]
|
5005
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5006
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids"[0m
|
5007
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5008
|
+
[1m[35m (4.5ms)[0m DELETE FROM "uuids_uuids";
|
5009
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5010
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5011
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5012
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5013
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5014
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
5015
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5016
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5017
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5018
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5020
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5021
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5022
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5023
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5024
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5025
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:36:01.008466"], ["updated_at", "2014-10-17 09:36:01.008466"]]
|
5026
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5027
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5028
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5029
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5030
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5031
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5032
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5033
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
5034
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5035
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5036
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5037
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids"[0m
|
5038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5039
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:36:01.047612"], ["updated_at", "2014-10-17 09:36:01.047612"]]
|
5040
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5041
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "uuids_uuids"[0m
|
5042
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5043
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5044
|
+
[1m[35m (6.1ms)[0m DELETE FROM "uuids_uuids";
|
5045
|
+
[1m[36m (0.4ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5046
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5047
|
+
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
5048
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5049
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5050
|
+
[1m[35m (2.9ms)[0m DELETE FROM "items";
|
5051
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5052
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5053
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5054
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5055
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5056
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "uuids_uuids"
|
5057
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5058
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:36:29.953173"], ["updated_at", "2014-10-17 09:36:29.953173"]]
|
5059
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5060
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "uuids_uuids"
|
5061
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5062
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5063
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5064
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5065
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5066
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5067
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
5068
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5069
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5070
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5071
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5072
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:36:29.996823"], ["updated_at", "2014-10-17 09:36:29.996823"]]
|
5073
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5074
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5075
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5076
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5077
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5078
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5079
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
5080
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5081
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5082
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5083
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5084
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5085
|
+
[1m[35m (2.8ms)[0m DELETE FROM "items";
|
5086
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5087
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5089
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5090
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5091
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5092
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:37:14.320628"], ["updated_at", "2014-10-17 09:37:14.320628"]]
|
5093
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5094
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5095
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5096
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5097
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5098
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5099
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5100
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5101
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5102
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
5103
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5104
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5105
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5106
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5107
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:37:14.345581"], ["updated_at", "2014-10-17 09:37:14.345581"]]
|
5108
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5109
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5111
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5112
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5113
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5114
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5115
|
+
[1m[35m (5.1ms)[0m DELETE FROM "uuids_uuids";
|
5116
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5117
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5118
|
+
[1m[36m (2.3ms)[0m [1mDELETE FROM "records";[0m
|
5119
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5120
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5121
|
+
[1m[35m (2.7ms)[0m DELETE FROM "items";
|
5122
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5123
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5125
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5126
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5127
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5128
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
5129
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5130
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5131
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5132
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5133
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
5134
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:37:49.505217"], ["updated_at", "2014-10-17 09:37:49.505217"]]
|
5135
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
5136
|
+
[1m[36mUuids::Uuid Load (0.2ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5137
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5138
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5139
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5140
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5141
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5142
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5143
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:37:49.520563"], ["updated_at", "2014-10-17 09:37:49.520563"]]
|
5144
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5145
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5147
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5148
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5149
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5150
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5151
|
+
[1m[35m (5.1ms)[0m DELETE FROM "uuids_uuids";
|
5152
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5153
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5154
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
5155
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5156
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5157
|
+
[1m[35m (3.4ms)[0m DELETE FROM "items";
|
5158
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5159
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5161
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5162
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5163
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5164
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:40:08.746027"], ["updated_at", "2014-10-17 09:40:08.746027"]]
|
5165
|
+
[1m[35mItem Load (0.2ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5166
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "f6d7a3e0-b34d-4a83-bfb6-67e30e5619a8"]]
|
5167
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5168
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5169
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5170
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5171
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5173
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5175
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5176
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:40:08.770457"], ["updated_at", "2014-10-17 09:40:08.770457"]]
|
5177
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5178
|
+
[1m[36mUuids::Uuid Load (0.3ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5179
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5180
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
5181
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5182
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5183
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5184
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5185
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:40:08.780389"], ["updated_at", "2014-10-17 09:40:08.780389"]]
|
5186
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5187
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5188
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5189
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5190
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5191
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5192
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5193
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5194
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5195
|
+
[1m[35m (5.5ms)[0m DELETE FROM "uuids_uuids";
|
5196
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5197
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5198
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5199
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5200
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5201
|
+
[1m[35m (2.8ms)[0m DELETE FROM "items";
|
5202
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5203
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5204
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5205
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5206
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5207
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5209
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5210
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5212
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:45:24.589726"], ["updated_at", "2014-10-17 09:45:24.589726"]]
|
5213
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5214
|
+
[1m[36mUuids::Uuid Load (0.2ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5215
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5216
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5217
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5218
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5219
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5220
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5221
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:45:24.601879"], ["updated_at", "2014-10-17 09:45:24.601879"]]
|
5222
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5223
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5224
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5225
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5227
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5228
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:45:24.619344"], ["updated_at", "2014-10-17 09:45:24.619344"]]
|
5229
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5230
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "bd3f88ac-eb7c-48f2-87d7-5d78af814ed2"]]
|
5231
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5232
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5233
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5234
|
+
[1m[36mUuids::Uuid Load (0.2ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5235
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5236
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
5237
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5238
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5239
|
+
[1m[36m (2.9ms)[0m [1mDELETE FROM "records";[0m
|
5240
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5241
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5242
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
5243
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5244
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5245
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5246
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5247
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5248
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5249
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5250
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5252
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5253
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:46:29.266634"], ["updated_at", "2014-10-17 09:46:29.266634"]]
|
5254
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5255
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5256
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5258
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5259
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5260
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5261
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:46:29.287346"], ["updated_at", "2014-10-17 09:46:29.287346"]]
|
5262
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5263
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5264
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5265
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5266
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5267
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5268
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:46:29.301611"], ["updated_at", "2014-10-17 09:46:29.301611"]]
|
5269
|
+
[1m[36mItem Load (0.3ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5270
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "b607b8d4-34aa-43eb-94ab-7b0ddfea1930"]]
|
5271
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5272
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5273
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5274
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5275
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5276
|
+
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
5277
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5278
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5279
|
+
[1m[36m (2.7ms)[0m [1mDELETE FROM "records";[0m
|
5280
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5281
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5282
|
+
[1m[35m (2.7ms)[0m DELETE FROM "items";
|
5283
|
+
[1m[36m (0.5ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5284
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5285
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5286
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5287
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5288
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5290
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5291
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5292
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5293
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:46:48.926798"], ["updated_at", "2014-10-17 09:46:48.926798"]]
|
5294
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5295
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5296
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5297
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5298
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5299
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5300
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5301
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:46:48.936773"], ["updated_at", "2014-10-17 09:46:48.936773"]]
|
5302
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5303
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5304
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5305
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5306
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5307
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5308
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:46:48.952310"], ["updated_at", "2014-10-17 09:46:48.952310"]]
|
5309
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5310
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "deb2d14c-a253-476f-ac2c-c3810142661a"]]
|
5311
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5312
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5313
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5314
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5315
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5316
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5317
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
5318
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5319
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5320
|
+
[1m[36m (3.0ms)[0m [1mDELETE FROM "records";[0m
|
5321
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5322
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5323
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
5324
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5325
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5326
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5327
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5328
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5329
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5330
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5331
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5332
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5333
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5334
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:47:37.139874"], ["updated_at", "2014-10-17 09:47:37.139874"]]
|
5335
|
+
[1m[35mItem Load (0.4ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5336
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "31e875ea-4d3c-4809-8042-32fa9d882f82"]]
|
5337
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5338
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5339
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1) [["record_id", 1], ["record_type", "Item"]]
|
5340
|
+
SQLite3::ConstraintException: NOT NULL constraint failed: uuids_uuids.record_id: UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1)
|
5341
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
5342
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5343
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5344
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5346
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5347
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:47:37.191703"], ["updated_at", "2014-10-17 09:47:37.191703"]]
|
5348
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5349
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "ff951329-5ead-4b21-94aa-2939c4aeac0e"]]
|
5350
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5351
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5352
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5353
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5354
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5355
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5356
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5357
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5358
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5359
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:47:37.202693"], ["updated_at", "2014-10-17 09:47:37.202693"]]
|
5360
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5361
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "c66d3e84-d970-44ad-ba79-7c60f6c44430"]]
|
5362
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5363
|
+
[1m[36mUuids::Uuid Load (0.2ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5364
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5365
|
+
[1m[35m (4.0ms)[0m DELETE FROM "uuids_uuids";
|
5366
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5367
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5368
|
+
[1m[36m (2.2ms)[0m [1mDELETE FROM "records";[0m
|
5369
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5370
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5371
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
5372
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5373
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5374
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5375
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5376
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5377
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5378
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5379
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5381
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5382
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:48:05.917047"], ["updated_at", "2014-10-17 09:48:05.917047"]]
|
5383
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5384
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "83ed25c6-d895-40ef-b9dd-bff2a2f0c001"]]
|
5385
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5386
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5387
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1) [["record_id", 1], ["record_type", "Item"]]
|
5388
|
+
SQLite3::ConstraintException: NOT NULL constraint failed: uuids_uuids.record_id: UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1)
|
5389
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
5390
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5391
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5392
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5394
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5395
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:48:05.949990"], ["updated_at", "2014-10-17 09:48:05.949990"]]
|
5396
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5397
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "ac191458-70ca-496d-886f-81d6409a88db"]]
|
5398
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5399
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5400
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5401
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5402
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5403
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5404
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5405
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5406
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5407
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:48:05.957908"], ["updated_at", "2014-10-17 09:48:05.957908"]]
|
5408
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5409
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "512979da-a46f-4de9-bbaf-6eb38c0cda2b"]]
|
5410
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5411
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5412
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5413
|
+
[1m[35m (5.9ms)[0m DELETE FROM "uuids_uuids";
|
5414
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5415
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5416
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5417
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5418
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5419
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
5420
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5421
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5422
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5423
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5424
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5425
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5426
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5427
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5428
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5430
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:50:18.545656"], ["updated_at", "2014-10-17 09:50:18.545656"]]
|
5431
|
+
[1m[35mItem Load (0.2ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5432
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "564e0dd1-592d-44b1-8537-43f79398919d"]]
|
5433
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5434
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5435
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1) [["record_id", 1], ["record_type", "Item"]]
|
5436
|
+
SQLite3::ConstraintException: NOT NULL constraint failed: uuids_uuids.record_id: UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1)
|
5437
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
5438
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5439
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5440
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5441
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5442
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5443
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:50:18.579487"], ["updated_at", "2014-10-17 09:50:18.579487"]]
|
5444
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5445
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "1174bbe7-a2b1-4342-80e7-6bbf2fc6f6f4"]]
|
5446
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5447
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5448
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5449
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5450
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5451
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5452
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5454
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5455
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:50:18.587377"], ["updated_at", "2014-10-17 09:50:18.587377"]]
|
5456
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5457
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "d2124565-3c18-408a-95e6-90045f1eb784"]]
|
5458
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5459
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5460
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5461
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5462
|
+
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
5463
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5464
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5465
|
+
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
5466
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5467
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5468
|
+
[1m[35m (1.9ms)[0m DELETE FROM "items";
|
5469
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5470
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5472
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5473
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5474
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5476
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5477
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5478
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5479
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:16.355527"], ["updated_at", "2014-10-17 09:52:16.355527"]]
|
5480
|
+
[1m[35mItem Load (0.2ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5481
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "5106ef86-5776-40fe-a765-ce42c0eba8d9"]]
|
5482
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5483
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5484
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1) [["record_id", 1], ["record_type", "Item"]]
|
5485
|
+
SQLite3::ConstraintException: NOT NULL constraint failed: uuids_uuids.record_id: UPDATE "uuids_uuids" SET "record_id" = NULL WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? AND "uuids_uuids"."id" IN (1)
|
5486
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
5487
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5489
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5490
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5491
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5492
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:16.402072"], ["updated_at", "2014-10-17 09:52:16.402072"]]
|
5493
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5494
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "78c9254d-dc3b-47fe-b97b-aeb02e070d62"]]
|
5495
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5496
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5497
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5498
|
+
[1m[36mUuids::Uuid Load (0.2ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5499
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5500
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5501
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5502
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5503
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5504
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:16.412603"], ["updated_at", "2014-10-17 09:52:16.412603"]]
|
5505
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5506
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "f965e5b6-ac9a-4099-8702-3cfa9245c619"]]
|
5507
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5508
|
+
[1m[36mUuids::Uuid Load (0.2ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5509
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5510
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
5511
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5512
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5513
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
5514
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5515
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5516
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
5517
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5518
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5519
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5520
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5521
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5522
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5524
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5525
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5526
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5527
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:30.448245"], ["updated_at", "2014-10-17 09:52:30.448245"]]
|
5528
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5529
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "4f29eed4-bb96-4c1d-a8ce-7167ce49bd77"]]
|
5530
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5531
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5532
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5534
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5535
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5537
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:30.480795"], ["updated_at", "2014-10-17 09:52:30.480795"]]
|
5538
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5539
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "1edadfc2-b440-497f-97a5-a84290f8dd6a"]]
|
5540
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5541
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5542
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5543
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5544
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5545
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5546
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5547
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5548
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5549
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:30.488508"], ["updated_at", "2014-10-17 09:52:30.488508"]]
|
5550
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5551
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "67a3ee03-6666-433f-954e-ea805917791d"]]
|
5552
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5553
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5554
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5555
|
+
[1m[35m (4.3ms)[0m DELETE FROM "uuids_uuids";
|
5556
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5557
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5558
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
5559
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5560
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5561
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
5562
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5563
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5564
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5565
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5566
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5567
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5568
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5569
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5570
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5572
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:54.871833"], ["updated_at", "2014-10-17 09:52:54.871833"]]
|
5573
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5574
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "bf601a8d-ee69-4a13-8463-acc011496682"]]
|
5575
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5576
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5577
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5578
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5579
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5580
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5581
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5583
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5584
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:54.909862"], ["updated_at", "2014-10-17 09:52:54.909862"]]
|
5585
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5586
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "31f7e948-b8fa-4430-852b-9dad76abd7ae"]]
|
5587
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5588
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5589
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5590
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5591
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5592
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5593
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5594
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5595
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5596
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:52:54.917316"], ["updated_at", "2014-10-17 09:52:54.917316"]]
|
5597
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5598
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "2b2043b5-3bf1-40f4-a270-6b2d4b047718"]]
|
5599
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5600
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5601
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5602
|
+
[1m[35m (5.0ms)[0m DELETE FROM "uuids_uuids";
|
5603
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5604
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5605
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5606
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5607
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5608
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
5609
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5610
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5611
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5612
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5614
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5615
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5616
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5617
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5618
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5619
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:53:37.291753"], ["updated_at", "2014-10-17 09:53:37.291753"]]
|
5620
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5621
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "f96371e1-17cd-4127-ab6b-4af1eeca212b"]]
|
5622
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5623
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5624
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5625
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5626
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5627
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5628
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5629
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5630
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5631
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:53:37.330993"], ["updated_at", "2014-10-17 09:53:37.330993"]]
|
5632
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5633
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "91bd8c8e-3c3d-4fd0-9d20-189df7432a06"]]
|
5634
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5635
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5636
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5637
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5638
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5639
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5640
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5641
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5642
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5643
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:53:37.338796"], ["updated_at", "2014-10-17 09:53:37.338796"]]
|
5644
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5645
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "70a337bd-8507-4ba1-923a-30227a075b31"]]
|
5646
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5647
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5648
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5649
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
5650
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5651
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5652
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5653
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5654
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5655
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
5656
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5657
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5658
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5659
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5660
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5661
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5662
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5663
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5664
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5665
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5666
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:55:22.499586"], ["updated_at", "2014-10-17 09:55:22.499586"]]
|
5667
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5668
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "1e1ff7b7-27ef-49aa-9874-6f011a22b9e3"]]
|
5669
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5670
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5671
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5672
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5673
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5674
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5675
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5676
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5677
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5678
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:55:22.537753"], ["updated_at", "2014-10-17 09:55:22.537753"]]
|
5679
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5680
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "c274db7d-abb6-4e58-a765-9c44a2032016"]]
|
5681
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5682
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5683
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "items" WHERE "items"."id" = ? [["id", 1]]
|
5684
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5685
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5686
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5687
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5689
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5690
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:55:22.547614"], ["updated_at", "2014-10-17 09:55:22.547614"]]
|
5691
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5692
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "83f814c8-2274-483e-99d4-c9dfcab54223"]]
|
5693
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5694
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5695
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5696
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
5697
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5699
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5700
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5701
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5702
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:55:22.556281"], ["updated_at", "2014-10-17 09:55:22.556281"]]
|
5703
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5704
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "e1c5fc7d-679e-4c98-ae93-ed29be5a7c68"]]
|
5705
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5706
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5707
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5708
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5709
|
+
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
5710
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5711
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5712
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
5713
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5714
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5715
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
5716
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5717
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5718
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5719
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5720
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5721
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5722
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:55:35.685680"], ["updated_at", "2014-10-17 09:55:35.685680"]]
|
5723
|
+
[1m[35mItem Load (0.2ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5724
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "4b1c71fc-bcba-4f88-ba92-dbe479e5e2cd"]]
|
5725
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5726
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5727
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5728
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5729
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5730
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5731
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5732
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
5733
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5734
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5735
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5736
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5737
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5738
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5739
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:55:35.725790"], ["updated_at", "2014-10-17 09:55:35.725790"]]
|
5740
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5741
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "b82a5795-c961-4568-b28f-a97b278361a0"]]
|
5742
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5743
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5744
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5745
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5746
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5747
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5748
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5749
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:55:35.732409"], ["updated_at", "2014-10-17 09:55:35.732409"]]
|
5750
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5751
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "d4be8559-5faa-4a2a-b23a-8e5577790701"]]
|
5752
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5753
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
5754
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5755
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5756
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5757
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5758
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
5759
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5760
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5761
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:55:35.744279"], ["updated_at", "2014-10-17 09:55:35.744279"]]
|
5762
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5763
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "fe93acd3-6b59-4b83-b926-cc0168d3458a"]]
|
5764
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5765
|
+
[1m[35mUuids::Uuid Load (0.2ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5766
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5767
|
+
[1m[35mUuids::Uuid Load (0.2ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5768
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5769
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5770
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5771
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5772
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5773
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5774
|
+
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
5775
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5776
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5777
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
5778
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5779
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5780
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
5781
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5782
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5783
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5784
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5785
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5786
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5787
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5788
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5789
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5790
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5791
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5792
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5793
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5794
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5796
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5797
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5798
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5799
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5800
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5801
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5802
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5803
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5804
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5805
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5806
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5807
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5808
|
+
[1m[35m (5.5ms)[0m DELETE FROM "uuids_uuids";
|
5809
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5810
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5811
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5812
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5813
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5814
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
5815
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5816
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5817
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5818
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5819
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5820
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5821
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5822
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5823
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5824
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5825
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5826
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5827
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5828
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5829
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5830
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5831
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5832
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5833
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5834
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5835
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5836
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5837
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5838
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
5839
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5840
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5841
|
+
[1m[36m (2.7ms)[0m [1mDELETE FROM "records";[0m
|
5842
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5843
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5844
|
+
[1m[35m (3.0ms)[0m DELETE FROM "items";
|
5845
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5846
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5847
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5848
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5849
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5850
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5851
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5852
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5853
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5854
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5856
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5857
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5858
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5860
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5862
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5863
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5864
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5865
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5866
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5867
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5868
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5869
|
+
[1m[35m (4.6ms)[0m DELETE FROM "uuids_uuids";
|
5870
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5871
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5872
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5873
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5874
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5875
|
+
[1m[35m (2.3ms)[0m DELETE FROM "items";
|
5876
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5877
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5878
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5879
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5880
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5881
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5882
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 09:59:50.286882"], ["updated_at", "2014-10-17 09:59:50.286882"]]
|
5883
|
+
[1m[35mItem Load (0.2ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5884
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "144b5ad9-c32e-4434-a2cc-fd87443714a6"]]
|
5885
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5886
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5887
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5888
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5889
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5890
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5891
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5892
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
5893
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5894
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5895
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5896
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5897
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:59:50.328207"], ["updated_at", "2014-10-17 09:59:50.328207"]]
|
5898
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5899
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "69e6f775-4caa-4e65-aeed-98eb8a4eb39a"]]
|
5900
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5901
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5902
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5903
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5904
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5905
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5906
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5907
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5908
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5909
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:59:50.337325"], ["updated_at", "2014-10-17 09:59:50.337325"]]
|
5910
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5911
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "d0c1726e-40e8-49f6-afd5-a69f2aa9c4b5"]]
|
5912
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5913
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5914
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5915
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5916
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5917
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5918
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5919
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 09:59:50.345068"], ["updated_at", "2014-10-17 09:59:50.345068"]]
|
5920
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5921
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "77e5c5b5-23c5-4684-9fd1-23839a1c993f"]]
|
5922
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5923
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
5924
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5925
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
5926
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5927
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5928
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5929
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5930
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5931
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5932
|
+
[1m[35m (5.3ms)[0m DELETE FROM "uuids_uuids";
|
5933
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5934
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5935
|
+
[1m[36m (3.0ms)[0m [1mDELETE FROM "records";[0m
|
5936
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
5937
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
5938
|
+
[1m[35m (3.0ms)[0m DELETE FROM "items";
|
5939
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5940
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
5941
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5942
|
+
[1m[35m (0.0ms)[0m commit transaction
|
5943
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5944
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5945
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:00:29.213157"], ["updated_at", "2014-10-17 10:00:29.213157"]]
|
5946
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5947
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "6317878f-bbf1-481c-8b57-090f96ba88f7"]]
|
5948
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
5949
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5950
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5951
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5952
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
5953
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
5954
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5955
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5956
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5957
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:00:29.255753"], ["updated_at", "2014-10-17 10:00:29.255753"]]
|
5958
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5959
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "dffc8f57-3b64-4a5a-b971-7bfb17210b13"]]
|
5960
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5961
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
5962
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5963
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5964
|
+
[1m[35m (0.1ms)[0m commit transaction
|
5965
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5966
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5967
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:00:29.266248"], ["updated_at", "2014-10-17 10:00:29.266248"]]
|
5968
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5969
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "5495d987-44f5-4025-b24d-8e152f275629"]]
|
5970
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5971
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5972
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5973
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
5974
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
5975
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5976
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
5977
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
5978
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5979
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5980
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5981
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5982
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:00:29.282391"], ["updated_at", "2014-10-17 10:00:29.282391"]]
|
5983
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5984
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "5c9240e0-2c9e-42d0-acbd-03a3a6d74032"]]
|
5985
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5986
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5987
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
5988
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
5989
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5990
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5991
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
5992
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5993
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5994
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5995
|
+
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
5996
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
5997
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
5998
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
5999
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6000
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6001
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
6002
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6003
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6005
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6006
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6007
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6008
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6009
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6010
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6011
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6012
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:01:18.795237"], ["updated_at", "2014-10-17 10:01:18.795237"]]
|
6013
|
+
[1m[35mItem Load (0.3ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6014
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "f0439351-3425-48d4-b671-85c92d9fbffa"]]
|
6015
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6016
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6017
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6018
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6019
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6020
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6021
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6022
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:01:18.828588"], ["updated_at", "2014-10-17 10:01:18.828588"]]
|
6023
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6024
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "521c5147-9554-4e85-b4ac-d9d5c62ba572"]]
|
6025
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6026
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6027
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6028
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6029
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6030
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6031
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6032
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6033
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6034
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:01:18.837588"], ["updated_at", "2014-10-17 10:01:18.837588"]]
|
6035
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6036
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "ee5a4ad7-fc24-4bc3-8da4-6a70d00a597c"]]
|
6037
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6038
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6039
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6040
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6041
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6042
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6043
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6044
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6045
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6046
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:01:18.855358"], ["updated_at", "2014-10-17 10:01:18.855358"]]
|
6047
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6048
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "47d7be10-becd-4689-b577-1bf315bae845"]]
|
6049
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6050
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6051
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6052
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6053
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6054
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6055
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6056
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
6057
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6058
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6059
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6060
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6061
|
+
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
6062
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6063
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6064
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
6065
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6066
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6067
|
+
[1m[35m (2.7ms)[0m DELETE FROM "items";
|
6068
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6069
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6070
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6071
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6072
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6073
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6074
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:02:41.072849"], ["updated_at", "2014-10-17 10:02:41.072849"]]
|
6075
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6076
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "788e4303-fa50-4c2c-8420-a04852b15a2c"]]
|
6077
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6078
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6079
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6080
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6081
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6082
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6083
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6084
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6085
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6086
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:02:41.110768"], ["updated_at", "2014-10-17 10:02:41.110768"]]
|
6087
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6088
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "9dcf0053-7101-49d6-b90d-6132f1c8705a"]]
|
6089
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6090
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6091
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6092
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6093
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6094
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6095
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6096
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
6097
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6098
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6099
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6100
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6101
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6102
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6103
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:02:41.121238"], ["updated_at", "2014-10-17 10:02:41.121238"]]
|
6104
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6105
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "75e28f48-0b89-4077-84a9-f40a34072e75"]]
|
6106
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6107
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6108
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6109
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6110
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6111
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6112
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6113
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:02:41.131452"], ["updated_at", "2014-10-17 10:02:41.131452"]]
|
6114
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6115
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "b0cca151-1420-47b3-aa98-9c8ef259e848"]]
|
6116
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6117
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
6118
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6119
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
6120
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6121
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6122
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6123
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6124
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6125
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6126
|
+
[1m[35m (5.3ms)[0m DELETE FROM "uuids_uuids";
|
6127
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6128
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6129
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
6130
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6131
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6132
|
+
[1m[35m (2.7ms)[0m DELETE FROM "items";
|
6133
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6134
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6135
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6136
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6138
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6139
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6140
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6142
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6143
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:03:04.799735"], ["updated_at", "2014-10-17 10:03:04.799735"]]
|
6144
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6145
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "7285f1ed-d6e4-4b2f-9529-655dbadba217"]]
|
6146
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6147
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6148
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6149
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6150
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6151
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6152
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6153
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
6154
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6155
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6156
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6157
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
6158
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6159
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6160
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6161
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6162
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6163
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
6164
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6165
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6166
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:03:04.846318"], ["updated_at", "2014-10-17 10:03:04.846318"]]
|
6167
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6168
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "ed320a97-72a4-420d-8026-1c6d26814309"]]
|
6169
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6170
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
6171
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6172
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6173
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6174
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6175
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
6176
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6177
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6178
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:03:04.857350"], ["updated_at", "2014-10-17 10:03:04.857350"]]
|
6179
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6180
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "de46a3a2-d914-41ce-9eba-0d5149a11900"]]
|
6181
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6182
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6183
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6184
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6185
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6186
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6187
|
+
[1m[35m (5.1ms)[0m DELETE FROM "uuids_uuids";
|
6188
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6189
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6190
|
+
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
6191
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6192
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6193
|
+
[1m[35m (2.0ms)[0m DELETE FROM "items";
|
6194
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6195
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6197
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6198
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6199
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6200
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6201
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6203
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6204
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:04:05.238128"], ["updated_at", "2014-10-17 10:04:05.238128"]]
|
6205
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6206
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "5711cc2b-c320-4d62-8295-e89748c583fc"]]
|
6207
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6208
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6209
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6210
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6211
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6212
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6213
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6214
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6215
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6216
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:04:05.256278"], ["updated_at", "2014-10-17 10:04:05.256278"]]
|
6217
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6218
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "d036640e-5811-4c08-b5b9-64f188704cf1"]]
|
6219
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6220
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6221
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6222
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6223
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6224
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6225
|
+
[1m[35m (0.1ms)[0m commit transaction
|
6226
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6227
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6228
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:04:05.275633"], ["updated_at", "2014-10-17 10:04:05.275633"]]
|
6229
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6230
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "02ebcde4-bd40-4687-9925-91f4b19f8bfc"]]
|
6231
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6232
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6233
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6235
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6236
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6237
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6238
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:04:05.283538"], ["updated_at", "2014-10-17 10:04:05.283538"]]
|
6239
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6240
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "e7b7e6c7-e3a6-4cac-bace-bc3ed3f0548e"]]
|
6241
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6242
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6243
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6244
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6245
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6246
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6247
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6248
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
6249
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6250
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6251
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6252
|
+
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
6253
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6254
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6255
|
+
[1m[36m (3.0ms)[0m [1mDELETE FROM "records";[0m
|
6256
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6257
|
+
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6258
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
6259
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6260
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6261
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6262
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6263
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6264
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6265
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6266
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6267
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6268
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6269
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:06:55.868585"], ["updated_at", "2014-10-17 10:06:55.868585"]]
|
6270
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6271
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "62b44ba8-002b-4956-bca6-8808b24ca47a"]]
|
6272
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6273
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6274
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6275
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6276
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6277
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6278
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6279
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:06:55.892971"], ["updated_at", "2014-10-17 10:06:55.892971"]]
|
6280
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6281
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "2caa2375-c5db-4b3d-9370-34120ddb9d88"]]
|
6282
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6283
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6284
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6285
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6286
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6287
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6288
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6290
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6291
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:06:55.899416"], ["updated_at", "2014-10-17 10:06:55.899416"]]
|
6292
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6293
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "fb576a75-7734-48d4-8184-3d05d89a4a07"]]
|
6294
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6295
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6296
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6297
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6298
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6299
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6300
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6302
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6303
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:06:55.914140"], ["updated_at", "2014-10-17 10:06:55.914140"]]
|
6304
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6305
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "36f1817d-13bf-4313-b2b0-c7c160d6ee60"]]
|
6306
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6307
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6308
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6309
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6310
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6311
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6312
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6313
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
6314
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6315
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6316
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6317
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6318
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6319
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6320
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:06:55.924123"], ["updated_at", "2014-10-17 10:06:55.924123"]]
|
6321
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6322
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6323
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "bad9440f-cf06-401c-b760-bed2f2b82ece"]]
|
6324
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6325
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6326
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6327
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6328
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6329
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6330
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6331
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6332
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:06:55.931877"], ["updated_at", "2014-10-17 10:06:55.931877"]]
|
6333
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6334
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6335
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "49d7312e-fd76-4727-8dd7-f1df8e305c2c"]]
|
6336
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6337
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6338
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6339
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6340
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6341
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6342
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6343
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6344
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:06:55.936196"], ["updated_at", "2014-10-17 10:06:55.936196"]]
|
6345
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6346
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6347
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "263cd787-b00d-4fcb-ad17-f2a826bb8a87"]]
|
6348
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6349
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
6350
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6351
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6352
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6353
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6354
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6355
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:06:55.940101"], ["updated_at", "2014-10-17 10:06:55.940101"]]
|
6356
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6357
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6358
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "fd3b13b6-0694-4ca6-b6ce-b833bcc2c31a"]]
|
6359
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6360
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6361
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6362
|
+
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
6363
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6364
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6365
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6366
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6367
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6368
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6369
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6370
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6371
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6372
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6373
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6374
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6375
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6376
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6377
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6378
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:06:55.947832"], ["updated_at", "2014-10-17 10:06:55.947832"]]
|
6379
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6380
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6381
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6382
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6383
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6384
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6385
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:06:55.950584"], ["updated_at", "2014-10-17 10:06:55.950584"]]
|
6386
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6387
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6388
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "ae85aa29-72f4-4523-a04f-336fb899b36d"]]
|
6389
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6390
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6391
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6392
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
6393
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
6394
|
+
FROM sqlite_master
|
6395
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6396
|
+
UNION ALL
|
6397
|
+
SELECT sql
|
6398
|
+
FROM sqlite_temp_master
|
6399
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6400
|
+
[0m
|
6401
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
6402
|
+
FROM sqlite_master
|
6403
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6404
|
+
UNION ALL
|
6405
|
+
SELECT sql
|
6406
|
+
FROM sqlite_temp_master
|
6407
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6408
|
+
|
6409
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6410
|
+
[1m[35m (5.1ms)[0m DELETE FROM "uuids_uuids";
|
6411
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6412
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6413
|
+
[1m[36m (2.9ms)[0m [1mDELETE FROM "records";[0m
|
6414
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6415
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6416
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
6417
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6418
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6419
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6420
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6421
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6422
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6423
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6424
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6426
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6427
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:07:06.028230"], ["updated_at", "2014-10-17 10:07:06.028230"]]
|
6428
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6429
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "9a00bdac-925a-4ebe-b31a-7d14bdf7a9c0"]]
|
6430
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6431
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6432
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6433
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6434
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6435
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6436
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6437
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6438
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6439
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:07:06.060374"], ["updated_at", "2014-10-17 10:07:06.060374"]]
|
6440
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6441
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "827a5180-617b-4de8-a027-f9052d428634"]]
|
6442
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6443
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6444
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6445
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6446
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6448
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6449
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6450
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6451
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:07:06.068589"], ["updated_at", "2014-10-17 10:07:06.068589"]]
|
6452
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6453
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "53244dab-ced2-479e-92b6-1b136ce13683"]]
|
6454
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6455
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6456
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6457
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6458
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6459
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6460
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6461
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:07:06.074985"], ["updated_at", "2014-10-17 10:07:06.074985"]]
|
6462
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6463
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "4ef02de2-e78c-4270-ba50-aff24244bff9"]]
|
6464
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6465
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6466
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6467
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6468
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6469
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6470
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6471
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
6472
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6473
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6474
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6475
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6476
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6477
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6478
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:07:06.085692"], ["updated_at", "2014-10-17 10:07:06.085692"]]
|
6479
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6480
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6481
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "94a5e01d-9ed0-421d-bf0a-eeda3593341a"]]
|
6482
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6483
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6484
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6485
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6486
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6487
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6488
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6489
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6490
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:07:06.093888"], ["updated_at", "2014-10-17 10:07:06.093888"]]
|
6491
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6492
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6493
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "252e7bf3-e210-4d60-956e-c6f64c290de6"]]
|
6494
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6495
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6496
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6497
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6498
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6499
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6500
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6501
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6502
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:07:06.098872"], ["updated_at", "2014-10-17 10:07:06.098872"]]
|
6503
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6504
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6505
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6506
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6507
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6508
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6509
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:07:06.101749"], ["updated_at", "2014-10-17 10:07:06.101749"]]
|
6510
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6511
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6512
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "c4fa5c32-88ef-425a-a15b-ef2ed4b30ed2"]]
|
6513
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6514
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6516
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6517
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6518
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6519
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:07:06.105932"], ["updated_at", "2014-10-17 10:07:06.105932"]]
|
6520
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6521
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6522
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "2f654cba-0a05-4957-9411-acaf2a8afd76"]]
|
6523
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6524
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6525
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6526
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6527
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6528
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6529
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6530
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:07:06.110241"], ["updated_at", "2014-10-17 10:07:06.110241"]]
|
6531
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6532
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6533
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "7822aa13-77f6-4d5e-acb4-aff64ae5322c"]]
|
6534
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6535
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
6536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6537
|
+
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
6538
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6539
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
6540
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6541
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6542
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6543
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6544
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6545
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6546
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6547
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6548
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6549
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6550
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
6551
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
6552
|
+
FROM sqlite_master
|
6553
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6554
|
+
UNION ALL
|
6555
|
+
SELECT sql
|
6556
|
+
FROM sqlite_temp_master
|
6557
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6558
|
+
[0m
|
6559
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
6560
|
+
FROM sqlite_master
|
6561
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6562
|
+
UNION ALL
|
6563
|
+
SELECT sql
|
6564
|
+
FROM sqlite_temp_master
|
6565
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6566
|
+
|
6567
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6568
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
6569
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6570
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6571
|
+
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
6572
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6573
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6574
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
6575
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6576
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6577
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6578
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6579
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6580
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6581
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.781611"], ["updated_at", "2014-10-17 10:08:18.781611"]]
|
6582
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6583
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6584
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "1ab3f474-7be9-44d0-9ac4-8c15b38d35c8"]]
|
6585
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6586
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6587
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6588
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6589
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6590
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6591
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.798329"], ["updated_at", "2014-10-17 10:08:18.798329"]]
|
6592
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6593
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6594
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "4e65cb15-7d88-4b53-a6fe-a40f4cc9f7b2"]]
|
6595
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6596
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6597
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
6598
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6599
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6600
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6601
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6602
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6603
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.803686"], ["updated_at", "2014-10-17 10:08:18.803686"]]
|
6604
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6605
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6606
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "83081b0a-a645-48e2-aaa8-27539feb17f3"]]
|
6607
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6608
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6609
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
6610
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6611
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6612
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6614
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6615
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.807983"], ["updated_at", "2014-10-17 10:08:18.807983"]]
|
6616
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6617
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6618
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "fded44e4-c588-449e-8c49-600c7e6eb295"]]
|
6619
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6620
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6621
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6622
|
+
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
6623
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6624
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6625
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6626
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6627
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6628
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6629
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6630
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:08:18.816778"], ["updated_at", "2014-10-17 10:08:18.816778"]]
|
6631
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6632
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6633
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "4ba9f531-9f9d-4e5c-9fa6-85c21910c78b"]]
|
6634
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6635
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
6636
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6637
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6638
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6639
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6640
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6641
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.821902"], ["updated_at", "2014-10-17 10:08:18.821902"]]
|
6642
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6643
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6644
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6645
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6646
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6647
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6648
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6649
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6650
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6651
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6652
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6653
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6654
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6655
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6656
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:08:18.830372"], ["updated_at", "2014-10-17 10:08:18.830372"]]
|
6657
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6658
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "3df3d756-1b34-426e-b555-031955892c5c"]]
|
6659
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6660
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6661
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
6662
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
6663
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6664
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6665
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6666
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "items" WHERE "items"."id" = ? [["id", 1]]
|
6667
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6668
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6669
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6670
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6671
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6672
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6673
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.847776"], ["updated_at", "2014-10-17 10:08:18.847776"]]
|
6674
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6675
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "64f603d0-c332-44e8-a270-ba8c6509ada3"]]
|
6676
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6677
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6678
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6679
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6680
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6681
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6682
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6683
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.854452"], ["updated_at", "2014-10-17 10:08:18.854452"]]
|
6684
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6685
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "5b254621-e187-43fc-b3fd-b4d24420f5b0"]]
|
6686
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6687
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6688
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6689
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
6690
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6691
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6692
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6693
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6694
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6695
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:08:18.864038"], ["updated_at", "2014-10-17 10:08:18.864038"]]
|
6696
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6697
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "30fd208b-d9a0-4d37-a4ca-61c4946596e9"]]
|
6698
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6699
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6700
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6701
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6702
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6703
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6704
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6706
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6707
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6708
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
6709
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
6710
|
+
FROM sqlite_master
|
6711
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6712
|
+
UNION ALL
|
6713
|
+
SELECT sql
|
6714
|
+
FROM sqlite_temp_master
|
6715
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6716
|
+
[0m
|
6717
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
6718
|
+
FROM sqlite_master
|
6719
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6720
|
+
UNION ALL
|
6721
|
+
SELECT sql
|
6722
|
+
FROM sqlite_temp_master
|
6723
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6724
|
+
|
6725
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6726
|
+
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
6727
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6728
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6729
|
+
[1m[36m (2.6ms)[0m [1mDELETE FROM "records";[0m
|
6730
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6731
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6732
|
+
[1m[35m (2.9ms)[0m DELETE FROM "items";
|
6733
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6734
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6736
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6737
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6738
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6739
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6740
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6741
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6742
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6743
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:09:49.818647"], ["updated_at", "2014-10-17 10:09:49.818647"]]
|
6744
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6745
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "631457a8-2cfa-4303-9d01-73ad7e25b436"]]
|
6746
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6747
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6748
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6749
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
6750
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6751
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6752
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6753
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6754
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6755
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:09:49.832062"], ["updated_at", "2014-10-17 10:09:49.832062"]]
|
6756
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6757
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "f5810eee-373f-4016-bfcb-e7e4d8c6273e"]]
|
6758
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6759
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6760
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6761
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
6762
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
6763
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6764
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6765
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
6766
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6767
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6768
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6769
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6770
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6771
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6772
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:09:49.842426"], ["updated_at", "2014-10-17 10:09:49.842426"]]
|
6773
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6774
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "70e407bd-ea04-42cf-a633-849ca576ba78"]]
|
6775
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6776
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
6777
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6778
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6779
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6780
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6781
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6782
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6783
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6784
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:09:49.855117"], ["updated_at", "2014-10-17 10:09:49.855117"]]
|
6785
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6786
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "0811c1ce-7ac0-420c-873d-2780ceee86dc"]]
|
6787
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6788
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
6789
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6790
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6791
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6792
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6793
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6794
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:09:49.863796"], ["updated_at", "2014-10-17 10:09:49.863796"]]
|
6795
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6796
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6797
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "478ab270-2b10-4e9e-87d2-25344f3743a3"]]
|
6798
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6799
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6800
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6801
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6802
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6803
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6804
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6805
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6806
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6807
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6808
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6809
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6810
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6811
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6812
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:09:49.872466"], ["updated_at", "2014-10-17 10:09:49.872466"]]
|
6813
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6814
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6815
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "9042d9d7-7290-4d57-b4d8-e17ffe4ca168"]]
|
6816
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6817
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6818
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6819
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6820
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6821
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6822
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6823
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6824
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:09:49.879002"], ["updated_at", "2014-10-17 10:09:49.879002"]]
|
6825
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6826
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6827
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "dfeb7e28-0926-4bde-98c8-1eb2d68dee85"]]
|
6828
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6829
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6830
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6831
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6832
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6833
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6834
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6835
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6836
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:09:49.883329"], ["updated_at", "2014-10-17 10:09:49.883329"]]
|
6837
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6838
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6840
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6841
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6843
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:09:49.886066"], ["updated_at", "2014-10-17 10:09:49.886066"]]
|
6844
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6845
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6846
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "39229629-626b-422a-83d4-2df08ab027ab"]]
|
6847
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6848
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6849
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6850
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6851
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6852
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6853
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6854
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:09:49.890220"], ["updated_at", "2014-10-17 10:09:49.890220"]]
|
6855
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6856
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6857
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "094ef88f-cec5-4350-967c-92c9e668177f"]]
|
6858
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6859
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
6860
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6861
|
+
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
6862
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6863
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
6864
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6865
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6866
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
6867
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
6868
|
+
FROM sqlite_master
|
6869
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6870
|
+
UNION ALL
|
6871
|
+
SELECT sql
|
6872
|
+
FROM sqlite_temp_master
|
6873
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6874
|
+
[0m
|
6875
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
6876
|
+
FROM sqlite_master
|
6877
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6878
|
+
UNION ALL
|
6879
|
+
SELECT sql
|
6880
|
+
FROM sqlite_temp_master
|
6881
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6882
|
+
|
6883
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6884
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
6885
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
6886
|
+
FROM sqlite_master
|
6887
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6888
|
+
UNION ALL
|
6889
|
+
SELECT sql
|
6890
|
+
FROM sqlite_temp_master
|
6891
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
6892
|
+
[0m
|
6893
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
6894
|
+
FROM sqlite_master
|
6895
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6896
|
+
UNION ALL
|
6897
|
+
SELECT sql
|
6898
|
+
FROM sqlite_temp_master
|
6899
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
6900
|
+
|
6901
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6902
|
+
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
6903
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6904
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
6905
|
+
[1m[36m (2.6ms)[0m [1mDELETE FROM "records";[0m
|
6906
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
6907
|
+
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
6908
|
+
[1m[35m (3.0ms)[0m DELETE FROM "items";
|
6909
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
6910
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
6911
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6912
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6913
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6914
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6915
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6916
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6917
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6918
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6919
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6920
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6921
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6922
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6923
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:10:05.289319"], ["updated_at", "2014-10-17 10:10:05.289319"]]
|
6924
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6925
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6926
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "5f718259-3c91-4a23-aaea-f0b22c0fbe84"]]
|
6927
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6928
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6929
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6930
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6931
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6932
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6933
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:10:05.305169"], ["updated_at", "2014-10-17 10:10:05.305169"]]
|
6934
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6935
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6936
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "2707680b-63fd-47d8-b484-51f61e4bdbed"]]
|
6937
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6938
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6939
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6940
|
+
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
6941
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6942
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
6943
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6944
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6945
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6946
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6947
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6948
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:10:05.315665"], ["updated_at", "2014-10-17 10:10:05.315665"]]
|
6949
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6950
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6951
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "a5e03464-8ee5-4382-8a77-637c4647b518"]]
|
6952
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6953
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
6954
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6955
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6956
|
+
[1m[35m (0.0ms)[0m commit transaction
|
6957
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6958
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6959
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:10:05.319527"], ["updated_at", "2014-10-17 10:10:05.319527"]]
|
6960
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6961
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6962
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6963
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6964
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6965
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6966
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:10:05.322808"], ["updated_at", "2014-10-17 10:10:05.322808"]]
|
6967
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6968
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6969
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "4729f5af-44eb-4f5c-8124-090068f2ecc2"]]
|
6970
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6972
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6973
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6974
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6975
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6976
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6977
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6978
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:10:05.329126"], ["updated_at", "2014-10-17 10:10:05.329126"]]
|
6979
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6980
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6981
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "5672966f-5869-436e-acc7-0dd6a3f0cb5a"]]
|
6982
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
6983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6984
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
6985
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6986
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6987
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
6988
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6989
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6990
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:10:05.336545"], ["updated_at", "2014-10-17 10:10:05.336545"]]
|
6991
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6992
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "f56e55fd-e8fc-4cc6-9744-bbdfe4f1ad1b"]]
|
6993
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6994
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6995
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
6996
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
6997
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
6998
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
6999
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7000
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "items" WHERE "items"."id" = ? [["id", 1]]
|
7001
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7002
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7003
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7004
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7005
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7006
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7007
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:10:05.354239"], ["updated_at", "2014-10-17 10:10:05.354239"]]
|
7008
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7009
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "ce066b8c-5e11-48c8-9ea0-c8a81dddb1cf"]]
|
7010
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7011
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7012
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7013
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7014
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7015
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7016
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7017
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:10:05.361128"], ["updated_at", "2014-10-17 10:10:05.361128"]]
|
7018
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7019
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "70beb6f0-d94b-4528-9949-7aba132e2422"]]
|
7020
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7021
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
7022
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7023
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7024
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7025
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7026
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7027
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7028
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
7029
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:10:05.371010"], ["updated_at", "2014-10-17 10:10:05.371010"]]
|
7030
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7031
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "9dba289f-9d73-4a85-858d-84c37af941e9"]]
|
7032
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7033
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
7034
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7035
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
7036
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7037
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7038
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7039
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7040
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7041
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7042
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
7043
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
7044
|
+
FROM sqlite_master
|
7045
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
7046
|
+
UNION ALL
|
7047
|
+
SELECT sql
|
7048
|
+
FROM sqlite_temp_master
|
7049
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
7050
|
+
[0m
|
7051
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
7052
|
+
FROM sqlite_master
|
7053
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
7054
|
+
UNION ALL
|
7055
|
+
SELECT sql
|
7056
|
+
FROM sqlite_temp_master
|
7057
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
7058
|
+
|
7059
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7060
|
+
[1m[35m (2.6ms)[0m DELETE FROM "uuids_uuids";
|
7061
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7062
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
7063
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
7064
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
7065
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
7066
|
+
[1m[35m (2.9ms)[0m DELETE FROM "items";
|
7067
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7068
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
7069
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7070
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7071
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7072
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7073
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7074
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7075
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7076
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7077
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:11:17.815474"], ["updated_at", "2014-10-17 10:11:17.815474"]]
|
7078
|
+
[1m[35mItem Load (0.1ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7079
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "7b9977ab-6220-4907-9530-5525f2048079"]]
|
7080
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7081
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
7082
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7083
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
7084
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7085
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7086
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7087
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7088
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7089
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:11:17.829091"], ["updated_at", "2014-10-17 10:11:17.829091"]]
|
7090
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7091
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "63a1ba22-bec6-4633-a7b0-4570735610ac"]]
|
7092
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7093
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7094
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
7095
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
7096
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7097
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7098
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
7099
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "items" WHERE "items"."id" = ?[0m [["id", 1]]
|
7100
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7101
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7102
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7103
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7104
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7105
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7106
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:11:17.839355"], ["updated_at", "2014-10-17 10:11:17.839355"]]
|
7107
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7108
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "e047d20a-1515-43ff-b415-64301ab78720"]]
|
7109
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7110
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
7111
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7112
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
7113
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
7114
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7115
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
7116
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7117
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7118
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:11:17.853234"], ["updated_at", "2014-10-17 10:11:17.853234"]]
|
7119
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7120
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "ce7595a1-f755-4421-83bf-6fdac25e21bf"]]
|
7121
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7122
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
7123
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
7124
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7125
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7127
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7128
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:11:17.862039"], ["updated_at", "2014-10-17 10:11:17.862039"]]
|
7129
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7130
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "df653225-58bb-4fd3-83f4-ca8d5b53f18a"]]
|
7132
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7133
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7134
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
7135
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7136
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7137
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7138
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7139
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7140
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:11:17.870251"], ["updated_at", "2014-10-17 10:11:17.870251"]]
|
7141
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7142
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7143
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "bacda98a-8107-4a6c-9e1f-660f79429049"]]
|
7144
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7145
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7146
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
7147
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7148
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7149
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7150
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7151
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7152
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:11:17.875105"], ["updated_at", "2014-10-17 10:11:17.875105"]]
|
7153
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7154
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7155
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "eeb8fb8f-787a-4083-bd87-690373e2ace8"]]
|
7156
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7157
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
7158
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7159
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7160
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7161
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7162
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:11:17.879630"], ["updated_at", "2014-10-17 10:11:17.879630"]]
|
7163
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7164
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7165
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "09cd74ce-f32e-4ebe-93f2-e36565a9a785"]]
|
7166
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
7167
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
7168
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7169
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7170
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7172
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7173
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:11:17.884152"], ["updated_at", "2014-10-17 10:11:17.884152"]]
|
7174
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7175
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7176
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "88231dae-060e-4d29-86e4-06adb64cfc75"]]
|
7177
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7178
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
7179
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7180
|
+
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
7181
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7182
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
7183
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7184
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7185
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7186
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7187
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
7188
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7189
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7190
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7191
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
7192
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7193
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7194
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7195
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7196
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:11:17.892850"], ["updated_at", "2014-10-17 10:11:17.892850"]]
|
7197
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7198
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7199
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7200
|
+
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
7201
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7202
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
7203
|
+
[1m[36m (2.7ms)[0m [1mDELETE FROM "records";[0m
|
7204
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
7205
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
7206
|
+
[1m[35m (2.4ms)[0m DELETE FROM "items";
|
7207
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7208
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
7209
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7210
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7211
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7212
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7213
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7214
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7216
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7218
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7219
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7220
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7221
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:32:20.345717"], ["updated_at", "2014-10-17 10:32:20.345717"]]
|
7222
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7223
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7224
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7225
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7226
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7227
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7228
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:32:20.356855"], ["updated_at", "2014-10-17 10:32:20.356855"]]
|
7229
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7230
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7231
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "f6f66a4e-9f9e-435e-afc1-c046d241d729"]]
|
7232
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7233
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
7234
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7235
|
+
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
7236
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7237
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
7238
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7240
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7241
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7242
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7243
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:32:20.366014"], ["updated_at", "2014-10-17 10:32:20.366014"]]
|
7244
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7245
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7246
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "4c5d3056-c237-45be-900b-241166c96fbb"]]
|
7247
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7248
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
7249
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7250
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7251
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7252
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7253
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7254
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:32:20.369960"], ["updated_at", "2014-10-17 10:32:20.369960"]]
|
7255
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7257
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "829e32a3-071c-424d-bcef-52e0146ef827"]]
|
7258
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7259
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7260
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7261
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7262
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7263
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7264
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:32:20.378151"], ["updated_at", "2014-10-17 10:32:20.378151"]]
|
7265
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7266
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7267
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "fce9f114-5a69-489d-8619-776f628a1616"]]
|
7268
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7269
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7270
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
7271
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7272
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7273
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7274
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7275
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7276
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:32:20.383277"], ["updated_at", "2014-10-17 10:32:20.383277"]]
|
7277
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7279
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "b90c8b64-91eb-4df8-a262-e017dc158f28"]]
|
7280
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7281
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7282
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
7283
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7284
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7285
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7286
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7287
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7288
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:32:20.389791"], ["updated_at", "2014-10-17 10:32:20.389791"]]
|
7289
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7290
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "c3ba43d2-2f3c-433d-bc7c-6ab7431cfe24"]]
|
7291
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7292
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7293
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
7294
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
7295
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7296
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7297
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7298
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "items" WHERE "items"."id" = ? [["id", 1]]
|
7299
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7300
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
7301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7302
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7303
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7304
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7305
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:32:20.405694"], ["updated_at", "2014-10-17 10:32:20.405694"]]
|
7306
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7307
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "e8724b12-5271-46b9-b5b3-6fa483569e9c"]]
|
7308
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7309
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
7310
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7311
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7312
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7313
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7314
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7315
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7316
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7317
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:32:20.413019"], ["updated_at", "2014-10-17 10:32:20.413019"]]
|
7318
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7319
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "cf5c5df2-5c94-480b-8b21-0844db6ae547"]]
|
7320
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7321
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7322
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7323
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7324
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7325
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7327
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:32:20.419203"], ["updated_at", "2014-10-17 10:32:20.419203"]]
|
7328
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7329
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "a808b4f4-467c-40ce-9b82-c24edfbfe473"]]
|
7330
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7331
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
7332
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7333
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
7334
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7335
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7336
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7337
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7338
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7339
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7340
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
7341
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
7342
|
+
FROM sqlite_master
|
7343
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
7344
|
+
UNION ALL
|
7345
|
+
SELECT sql
|
7346
|
+
FROM sqlite_temp_master
|
7347
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
7348
|
+
[0m
|
7349
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
7350
|
+
FROM sqlite_master
|
7351
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
7352
|
+
UNION ALL
|
7353
|
+
SELECT sql
|
7354
|
+
FROM sqlite_temp_master
|
7355
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
7356
|
+
|
7357
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7358
|
+
[1m[35m (5.0ms)[0m DELETE FROM "uuids_uuids";
|
7359
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7360
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
7361
|
+
[1m[36m (2.6ms)[0m [1mDELETE FROM "records";[0m
|
7362
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
7363
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
7364
|
+
[1m[35m (2.6ms)[0m DELETE FROM "items";
|
7365
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7366
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
7367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7368
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7369
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7370
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7371
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7372
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7373
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7374
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7375
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7376
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7378
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7379
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7380
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7381
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7382
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7383
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7384
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7386
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7388
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7389
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7390
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7391
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:38:23.930953"], ["updated_at", "2014-10-17 10:38:23.930953"]]
|
7392
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7393
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7394
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "7bc66697-0e4a-401b-ae82-181ac89b23d9"]]
|
7395
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7396
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7397
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
7398
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
7399
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7400
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7401
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7402
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7403
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:38:23.948109"], ["updated_at", "2014-10-17 10:38:23.948109"]]
|
7404
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7405
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7406
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "2948cb75-abf7-4a25-8723-1275c8e43b03"]]
|
7407
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7408
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7409
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
7410
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7412
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7413
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7414
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7415
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7416
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7417
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7418
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7420
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7421
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7422
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7423
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:38:23.954789"], ["updated_at", "2014-10-17 10:38:23.954789"]]
|
7424
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7425
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7426
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7427
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7428
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7429
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7430
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:38:23.957428"], ["updated_at", "2014-10-17 10:38:23.957428"]]
|
7431
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7432
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7433
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "9fa22fcf-a311-41a3-810d-5a2cce9e6494"]]
|
7434
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7435
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7436
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7437
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7438
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7439
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7440
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:38:23.961309"], ["updated_at", "2014-10-17 10:38:23.961309"]]
|
7441
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7442
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7443
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "df2ba914-547b-4d90-b001-3517107da81a"]]
|
7444
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7445
|
+
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
7446
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7448
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7449
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7450
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7451
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:38:23.965891"], ["updated_at", "2014-10-17 10:38:23.965891"]]
|
7452
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7453
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7454
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "f4a6591c-057a-4778-9e0b-21a701ab8013"]]
|
7455
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7456
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
7457
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7458
|
+
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
7459
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7460
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
7461
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7462
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7463
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
7464
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
7465
|
+
FROM sqlite_master
|
7466
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
7467
|
+
UNION ALL
|
7468
|
+
SELECT sql
|
7469
|
+
FROM sqlite_temp_master
|
7470
|
+
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
7471
|
+
[0m
|
7472
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
7473
|
+
FROM sqlite_master
|
7474
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
7475
|
+
UNION ALL
|
7476
|
+
SELECT sql
|
7477
|
+
FROM sqlite_temp_master
|
7478
|
+
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
7479
|
+
|
7480
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
7481
|
+
[1m[35m (4.6ms)[0m DELETE FROM "uuids_uuids";
|
7482
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7483
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
7484
|
+
[1m[36m (2.1ms)[0m [1mDELETE FROM "records";[0m
|
7485
|
+
[1m[35m (0.4ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
7486
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
7487
|
+
[1m[35m (2.5ms)[0m DELETE FROM "items";
|
7488
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
7489
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'items';
|
7490
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7491
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7492
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7493
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7495
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7497
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7498
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7499
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7500
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7501
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7502
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:39:22.837284"], ["updated_at", "2014-10-17 10:39:22.837284"]]
|
7503
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7504
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7505
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "535aa312-870f-4451-a7fb-4e4a8fd0b67e"]]
|
7506
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7507
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
7508
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7509
|
+
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
7510
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7511
|
+
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
7512
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
7513
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7514
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7515
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7516
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7517
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:39:22.854613"], ["updated_at", "2014-10-17 10:39:22.854613"]]
|
7518
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7519
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7520
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "5065d733-00d6-43bb-aabf-acdb88a4ced5"]]
|
7521
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7522
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
7523
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7524
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7525
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7527
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7528
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:39:22.858552"], ["updated_at", "2014-10-17 10:39:22.858552"]]
|
7529
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7530
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7531
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "b9b50f4b-9d9b-429c-b770-7a1a031b1775"]]
|
7532
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7533
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7534
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
7535
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7536
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7537
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7538
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7539
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7540
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:39:22.867534"], ["updated_at", "2014-10-17 10:39:22.867534"]]
|
7541
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7542
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7543
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "6b2424f8-11d8-4aa0-8505-88784a1785ef"]]
|
7544
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7545
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7546
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
7547
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7548
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7549
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7550
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7551
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7552
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:39:22.871792"], ["updated_at", "2014-10-17 10:39:22.871792"]]
|
7553
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7554
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7555
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "e19fcf01-d100-4850-b7cc-667c8b23c63f"]]
|
7556
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7557
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7558
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7559
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7560
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7562
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:39:22.875337"], ["updated_at", "2014-10-17 10:39:22.875337"]]
|
7563
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7564
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7565
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7566
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7567
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7568
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7569
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:39:22.885340"], ["updated_at", "2014-10-17 10:39:22.885340"]]
|
7570
|
+
[1m[36mItem Load (0.1ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7571
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "4532dc31-c137-441d-b5c8-95363f34cefe"]]
|
7572
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7573
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
7574
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7575
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
7576
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7577
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7578
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7579
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7580
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7581
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:39:22.893305"], ["updated_at", "2014-10-17 10:39:22.893305"]]
|
7582
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7583
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "5f79df5d-df64-41b0-ba2e-fcfa548ed58d"]]
|
7584
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7585
|
+
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "Item"]]
|
7586
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7587
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7588
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
7589
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7590
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
7591
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-17 10:39:22.898930"], ["updated_at", "2014-10-17 10:39:22.898930"]]
|
7592
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7593
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Item"], ["value", "8e2978a2-c3fa-4e89-a48c-eb8361145d96"]]
|
7594
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7595
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7596
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
7597
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
7598
|
+
[1m[36mItem Load (0.0ms)[0m [1mSELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1[0m [["id", 1]]
|
7599
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7600
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7601
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "items" WHERE "items"."id" = ? [["id", 1]]
|
7602
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7603
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7604
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7605
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7606
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7607
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
7608
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "items" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-17 10:39:22.909512"], ["updated_at", "2014-10-17 10:39:22.909512"]]
|
7609
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7610
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Item"], ["value", "1b6aa448-2ab3-46a4-96b1-9f03e9b55ad8"]]
|
7611
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
7612
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
7613
|
+
[1m[35mItem Load (0.0ms)[0m SELECT "items".* FROM "items" WHERE "items"."id" = ? LIMIT 1 [["id", 1]]
|
7614
|
+
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "Item"]]
|
7615
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7616
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7617
|
+
[1m[35m (0.0ms)[0m commit transaction
|
7618
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7619
|
+
[1m[35m (0.0ms)[0m rollback transaction
|