activerecord-sortable 0.0.5 → 0.0.6
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/lib/activerecord/sortable/version.rb +1 -1
- data/lib/assets/javascripts/sortable.js +8 -5
- data/spec/dummy-3.2/db/test.sqlite3 +0 -0
- data/spec/dummy-3.2/log/test.log +1179 -0
- data/spec/dummy-3.2/tmp/cache/assets/D2A/090/sprockets%2F11820a6ecc13dd7f7094529f02abab32 +0 -0
- data/spec/dummy-3.2/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy-3.2/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy-3.2/tmp/cache/assets/DE2/810/sprockets%2F02e6da2de0eeda095c3ab81e1033fc1d +0 -0
- data/spec/dummy-3.2/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/support/activerecord_sortable.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98f23ed90649a680f99c819642ccfb3cb09697e8
|
4
|
+
data.tar.gz: 2a5ce0afd0e15c10373b6979dc10b7f002262826
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 229c2e8a81ca37ad40a39cb78135ac9b6f46c42add9c20b5356af370e7fc514b00e218506b2367f35ea641b7bf5bd5c82b03724f3cd2fc6f57a4272e9396828b
|
7
|
+
data.tar.gz: 6c679607bbd2caba68ae59c13a0a0dd74a062e96fbd345523ff97e540d73bd18de178a09474341379271f6712aab57a2a6a7919a98d634fc4e7c818937d84668
|
@@ -91,13 +91,16 @@
|
|
91
91
|
};
|
92
92
|
|
93
93
|
|
94
|
-
function Sortable(node) {
|
94
|
+
function Sortable(node, options) {
|
95
95
|
this.node = node;
|
96
96
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
}
|
97
|
+
if (!options) options = {};
|
98
|
+
options['update'] = $.proxy(this.sortable_stop_handler, this);
|
99
|
+
|
100
|
+
var defaults = { axis: 'y' };
|
101
|
+
var settings = $.extend({}, defaults, options);
|
102
|
+
|
103
|
+
this.node.sortable(settings);
|
101
104
|
};
|
102
105
|
|
103
106
|
Sortable.prototype.sortable_stop_handler = function(e, ui) {
|
Binary file
|
data/spec/dummy-3.2/log/test.log
CHANGED
@@ -923,3 +923,1182 @@ Served asset /application.js - 304 Not Modified (0ms)
|
|
923
923
|
[1m[35mSQL (3.6ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 27 Apr 2015 11:41:22 UTC +00:00], ["place", 0], ["updated_at", Mon, 27 Apr 2015 11:41:22 UTC +00:00]]
|
924
924
|
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
925
925
|
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 43]]
|
926
|
+
Connecting to database specified by database.yml
|
927
|
+
[1m[36m (8.1ms)[0m [1mselect sqlite_version(*)[0m
|
928
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
929
|
+
[1m[36m (1.5ms)[0m [1mCREATE INDEX "index_children_on_position" ON "children" ("position")[0m
|
930
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "position" integer NOT NULL)
|
931
|
+
[1m[36m (1.5ms)[0m [1mCREATE INDEX "index_items_on_position" ON "items" ("position")[0m
|
932
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "order_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
933
|
+
[1m[36m (1.3ms)[0m [1mCREATE INDEX "index_order_things_on_order" ON "order_things" ("order")[0m
|
934
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "other_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
935
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_other_things_on_place" ON "other_things" ("place")[0m
|
936
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
937
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
938
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "index_things_on_position" ON "things" ("position")
|
939
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
940
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
941
|
+
[1m[36m (0.4ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
942
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150408101403')
|
943
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140512100816')[0m
|
944
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525104834')
|
945
|
+
[1m[36m (4.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140525111906')[0m
|
946
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525112123')
|
947
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140721161028')[0m
|
948
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140721161122')
|
949
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
950
|
+
Connecting to database specified by database.yml
|
951
|
+
[1m[36m (2.9ms)[0m [1mselect sqlite_version(*)[0m
|
952
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
953
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_children_on_position" ON "children" ("position")[0m
|
954
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "position" integer NOT NULL)
|
955
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_items_on_position" ON "items" ("position")[0m
|
956
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "order_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
957
|
+
[1m[36m (1.9ms)[0m [1mCREATE INDEX "index_order_things_on_order" ON "order_things" ("order")[0m
|
958
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "other_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
959
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_other_things_on_place" ON "other_things" ("place")[0m
|
960
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
961
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
962
|
+
[1m[35m (4.5ms)[0m CREATE INDEX "index_things_on_position" ON "things" ("position")
|
963
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
964
|
+
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
965
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
966
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150408101403')
|
967
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140512100816')[0m
|
968
|
+
[1m[35m (3.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525104834')
|
969
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140525111906')[0m
|
970
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525112123')
|
971
|
+
[1m[36m (2.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140721161028')[0m
|
972
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140721161122')
|
973
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
974
|
+
Connecting to database specified by database.yml
|
975
|
+
[1m[36m (2.0ms)[0m [1mselect sqlite_version(*)[0m
|
976
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
977
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_children_on_position" ON "children" ("position")[0m
|
978
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "position" integer NOT NULL)
|
979
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_items_on_position" ON "items" ("position")[0m
|
980
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "order_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
981
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_order_things_on_order" ON "order_things" ("order")[0m
|
982
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "other_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
983
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_other_things_on_place" ON "other_things" ("place")[0m
|
984
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
985
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
986
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "index_things_on_position" ON "things" ("position")
|
987
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
988
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
989
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
990
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150408101403')
|
991
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140512100816')[0m
|
992
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525104834')
|
993
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140525111906')[0m
|
994
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525112123')
|
995
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140721161028')[0m
|
996
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140721161122')
|
997
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
998
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "other_things"
|
999
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1000
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1001
|
+
[1m[36mSQL (12.1ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1002
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1003
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1004
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1005
|
+
[1m[36mSQL (5.8ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1006
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1007
|
+
[1m[36mOtherThing Load (0.3ms)[0m [1mSELECT "other_things".* FROM "other_things" ORDER BY "other_things"."place" ASC[0m
|
1008
|
+
[1m[35mSQL (1.3ms)[0m DELETE FROM "other_things"
|
1009
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1010
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1011
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1012
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1013
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1014
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1015
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1016
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1017
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "other_things"[0m
|
1018
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1019
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1020
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1021
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1022
|
+
[1m[35mOtherThing Load (0.3ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 5]]
|
1023
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1024
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1025
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1026
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1027
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 5]]
|
1028
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "other_things"
|
1029
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1030
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.638866'
|
1031
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1032
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1033
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1034
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.651772'
|
1035
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1036
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1037
|
+
[1m[36mSQL (1.3ms)[0m [1mDELETE FROM "other_things"[0m
|
1038
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1039
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.666831'[0m
|
1040
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1041
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1042
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 9]]
|
1043
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1044
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.683282'
|
1045
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1046
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1047
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 9]]
|
1048
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "other_things"
|
1049
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1050
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1051
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1052
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1053
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1054
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1055
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1056
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1057
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1058
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1059
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1060
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1061
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 13]]
|
1062
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1063
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.732396' WHERE ("place" >= 1 AND "place" < 2)[0m
|
1064
|
+
[1m[35m (0.5ms)[0m UPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:03.737127' WHERE "other_things"."id" = 13
|
1065
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1066
|
+
[1m[35mOtherThing Load (0.2ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 13]]
|
1067
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "other_things"[0m
|
1068
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1069
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1070
|
+
[1m[35mSQL (5.7ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1071
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1072
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1073
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1074
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1075
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1076
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1077
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1078
|
+
[1m[35mSQL (4.7ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1079
|
+
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
1080
|
+
[1m[35mOtherThing Load (0.2ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 15]]
|
1081
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1082
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.781759' WHERE ("place" >= 1 AND "place" < 2)
|
1083
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:03.784891' WHERE "other_things"."id" = 16[0m
|
1084
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1085
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 15]]
|
1086
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "other_things"
|
1087
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1088
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1089
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1090
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1091
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1092
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1093
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1094
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1095
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1096
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1097
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1098
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1099
|
+
[1m[36mOtherThing Load (0.2ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 18]]
|
1100
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1101
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.825192' WHERE ("place" >= 1 AND "place" < 2)[0m
|
1102
|
+
[1m[35m (0.5ms)[0m UPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:03.828615' WHERE "other_things"."id" = 19
|
1103
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1104
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 18]]
|
1105
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "other_things"[0m
|
1106
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1107
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1108
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1109
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1110
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1111
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1112
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1113
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1114
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1115
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1116
|
+
[1m[35mSQL (5.1ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1117
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1118
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 20]]
|
1119
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1120
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.872295' WHERE ("place" >= 1 AND "place" < 2)
|
1121
|
+
[1m[36m (0.6ms)[0m [1mUPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:03.875082' WHERE "other_things"."id" = 22[0m
|
1122
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1123
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 20]]
|
1124
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "other_things"
|
1125
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1126
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1127
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1128
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1130
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1131
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1132
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1133
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1134
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1135
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1136
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1137
|
+
[1m[36mOtherThing Load (0.2ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 25]]
|
1138
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1139
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "other_things" SET "place" = "place" + 1, updated_at = '2015-08-12 05:39:03.916107' WHERE ("place" >= 1 AND "place" < 2)[0m
|
1140
|
+
[1m[35m (0.4ms)[0m UPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:03.919267' WHERE "other_things"."id" = 25
|
1141
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1142
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 25]]
|
1143
|
+
[1m[36mSQL (1.7ms)[0m [1mDELETE FROM "other_things"[0m
|
1144
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1145
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1146
|
+
[1m[35mSQL (5.1ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1147
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1148
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1149
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1150
|
+
[1m[35mSQL (4.4ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1151
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1152
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1153
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1154
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1155
|
+
[1m[36m (3.4ms)[0m [1mcommit transaction[0m
|
1156
|
+
[1m[35mOtherThing Load (0.2ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 26]]
|
1157
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1158
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "other_things" SET "place" = "place" - 1, updated_at = '2015-08-12 05:39:03.973357' WHERE ("place" > 0 AND "place" <= 1)
|
1159
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:03.976539' WHERE "other_things"."id" = 26[0m
|
1160
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1161
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 26]]
|
1162
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "other_things"
|
1163
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1164
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1165
|
+
[1m[36mSQL (4.7ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1166
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1168
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1169
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:03 UTC +00:00]]
|
1170
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1171
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1172
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1173
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1174
|
+
[1m[35m (0.8ms)[0m commit transaction
|
1175
|
+
[1m[36mOtherThing Load (0.2ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 29]]
|
1176
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1177
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "other_things" SET "place" = "place" - 1, updated_at = '2015-08-12 05:39:04.017435' WHERE ("place" > 0 AND "place" <= 1)[0m
|
1178
|
+
[1m[35m (0.4ms)[0m UPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:04.020415' WHERE "other_things"."id" = 29
|
1179
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1180
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 29]]
|
1181
|
+
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "other_things"[0m
|
1182
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1183
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1184
|
+
[1m[35mSQL (4.9ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1185
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1186
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1187
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1188
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1189
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1190
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1191
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1192
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1193
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1194
|
+
[1m[35mOtherThing Load (0.2ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 33]]
|
1195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1196
|
+
[1m[35mSQL (0.6ms)[0m UPDATE "other_things" SET "place" = "place" - 1, updated_at = '2015-08-12 05:39:04.063502' WHERE ("place" > 0 AND "place" <= 1)
|
1197
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:04.066619' WHERE "other_things"."id" = 32[0m
|
1198
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1199
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 33]]
|
1200
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "other_things"
|
1201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1202
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1203
|
+
[1m[36mSQL (5.0ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1204
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1205
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1206
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1207
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1208
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1209
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1210
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1211
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1212
|
+
[1m[35m (0.8ms)[0m commit transaction
|
1213
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 36]]
|
1214
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1215
|
+
[1m[36mSQL (0.7ms)[0m [1mUPDATE "other_things" SET "place" = "place" - 1, updated_at = '2015-08-12 05:39:04.108751' WHERE ("place" > 0 AND "place" <= 1)[0m
|
1216
|
+
[1m[35m (0.5ms)[0m UPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:04.112310' WHERE "other_things"."id" = 35
|
1217
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1218
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 36]]
|
1219
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "other_things"[0m
|
1220
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1221
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1222
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1223
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1224
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1225
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1226
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1227
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1228
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1229
|
+
[1m[36m (0.1ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1230
|
+
[1m[35mSQL (4.3ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1231
|
+
[1m[36m (1.6ms)[0m [1mcommit transaction[0m
|
1232
|
+
[1m[35mOtherThing Load (0.2ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 40]]
|
1233
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1234
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "other_things" SET "place" = "place" - 1, updated_at = '2015-08-12 05:39:04.154272' WHERE ("place" > 0 AND "place" <= 1)
|
1235
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "other_things" SET "place" = 1, "updated_at" = '2015-08-12 05:39:04.157014' WHERE "other_things"."id" = 38[0m
|
1236
|
+
[1m[35m (1.5ms)[0m commit transaction
|
1237
|
+
[1m[36mOtherThing Load (0.2ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 40]]
|
1238
|
+
[1m[35mSQL (1.3ms)[0m DELETE FROM "other_things"
|
1239
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1240
|
+
[1m[35m (0.1ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1241
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1242
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1243
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1244
|
+
[1m[35m (0.2ms)[0m SELECT "other_things"."place" FROM "other_things"
|
1245
|
+
[1m[36mSQL (5.2ms)[0m [1mINSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1246
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1247
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 42]]
|
1248
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1249
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "other_things" WHERE "other_things"."id" = ?[0m [["id", 41]]
|
1250
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "other_things" SET "place" = "place" - 1, updated_at = '2015-08-12 05:39:04.191538' WHERE ("place" > 0)
|
1251
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1252
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 42]]
|
1253
|
+
[1m[36mSQL (1.5ms)[0m [1mDELETE FROM "other_things"[0m
|
1254
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1255
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1256
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1257
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1258
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1259
|
+
[1m[36m (0.2ms)[0m [1mSELECT "other_things"."place" FROM "other_things" [0m
|
1260
|
+
[1m[35mSQL (6.6ms)[0m INSERT INTO "other_things" ("created_at", "place", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["place", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1261
|
+
[1m[36m (2.8ms)[0m [1mcommit transaction[0m
|
1262
|
+
[1m[35mOtherThing Load (0.1ms)[0m SELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1 [["id", 44]]
|
1263
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1264
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "other_things" WHERE "other_things"."id" = ? [["id", 43]]
|
1265
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "other_things" SET "place" = "place" - 1, updated_at = '2015-08-12 05:39:04.234947' WHERE ("place" > 0)[0m
|
1266
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1267
|
+
[1m[36mOtherThing Load (0.1ms)[0m [1mSELECT "other_things".* FROM "other_things" WHERE "other_things"."id" = ? LIMIT 1[0m [["id", 44]]
|
1268
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "things"
|
1269
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1270
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.251038'
|
1271
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1272
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1273
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 1]]
|
1274
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1275
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.265445'[0m
|
1276
|
+
[1m[35mSQL (5.4ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1277
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1278
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 1]]
|
1279
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "things"[0m
|
1280
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1281
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.283170'[0m
|
1282
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1283
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1284
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1285
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.295962'[0m
|
1286
|
+
[1m[35mSQL (3.5ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1287
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1288
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "things"
|
1289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1290
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1291
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1292
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1293
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1294
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1295
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1296
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1297
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "things"[0m
|
1298
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1299
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1300
|
+
[1m[35mSQL (5.4ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1301
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1302
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 7]]
|
1303
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1304
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1305
|
+
[1m[36mSQL (4.8ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1306
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1307
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 7]]
|
1308
|
+
[1m[35mSQL (1.1ms)[0m DELETE FROM "things"
|
1309
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1310
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1311
|
+
[1m[36mSQL (5.5ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1312
|
+
[1m[35m (1.4ms)[0m commit transaction
|
1313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1314
|
+
[1m[35m (0.2ms)[0m SELECT "things"."position" FROM "things"
|
1315
|
+
[1m[36mSQL (4.7ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1316
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1318
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1319
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1320
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1321
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 10]]
|
1322
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1323
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.400774' WHERE ("position" >= 1 AND "position" < 2)[0m
|
1324
|
+
[1m[35m (0.4ms)[0m UPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.403682' WHERE "things"."id" = 11
|
1325
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1326
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 10]]
|
1327
|
+
[1m[36mSQL (3.0ms)[0m [1mDELETE FROM "things"[0m
|
1328
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1329
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1330
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1331
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1332
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1333
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1334
|
+
[1m[35mSQL (4.7ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1335
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1336
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1337
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1338
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1339
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1340
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 13]]
|
1341
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1342
|
+
[1m[35mSQL (0.6ms)[0m UPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.447819' WHERE ("position" >= 1 AND "position" < 2)
|
1343
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.450973' WHERE "things"."id" = 14[0m
|
1344
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1345
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 13]]
|
1346
|
+
[1m[35mSQL (1.3ms)[0m DELETE FROM "things"
|
1347
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1348
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1349
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1350
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1351
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1352
|
+
[1m[35m (0.2ms)[0m SELECT "things"."position" FROM "things"
|
1353
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1354
|
+
[1m[35m (2.0ms)[0m commit transaction
|
1355
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1356
|
+
[1m[35m (0.2ms)[0m SELECT "things"."position" FROM "things"
|
1357
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1358
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1359
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 15]]
|
1360
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1361
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.493599' WHERE ("position" >= 1 AND "position" < 2)[0m
|
1362
|
+
[1m[35m (0.5ms)[0m UPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.496690' WHERE "things"."id" = 17
|
1363
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1364
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 15]]
|
1365
|
+
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "things"[0m
|
1366
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1367
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1368
|
+
[1m[35mSQL (5.5ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1369
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1370
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1371
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1372
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1373
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1374
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1375
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1376
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1377
|
+
[1m[36m (1.9ms)[0m [1mcommit transaction[0m
|
1378
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 20]]
|
1379
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1380
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.538935' WHERE ("position" >= 1 AND "position" < 2)
|
1381
|
+
[1m[36m (3.4ms)[0m [1mUPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.541626' WHERE "things"."id" = 20[0m
|
1382
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1383
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 20]]
|
1384
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "things"
|
1385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1386
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1387
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1388
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1389
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1390
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1391
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1392
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1394
|
+
[1m[35m (0.2ms)[0m SELECT "things"."position" FROM "things"
|
1395
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1396
|
+
[1m[35m (2.1ms)[0m commit transaction
|
1397
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 23]]
|
1398
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1399
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:39:04.586971' WHERE ("position" >= 1 AND "position" < 2)[0m
|
1400
|
+
[1m[35m (0.4ms)[0m UPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.589753' WHERE "things"."id" = 23
|
1401
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1402
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 23]]
|
1403
|
+
[1m[36mSQL (1.3ms)[0m [1mDELETE FROM "things"[0m
|
1404
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1405
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1406
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1407
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1408
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1409
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1410
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1411
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1412
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1413
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1414
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1415
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1416
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 25]]
|
1417
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1418
|
+
[1m[35mSQL (0.6ms)[0m UPDATE "things" SET "position" = "position" - 1, updated_at = '2015-08-12 05:39:04.632277' WHERE ("position" > 0 AND "position" <= 1)
|
1419
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.636182' WHERE "things"."id" = 24[0m
|
1420
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1421
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 25]]
|
1422
|
+
[1m[35mSQL (1.1ms)[0m DELETE FROM "things"
|
1423
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1424
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1425
|
+
[1m[36mSQL (5.4ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1426
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1427
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1428
|
+
[1m[35m (0.2ms)[0m SELECT "things"."position" FROM "things"
|
1429
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1430
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1431
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1432
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1433
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1434
|
+
[1m[35m (4.5ms)[0m commit transaction
|
1435
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 28]]
|
1436
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1437
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "things" SET "position" = "position" - 1, updated_at = '2015-08-12 05:39:04.685248' WHERE ("position" > 0 AND "position" <= 1)[0m
|
1438
|
+
[1m[35m (0.4ms)[0m UPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.688061' WHERE "things"."id" = 27
|
1439
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1440
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 28]]
|
1441
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "things"[0m
|
1442
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1443
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1444
|
+
[1m[35mSQL (4.9ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1445
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1446
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1447
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1448
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1449
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1450
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1451
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1452
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1453
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1454
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 30]]
|
1455
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1456
|
+
[1m[35mSQL (0.6ms)[0m UPDATE "things" SET "position" = "position" - 1, updated_at = '2015-08-12 05:39:04.730497' WHERE ("position" > 0 AND "position" <= 1)
|
1457
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.734276' WHERE "things"."id" = 30[0m
|
1458
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1459
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 30]]
|
1460
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "things"
|
1461
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1462
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1463
|
+
[1m[36mSQL (5.0ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1464
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1466
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1467
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1468
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1470
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1471
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1472
|
+
[1m[35m (1.5ms)[0m commit transaction
|
1473
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 35]]
|
1474
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1475
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "things" SET "position" = "position" - 1, updated_at = '2015-08-12 05:39:04.779401' WHERE ("position" > 0 AND "position" <= 1)[0m
|
1476
|
+
[1m[35m (0.4ms)[0m UPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.782514' WHERE "things"."id" = 33
|
1477
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1478
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 35]]
|
1479
|
+
[1m[36mSQL (1.3ms)[0m [1mDELETE FROM "things"[0m
|
1480
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1481
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1482
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1483
|
+
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
|
1484
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1485
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1486
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1487
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1488
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1489
|
+
[1m[36m (0.2ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1490
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1491
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
1492
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 36]]
|
1493
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1494
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "things" SET "position" = "position" - 1, updated_at = '2015-08-12 05:39:04.823909' WHERE ("position" > 0 AND "position" <= 1)
|
1495
|
+
[1m[36m (0.6ms)[0m [1mUPDATE "things" SET "position" = 1, "updated_at" = '2015-08-12 05:39:04.826598' WHERE "things"."id" = 36[0m
|
1496
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1497
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 36]]
|
1498
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "things"
|
1499
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1500
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1501
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1502
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1503
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1504
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1505
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1506
|
+
[1m[35m (0.8ms)[0m commit transaction
|
1507
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" ORDER BY "things"."position" ASC[0m
|
1508
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "things"
|
1509
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1510
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1511
|
+
[1m[36mSQL (4.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1512
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1513
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1514
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1515
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1516
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1517
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 42]]
|
1518
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1519
|
+
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "things" WHERE "things"."id" = ?[0m [["id", 41]]
|
1520
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "things" SET "position" = "position" - 1, updated_at = '2015-08-12 05:39:04.886057' WHERE ("position" > 0)
|
1521
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1522
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 42]]
|
1523
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "things"[0m
|
1524
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1525
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1526
|
+
[1m[35mSQL (4.3ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1527
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1528
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1529
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1530
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1531
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1532
|
+
[1m[35mThing Load (0.1ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 44]]
|
1533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1534
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "things" WHERE "things"."id" = ? [["id", 43]]
|
1535
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "things" SET "position" = "position" - 1, updated_at = '2015-08-12 05:39:04.917532' WHERE ("position" > 0)[0m
|
1536
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1537
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1[0m [["id", 44]]
|
1538
|
+
[1m[35mSQL (1.1ms)[0m DELETE FROM "order_things"
|
1539
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1540
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1541
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1542
|
+
[1m[35m (1.2ms)[0m commit transaction
|
1543
|
+
[1m[36mOrderThing Load (0.2ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 1]]
|
1544
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1545
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1546
|
+
[1m[35mSQL (4.7ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1547
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1548
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 1]]
|
1549
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "order_things"[0m
|
1550
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1551
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1552
|
+
[1m[35mSQL (4.8ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1553
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1554
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1555
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1556
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1557
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1558
|
+
[1m[35mSQL (1.1ms)[0m DELETE FROM "order_things"
|
1559
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1560
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:04.983330'
|
1561
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:04 UTC +00:00]]
|
1562
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1563
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1564
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:04.997208'
|
1565
|
+
[1m[36mSQL (4.6ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1566
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1567
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "order_things"[0m
|
1568
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1569
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:05.013640'[0m
|
1570
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1571
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1572
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 7]]
|
1573
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1574
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:05.026905'
|
1575
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1576
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1577
|
+
[1m[36mOrderThing Load (0.1ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 7]]
|
1578
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "order_things"
|
1579
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1580
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1581
|
+
[1m[36mSQL (5.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1582
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1583
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1584
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1585
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1586
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1587
|
+
[1m[36mOrderThing Load (1.3ms)[0m [1mSELECT "order_things".* FROM "order_things" ORDER BY "order_things"."order" ASC[0m
|
1588
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "order_things"
|
1589
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1590
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1591
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1592
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1593
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1594
|
+
[1m[35m (0.2ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1595
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1596
|
+
[1m[35m (0.8ms)[0m commit transaction
|
1597
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1598
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1599
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1600
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1601
|
+
[1m[36mOrderThing Load (0.2ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 13]]
|
1602
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1603
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "order_things" SET "order" = "order" - 1, updated_at = '2015-08-12 05:39:05.102945' WHERE ("order" > 0 AND "order" <= 1)[0m
|
1604
|
+
[1m[35m (0.5ms)[0m UPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.106101' WHERE "order_things"."id" = 11
|
1605
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1606
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 13]]
|
1607
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "order_things"[0m
|
1608
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1609
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1610
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1611
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1612
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1613
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1614
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1615
|
+
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
|
1616
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1617
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1618
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1619
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1620
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 14]]
|
1621
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1622
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "order_things" SET "order" = "order" - 1, updated_at = '2015-08-12 05:39:05.156987' WHERE ("order" > 0 AND "order" <= 1)
|
1623
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.159861' WHERE "order_things"."id" = 14[0m
|
1624
|
+
[1m[35m (1.2ms)[0m commit transaction
|
1625
|
+
[1m[36mOrderThing Load (0.1ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 14]]
|
1626
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "order_things"
|
1627
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1628
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1629
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1630
|
+
[1m[35m (1.2ms)[0m commit transaction
|
1631
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1632
|
+
[1m[35m (0.2ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1633
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1634
|
+
[1m[35m (1.5ms)[0m commit transaction
|
1635
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1636
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1637
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1638
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1639
|
+
[1m[36mOrderThing Load (0.1ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 18]]
|
1640
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1641
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "order_things" SET "order" = "order" - 1, updated_at = '2015-08-12 05:39:05.202523' WHERE ("order" > 0 AND "order" <= 1)[0m
|
1642
|
+
[1m[35m (0.5ms)[0m UPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.205444' WHERE "order_things"."id" = 17
|
1643
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1644
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 18]]
|
1645
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "order_things"[0m
|
1646
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1647
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1648
|
+
[1m[35mSQL (5.5ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1649
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1650
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1651
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1652
|
+
[1m[35mSQL (5.0ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1653
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1654
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1655
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1656
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1657
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1658
|
+
[1m[35mOrderThing Load (0.2ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 21]]
|
1659
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1660
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "order_things" SET "order" = "order" - 1, updated_at = '2015-08-12 05:39:05.252525' WHERE ("order" > 0 AND "order" <= 1)
|
1661
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.255555' WHERE "order_things"."id" = 20[0m
|
1662
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1663
|
+
[1m[36mOrderThing Load (0.2ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 21]]
|
1664
|
+
[1m[35mSQL (1.1ms)[0m DELETE FROM "order_things"
|
1665
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1666
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1667
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1668
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1669
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1670
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1671
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1672
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1673
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1674
|
+
[1m[35m (0.6ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1675
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1676
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1677
|
+
[1m[36mOrderThing Load (0.1ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 23]]
|
1678
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1679
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "order_things" SET "order" = "order" - 1, updated_at = '2015-08-12 05:39:05.297674' WHERE ("order" > 0 AND "order" <= 1)[0m
|
1680
|
+
[1m[35m (0.5ms)[0m UPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.300688' WHERE "order_things"."id" = 23
|
1681
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1682
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 23]]
|
1683
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "order_things"[0m
|
1684
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1685
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1686
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1687
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1688
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1689
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1690
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1691
|
+
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
|
1692
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1693
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1694
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1695
|
+
[1m[36m (2.3ms)[0m [1mcommit transaction[0m
|
1696
|
+
[1m[35mOrderThing Load (0.2ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 27]]
|
1697
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1698
|
+
[1m[35mSQL (0.6ms)[0m UPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:05.347171' WHERE ("order" >= 1 AND "order" < 2)
|
1699
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.350715' WHERE "order_things"."id" = 28[0m
|
1700
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1701
|
+
[1m[36mOrderThing Load (0.1ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 27]]
|
1702
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "order_things"
|
1703
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1704
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1705
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1706
|
+
[1m[35m (2.0ms)[0m commit transaction
|
1707
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1708
|
+
[1m[35m (0.2ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1709
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1710
|
+
[1m[35m (1.4ms)[0m commit transaction
|
1711
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1712
|
+
[1m[35m (0.2ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1713
|
+
[1m[36mSQL (5.2ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1714
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1715
|
+
[1m[36mOrderThing Load (0.1ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 29]]
|
1716
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1717
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:05.395308' WHERE ("order" >= 1 AND "order" < 2)[0m
|
1718
|
+
[1m[35m (0.5ms)[0m UPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.398437' WHERE "order_things"."id" = 31
|
1719
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1720
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 29]]
|
1721
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "order_things"[0m
|
1722
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1723
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1724
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1725
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1726
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1727
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1728
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1729
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1730
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1731
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1732
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1733
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1734
|
+
[1m[35mOrderThing Load (0.2ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 34]]
|
1735
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1736
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:05.440833' WHERE ("order" >= 1 AND "order" < 2)
|
1737
|
+
[1m[36m (0.6ms)[0m [1mUPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.443576' WHERE "order_things"."id" = 34[0m
|
1738
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1739
|
+
[1m[36mOrderThing Load (0.2ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 34]]
|
1740
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "order_things"
|
1741
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1742
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1743
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1744
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1745
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1746
|
+
[1m[35m (0.2ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1747
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1748
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1749
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1750
|
+
[1m[35m (0.2ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1751
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1752
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1753
|
+
[1m[36mOrderThing Load (0.2ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 36]]
|
1754
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1755
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:05.486681' WHERE ("order" >= 1 AND "order" < 2)[0m
|
1756
|
+
[1m[35m (0.5ms)[0m UPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.489429' WHERE "order_things"."id" = 37
|
1757
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1758
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 36]]
|
1759
|
+
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "order_things"[0m
|
1760
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1761
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1762
|
+
[1m[35mSQL (5.5ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1763
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1764
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1765
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1766
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1767
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1768
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1769
|
+
[1m[36m (0.1ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1770
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 2], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1771
|
+
[1m[36m (2.6ms)[0m [1mcommit transaction[0m
|
1772
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 40]]
|
1773
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1774
|
+
[1m[35mSQL (0.6ms)[0m UPDATE "order_things" SET "order" = "order" + 1, updated_at = '2015-08-12 05:39:05.533877' WHERE ("order" >= 1 AND "order" < 2)
|
1775
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "order_things" SET "order" = 1, "updated_at" = '2015-08-12 05:39:05.537135' WHERE "order_things"."id" = 40[0m
|
1776
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1777
|
+
[1m[36mOrderThing Load (0.1ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 40]]
|
1778
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "order_things"
|
1779
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1780
|
+
[1m[35m (0.1ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1781
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1782
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1783
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1784
|
+
[1m[35m (0.2ms)[0m SELECT "order_things"."order" FROM "order_things"
|
1785
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1786
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1787
|
+
[1m[36mOrderThing Load (0.2ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 42]]
|
1788
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1789
|
+
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "order_things" WHERE "order_things"."id" = ?[0m [["id", 41]]
|
1790
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "order_things" SET "order" = "order" - 1, updated_at = '2015-08-12 05:39:05.569373' WHERE ("order" > 0)
|
1791
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1792
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 42]]
|
1793
|
+
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "order_things"[0m
|
1794
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1795
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1796
|
+
[1m[35mSQL (11.3ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 0], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1797
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1798
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1799
|
+
[1m[36m (0.2ms)[0m [1mSELECT "order_things"."order" FROM "order_things" [0m
|
1800
|
+
[1m[35mSQL (4.3ms)[0m INSERT INTO "order_things" ("created_at", "order", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00], ["order", 1], ["updated_at", Wed, 12 Aug 2015 05:39:05 UTC +00:00]]
|
1801
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1802
|
+
[1m[35mOrderThing Load (0.1ms)[0m SELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1 [["id", 44]]
|
1803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1804
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "order_things" WHERE "order_things"."id" = ? [["id", 43]]
|
1805
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "order_things" SET "order" = "order" - 1, updated_at = '2015-08-12 05:39:05.608234' WHERE ("order" > 0)[0m
|
1806
|
+
[1m[35m (1.5ms)[0m commit transaction
|
1807
|
+
[1m[36mOrderThing Load (0.2ms)[0m [1mSELECT "order_things".* FROM "order_things" WHERE "order_things"."id" = ? LIMIT 1[0m [["id", 44]]
|
1808
|
+
Started GET "/parents/new" for 127.0.0.1 at 2015-08-12 08:39:13 +0300
|
1809
|
+
Processing by ParentsController#new as HTML
|
1810
|
+
Rendered parents/_form.html.erb (14.4ms)
|
1811
|
+
Rendered parents/new.html.erb within layouts/application (23.3ms)
|
1812
|
+
Completed 200 OK in 92.6ms (Views: 43.3ms | ActiveRecord: 1.3ms)
|
1813
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:39:13 +0300
|
1814
|
+
Served asset /application.css - 200 OK (26ms)
|
1815
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:39:13 +0300
|
1816
|
+
Compiled sortable.js (0ms) (pid 124)
|
1817
|
+
Compiled application.js (6ms) (pid 124)
|
1818
|
+
Served asset /application.js - 200 OK (163ms)
|
1819
|
+
Started GET "/assets/jquery.simulate.js?_=1439357953467" for 127.0.0.1 at 2015-08-12 08:39:16 +0300
|
1820
|
+
Served asset /jquery.simulate.js - 200 OK (3ms)
|
1821
|
+
Started POST "/parents" for 127.0.0.1 at 2015-08-12 08:39:19 +0300
|
1822
|
+
Processing by ParentsController#create as HTML
|
1823
|
+
Parameters: {"utf8"=>"✓", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "0"=>{"name"=>"Child 0", "position"=>"1"}, "1"=>{"name"=>"Child 1", "position"=>"2"}}}, "commit"=>"Create Parent"}
|
1824
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1825
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00], ["updated_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00]]
|
1826
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00], ["name", "Child 2"], ["parent_id", 1], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00]]
|
1827
|
+
[1m[36mSQL (3.5ms)[0m [1mINSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00], ["name", "Child 0"], ["parent_id", 1], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00]]
|
1828
|
+
[1m[35mSQL (3.4ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00], ["name", "Child 1"], ["parent_id", 1], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:19 UTC +00:00]]
|
1829
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1830
|
+
Redirected to http://127.0.0.1:57522/parents/1
|
1831
|
+
Completed 302 Found in 40.2ms (ActiveRecord: 16.8ms)
|
1832
|
+
Started GET "/parents/1" for 127.0.0.1 at 2015-08-12 08:39:19 +0300
|
1833
|
+
Processing by ParentsController#show as HTML
|
1834
|
+
Parameters: {"id"=>"1"}
|
1835
|
+
[1m[35mParent Load (0.2ms)[0m SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", "1"]]
|
1836
|
+
[1m[36mChild Load (0.2ms)[0m [1mSELECT "children".* FROM "children" WHERE "children"."parent_id" = 1[0m
|
1837
|
+
Rendered parents/show.html.erb within layouts/application (2.7ms)
|
1838
|
+
Completed 200 OK in 7.7ms (Views: 5.5ms | ActiveRecord: 0.4ms)
|
1839
|
+
Started GET "/parents/new" for 127.0.0.1 at 2015-08-12 08:39:19 +0300
|
1840
|
+
Processing by ParentsController#new as HTML
|
1841
|
+
Rendered parents/_form.html.erb (8.4ms)
|
1842
|
+
Rendered parents/new.html.erb within layouts/application (8.8ms)
|
1843
|
+
Completed 200 OK in 11.7ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1844
|
+
Started GET "/assets/jquery.simulate.js?_=1439357959819" for 127.0.0.1 at 2015-08-12 08:39:22 +0300
|
1845
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
1846
|
+
Started POST "/parents" for 127.0.0.1 at 2015-08-12 08:39:25 +0300
|
1847
|
+
Processing by ParentsController#create as HTML
|
1848
|
+
Parameters: {"utf8"=>"✓", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "0"=>{"name"=>"Child 0", "position"=>"1"}, "1"=>{"name"=>"Child 1", "position"=>"2"}}}, "commit"=>"Create Parent"}
|
1849
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1850
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00], ["updated_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00]]
|
1851
|
+
[1m[35mSQL (3.5ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00], ["name", "Child 2"], ["parent_id", 2], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00]]
|
1852
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00], ["name", "Child 0"], ["parent_id", 2], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00]]
|
1853
|
+
[1m[35mSQL (3.5ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00], ["name", "Child 1"], ["parent_id", 2], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:25 UTC +00:00]]
|
1854
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1855
|
+
Redirected to http://127.0.0.1:57522/parents/2
|
1856
|
+
Completed 302 Found in 36.0ms (ActiveRecord: 16.0ms)
|
1857
|
+
Started GET "/parents/2" for 127.0.0.1 at 2015-08-12 08:39:25 +0300
|
1858
|
+
Processing by ParentsController#show as HTML
|
1859
|
+
Parameters: {"id"=>"2"}
|
1860
|
+
[1m[35mParent Load (0.2ms)[0m SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", "2"]]
|
1861
|
+
[1m[36mChild Load (0.2ms)[0m [1mSELECT "children".* FROM "children" WHERE "children"."parent_id" = 2[0m
|
1862
|
+
Rendered parents/show.html.erb within layouts/application (1.6ms)
|
1863
|
+
Completed 200 OK in 4.0ms (Views: 2.9ms | ActiveRecord: 0.3ms)
|
1864
|
+
Started GET "/parents/new" for 127.0.0.1 at 2015-08-12 08:39:26 +0300
|
1865
|
+
Processing by ParentsController#new as HTML
|
1866
|
+
Rendered parents/_form.html.erb (3.0ms)
|
1867
|
+
Rendered parents/new.html.erb within layouts/application (3.3ms)
|
1868
|
+
Completed 200 OK in 6.2ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
1869
|
+
Started GET "/assets/jquery.simulate.js?_=1439357966077" for 127.0.0.1 at 2015-08-12 08:39:29 +0300
|
1870
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
1871
|
+
Started POST "/parents" for 127.0.0.1 at 2015-08-12 08:39:32 +0300
|
1872
|
+
Processing by ParentsController#create as HTML
|
1873
|
+
Parameters: {"utf8"=>"✓", "parent"=>{"children_attributes"=>{"1"=>{"name"=>"Child 1", "position"=>"0"}, "2"=>{"name"=>"Child 2", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
|
1874
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1875
|
+
[1m[36mSQL (4.8ms)[0m [1mINSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00], ["updated_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00]]
|
1876
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00], ["name", "Child 1"], ["parent_id", 3], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00]]
|
1877
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00], ["name", "Child 2"], ["parent_id", 3], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00]]
|
1878
|
+
[1m[35mSQL (3.5ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00], ["name", "Child 0"], ["parent_id", 3], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:32 UTC +00:00]]
|
1879
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1880
|
+
Redirected to http://127.0.0.1:57522/parents/3
|
1881
|
+
Completed 302 Found in 39.0ms (ActiveRecord: 17.7ms)
|
1882
|
+
Started GET "/parents/3" for 127.0.0.1 at 2015-08-12 08:39:32 +0300
|
1883
|
+
Processing by ParentsController#show as HTML
|
1884
|
+
Parameters: {"id"=>"3"}
|
1885
|
+
[1m[35mParent Load (0.2ms)[0m SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", "3"]]
|
1886
|
+
[1m[36mChild Load (0.2ms)[0m [1mSELECT "children".* FROM "children" WHERE "children"."parent_id" = 3[0m
|
1887
|
+
Rendered parents/show.html.erb within layouts/application (1.6ms)
|
1888
|
+
Completed 200 OK in 4.1ms (Views: 2.9ms | ActiveRecord: 0.3ms)
|
1889
|
+
Started GET "/parents/new" for 127.0.0.1 at 2015-08-12 08:39:32 +0300
|
1890
|
+
Processing by ParentsController#new as HTML
|
1891
|
+
Rendered parents/_form.html.erb (3.2ms)
|
1892
|
+
Rendered parents/new.html.erb within layouts/application (3.8ms)
|
1893
|
+
Completed 200 OK in 7.6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
1894
|
+
Started GET "/assets/jquery.simulate.js?_=1439357972343" for 127.0.0.1 at 2015-08-12 08:39:35 +0300
|
1895
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
1896
|
+
Started POST "/parents" for 127.0.0.1 at 2015-08-12 08:39:38 +0300
|
1897
|
+
Processing by ParentsController#create as HTML
|
1898
|
+
Parameters: {"utf8"=>"✓", "parent"=>{"children_attributes"=>{"1"=>{"name"=>"Child 1", "position"=>"0"}, "2"=>{"name"=>"Child 2", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
|
1899
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1900
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00], ["updated_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00]]
|
1901
|
+
[1m[35mSQL (3.6ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00], ["name", "Child 1"], ["parent_id", 4], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00]]
|
1902
|
+
[1m[36mSQL (3.5ms)[0m [1mINSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00], ["name", "Child 2"], ["parent_id", 4], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00]]
|
1903
|
+
[1m[35mSQL (4.6ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00], ["name", "Child 0"], ["parent_id", 4], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:38 UTC +00:00]]
|
1904
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
1905
|
+
Redirected to http://127.0.0.1:57522/parents/4
|
1906
|
+
Completed 302 Found in 37.7ms (ActiveRecord: 17.1ms)
|
1907
|
+
Started GET "/parents/4" for 127.0.0.1 at 2015-08-12 08:39:38 +0300
|
1908
|
+
Processing by ParentsController#show as HTML
|
1909
|
+
Parameters: {"id"=>"4"}
|
1910
|
+
[1m[35mParent Load (0.2ms)[0m SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", "4"]]
|
1911
|
+
[1m[36mChild Load (0.2ms)[0m [1mSELECT "children".* FROM "children" WHERE "children"."parent_id" = 4[0m
|
1912
|
+
Rendered parents/show.html.erb within layouts/application (1.9ms)
|
1913
|
+
Completed 200 OK in 4.4ms (Views: 3.1ms | ActiveRecord: 0.4ms)
|
1914
|
+
Started GET "/parents/new" for 127.0.0.1 at 2015-08-12 08:39:38 +0300
|
1915
|
+
Processing by ParentsController#new as HTML
|
1916
|
+
Rendered parents/_form.html.erb (2.6ms)
|
1917
|
+
Rendered parents/new.html.erb within layouts/application (2.9ms)
|
1918
|
+
Completed 200 OK in 5.9ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
1919
|
+
Started GET "/assets/jquery.simulate.js?_=1439357978606" for 127.0.0.1 at 2015-08-12 08:39:41 +0300
|
1920
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
1921
|
+
Started POST "/parents" for 127.0.0.1 at 2015-08-12 08:39:44 +0300
|
1922
|
+
Processing by ParentsController#create as HTML
|
1923
|
+
Parameters: {"utf8"=>"✓", "parent"=>{"children_attributes"=>{"1"=>{"name"=>"Child 1", "position"=>"0"}, "2"=>{"name"=>"Child 2", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
|
1924
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1925
|
+
[1m[36mSQL (4.7ms)[0m [1mINSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00], ["updated_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00]]
|
1926
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00], ["name", "Child 1"], ["parent_id", 5], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00]]
|
1927
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00], ["name", "Child 2"], ["parent_id", 5], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00]]
|
1928
|
+
[1m[35mSQL (3.5ms)[0m INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00], ["name", "Child 0"], ["parent_id", 5], ["position", 2], ["updated_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00]]
|
1929
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1930
|
+
Redirected to http://127.0.0.1:57522/parents/5
|
1931
|
+
Completed 302 Found in 38.6ms (ActiveRecord: 16.7ms)
|
1932
|
+
Started GET "/parents/5" for 127.0.0.1 at 2015-08-12 08:39:44 +0300
|
1933
|
+
Processing by ParentsController#show as HTML
|
1934
|
+
Parameters: {"id"=>"5"}
|
1935
|
+
[1m[35mParent Load (0.2ms)[0m SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", "5"]]
|
1936
|
+
[1m[36mChild Load (0.3ms)[0m [1mSELECT "children".* FROM "children" WHERE "children"."parent_id" = 5[0m
|
1937
|
+
Rendered parents/show.html.erb within layouts/application (3.2ms)
|
1938
|
+
Completed 200 OK in 5.8ms (Views: 4.4ms | ActiveRecord: 0.4ms)
|
1939
|
+
[1m[35mSQL (1.2ms)[0m DELETE FROM "things"
|
1940
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1941
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1942
|
+
[1m[36mSQL (4.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00]]
|
1943
|
+
[1m[35m (0.8ms)[0m commit transaction
|
1944
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1945
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
1946
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:44 UTC +00:00]]
|
1947
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1948
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:39:44 +0300
|
1949
|
+
Processing by ThingsController#index as HTML
|
1950
|
+
[1m[36mThing Load (0.1ms)[0m [1mSELECT "things".* FROM "things" ORDER BY "things"."position" ASC[0m
|
1951
|
+
Rendered things/_thing.html.erb (1.5ms)
|
1952
|
+
Rendered things/index.html.erb within layouts/application (6.1ms)
|
1953
|
+
Completed 200 OK in 15.3ms (Views: 13.9ms | ActiveRecord: 0.5ms)
|
1954
|
+
Started GET "/assets/jquery.simulate.js?_=1439357984905" for 127.0.0.1 at 2015-08-12 08:39:47 +0300
|
1955
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
1956
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:39:51 +0300
|
1957
|
+
Processing by ThingsController#index as HTML
|
1958
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
|
1959
|
+
Rendered things/_thing.html.erb (0.7ms)
|
1960
|
+
Rendered things/index.html.erb within layouts/application (2.0ms)
|
1961
|
+
Completed 200 OK in 3.7ms (Views: 3.1ms | ActiveRecord: 0.2ms)
|
1962
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:39:51 +0300
|
1963
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1964
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:39:51 +0300
|
1965
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1966
|
+
[1m[36mSQL (1.3ms)[0m [1mDELETE FROM "things"[0m
|
1967
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1968
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1969
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:51 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:51 UTC +00:00]]
|
1970
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1971
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1972
|
+
[1m[36m (0.1ms)[0m [1mSELECT "things"."position" FROM "things" [0m
|
1973
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 12 Aug 2015 05:39:51 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:51 UTC +00:00]]
|
1974
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1975
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:39:51 +0300
|
1976
|
+
Processing by ThingsController#index as HTML
|
1977
|
+
[1m[35mThing Load (0.3ms)[0m SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
|
1978
|
+
Rendered things/_thing.html.erb (0.8ms)
|
1979
|
+
Rendered things/index.html.erb within layouts/application (2.6ms)
|
1980
|
+
Completed 200 OK in 5.4ms (Views: 4.5ms | ActiveRecord: 0.3ms)
|
1981
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:39:51 +0300
|
1982
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1983
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:39:51 +0300
|
1984
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1985
|
+
Started GET "/assets/jquery.simulate.js?_=1439357991215" for 127.0.0.1 at 2015-08-12 08:39:54 +0300
|
1986
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
1987
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:39:57 +0300
|
1988
|
+
Processing by ThingsController#index as HTML
|
1989
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" ORDER BY "things"."position" ASC[0m
|
1990
|
+
Rendered things/_thing.html.erb (0.6ms)
|
1991
|
+
Rendered things/index.html.erb within layouts/application (1.8ms)
|
1992
|
+
Completed 200 OK in 3.7ms (Views: 3.2ms | ActiveRecord: 0.2ms)
|
1993
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:39:57 +0300
|
1994
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1995
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:39:57 +0300
|
1996
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1997
|
+
[1m[35mSQL (1.3ms)[0m DELETE FROM "things"
|
1998
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1999
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
2000
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:57 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:39:57 UTC +00:00]]
|
2001
|
+
[1m[35m (0.8ms)[0m commit transaction
|
2002
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2003
|
+
[1m[35m (0.2ms)[0m SELECT "things"."position" FROM "things"
|
2004
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:39:57 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:39:57 UTC +00:00]]
|
2005
|
+
[1m[35m (0.9ms)[0m commit transaction
|
2006
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:39:57 +0300
|
2007
|
+
Processing by ThingsController#index as HTML
|
2008
|
+
[1m[36mThing Load (0.3ms)[0m [1mSELECT "things".* FROM "things" ORDER BY "things"."position" ASC[0m
|
2009
|
+
Rendered things/_thing.html.erb (0.6ms)
|
2010
|
+
Rendered things/index.html.erb within layouts/application (2.1ms)
|
2011
|
+
Completed 200 OK in 4.1ms (Views: 3.5ms | ActiveRecord: 0.3ms)
|
2012
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:39:57 +0300
|
2013
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2014
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:39:57 +0300
|
2015
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2016
|
+
Started GET "/assets/jquery.simulate.js?_=1439357997507" for 127.0.0.1 at 2015-08-12 08:40:00 +0300
|
2017
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
2018
|
+
Started POST "/things/50/move" for 127.0.0.1 at 2015-08-12 08:40:00 +0300
|
2019
|
+
Processing by ThingsController#move as JS
|
2020
|
+
Parameters: {"position"=>"0", "id"=>"50"}
|
2021
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "50"]]
|
2022
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2023
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:40:00.624451' WHERE ("position" >= 0 AND "position" < 1)
|
2024
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "things" SET "position" = 0, "updated_at" = '2015-08-12 05:40:00.627387' WHERE "things"."id" = 50[0m
|
2025
|
+
[1m[35m (1.1ms)[0m commit transaction
|
2026
|
+
Rendered things/_thing.html.erb (1.0ms)
|
2027
|
+
Rendered things/move.js.erb (3.9ms)
|
2028
|
+
Completed 200 OK in 27.0ms (Views: 17.9ms | ActiveRecord: 2.3ms)
|
2029
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:40:03 +0300
|
2030
|
+
Processing by ThingsController#index as HTML
|
2031
|
+
[1m[36mThing Load (0.3ms)[0m [1mSELECT "things".* FROM "things" ORDER BY "things"."position" ASC[0m
|
2032
|
+
Rendered things/_thing.html.erb (0.6ms)
|
2033
|
+
Rendered things/index.html.erb within layouts/application (1.9ms)
|
2034
|
+
Completed 200 OK in 3.6ms (Views: 3.1ms | ActiveRecord: 0.3ms)
|
2035
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:40:03 +0300
|
2036
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2037
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:40:03 +0300
|
2038
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2039
|
+
[1m[35mSQL (1.3ms)[0m DELETE FROM "things"
|
2040
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2041
|
+
[1m[35m (0.1ms)[0m SELECT "things"."position" FROM "things"
|
2042
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:40:03 UTC +00:00], ["position", 0], ["updated_at", Wed, 12 Aug 2015 05:40:03 UTC +00:00]]
|
2043
|
+
[1m[35m (0.8ms)[0m commit transaction
|
2044
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2045
|
+
[1m[35m (0.2ms)[0m SELECT "things"."position" FROM "things"
|
2046
|
+
[1m[36mSQL (4.1ms)[0m [1mINSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 12 Aug 2015 05:40:03 UTC +00:00], ["position", 1], ["updated_at", Wed, 12 Aug 2015 05:40:03 UTC +00:00]]
|
2047
|
+
[1m[35m (1.0ms)[0m commit transaction
|
2048
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:40:03 +0300
|
2049
|
+
Processing by ThingsController#index as HTML
|
2050
|
+
[1m[36mThing Load (0.3ms)[0m [1mSELECT "things".* FROM "things" ORDER BY "things"."position" ASC[0m
|
2051
|
+
Rendered things/_thing.html.erb (0.7ms)
|
2052
|
+
Rendered things/index.html.erb within layouts/application (2.3ms)
|
2053
|
+
Completed 200 OK in 4.3ms (Views: 3.6ms | ActiveRecord: 0.3ms)
|
2054
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:40:03 +0300
|
2055
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2056
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:40:03 +0300
|
2057
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2058
|
+
Started GET "/assets/jquery.simulate.js?_=1439358003798" for 127.0.0.1 at 2015-08-12 08:40:06 +0300
|
2059
|
+
Served asset /jquery.simulate.js - 200 OK (0ms)
|
2060
|
+
Started POST "/things/52/move" for 127.0.0.1 at 2015-08-12 08:40:06 +0300
|
2061
|
+
Processing by ThingsController#move as JS
|
2062
|
+
Parameters: {"position"=>"0", "id"=>"52"}
|
2063
|
+
[1m[35mThing Load (0.2ms)[0m SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "52"]]
|
2064
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2065
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "things" SET "position" = "position" + 1, updated_at = '2015-08-12 05:40:06.908709' WHERE ("position" >= 0 AND "position" < 1)
|
2066
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "things" SET "position" = 0, "updated_at" = '2015-08-12 05:40:06.911568' WHERE "things"."id" = 52[0m
|
2067
|
+
[1m[35m (1.1ms)[0m commit transaction
|
2068
|
+
Rendered things/_thing.html.erb (0.4ms)
|
2069
|
+
Rendered things/move.js.erb (0.8ms)
|
2070
|
+
Completed 200 OK in 9.6ms (Views: 1.4ms | ActiveRecord: 2.2ms)
|
2071
|
+
Started GET "/" for 127.0.0.1 at 2015-08-12 08:40:09 +0300
|
2072
|
+
Processing by ThingsController#index as HTML
|
2073
|
+
[1m[36mThing Load (0.2ms)[0m [1mSELECT "things".* FROM "things" ORDER BY "things"."position" ASC[0m
|
2074
|
+
Rendered things/_thing.html.erb (0.6ms)
|
2075
|
+
Rendered things/index.html.erb within layouts/application (2.4ms)
|
2076
|
+
Completed 200 OK in 4.2ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
2077
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-08-12 08:40:09 +0300
|
2078
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2079
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-08-12 08:40:09 +0300
|
2080
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2081
|
+
Connecting to database specified by database.yml
|
2082
|
+
[1m[36m (2.0ms)[0m [1mselect sqlite_version(*)[0m
|
2083
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
2084
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_children_on_position" ON "children" ("position")[0m
|
2085
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "position" integer NOT NULL)
|
2086
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_items_on_position" ON "items" ("position")[0m
|
2087
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "order_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
2088
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_order_things_on_order" ON "order_things" ("order")[0m
|
2089
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "other_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
2090
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_other_things_on_place" ON "other_things" ("place")[0m
|
2091
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
2092
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
2093
|
+
[1m[35m (1.5ms)[0m CREATE INDEX "index_things_on_position" ON "things" ("position")
|
2094
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2095
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2096
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2097
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150408101403')
|
2098
|
+
[1m[36m (4.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140512100816')[0m
|
2099
|
+
[1m[35m (1.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525104834')
|
2100
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140525111906')[0m
|
2101
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140525112123')
|
2102
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140721161028')[0m
|
2103
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140721161122')
|
2104
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|