cmor_tags 0.0.15.pre → 0.0.16.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69e6fab8a5da8dc5a1efc04409d3e58cf5b03e876cf04a31fd899bba0a9f1eb2
4
- data.tar.gz: 78221d6276eda617c30ba47f3431b0e777758381bef1238ddce4b1b87592c0f2
3
+ metadata.gz: 83d8cc1017104b431a64928c2bd481df593a08449857dc6c8c523e9b656b4efa
4
+ data.tar.gz: 6c0032b6bf7de5ccb75413690e485b9a82f4ea04ed89fb4e096682cfb57bc6bb
5
5
  SHA512:
6
- metadata.gz: 7f9af2b00e52b4b16020aa10090e8dee51f48d1f9bfea319bf4063d6f03952957893a902a7b1f19596d8892c6df45c0ed005864838cef3b568264d8721ec4380
7
- data.tar.gz: a3fd680a36d996f961e793fb4b0bb25744091603c4567b792e88dac724248de91263dd39445dc194077bae27d97a472d71b87ccde11e1a5fabe662d1e1e46597
6
+ metadata.gz: 00b81d67deda054b19401ba70befc1e3406173b0418988598c0ee6f752a5c9b6094a56b6493464744563499f94b33e01d8ad7d8efd0769f691996ffb8ee4151b
7
+ data.tar.gz: 67b5a747c9ae864b531e154932cb540528ee63faec2173d5ec6ef991a715ae968f98bcbb5a827945a243ef6d5bc55c41bb372e7868e7121d418e47cec8ae816a
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cmor_tags
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15.pre
4
+ version: 0.0.16.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Vasquez Angel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-28 00:00:00.000000000 Z
11
+ date: 2019-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.0.15.pre
33
+ version: 0.0.16.pre
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.0.15.pre
40
+ version: 0.0.16.pre
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: cmor_core_frontend
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 0.0.15.pre
47
+ version: 0.0.16.pre
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 0.0.15.pre
54
+ version: 0.0.16.pre
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: sqlite3
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -451,8 +451,6 @@ files:
451
451
  - spec/dummy/db/migrate/20190612113029_create_posts.rb
452
452
  - spec/dummy/db/schema.rb
453
453
  - spec/dummy/db/test.sqlite3
454
- - spec/dummy/log/development.log
455
- - spec/dummy/log/test.log
456
454
  - spec/dummy/package.json
457
455
  - spec/dummy/public/404.html
458
456
  - spec/dummy/public/422.html
@@ -1,188 +0,0 @@
1
-  (0.1ms) SELECT sqlite_version(*)
2
- ↳ bin/rails:4
3
-  (5.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
4
- ↳ bin/rails:4
5
-  (4.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
- ↳ bin/rails:4
7
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
8
- ↳ bin/rails:4
9
- Migrating to ActsAsTaggableOnMigration (20190612113019)
10
-  (0.1ms) begin transaction
11
- ↳ bin/rails:4
12
-  (0.5ms) CREATE TABLE "tags" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)
13
- ↳ db/migrate/20190612113019_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb:9
14
-  (0.0ms) CREATE TABLE "taggings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "taggable_type" varchar, "taggable_id" integer, "tagger_type" varchar, "tagger_id" integer, "context" varchar(128), "created_at" datetime, CONSTRAINT "fk_rails_9fcd2e236b"
15
- FOREIGN KEY ("tag_id")
16
- REFERENCES "tags" ("id")
17
- )
18
- ↳ db/migrate/20190612113019_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb:14
19
-  (0.2ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
20
- ↳ db/migrate/20190612113019_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb:29
21
-  (0.2ms) CREATE INDEX "taggings_taggable_context_idx" ON "taggings" ("taggable_id", "taggable_type", "context")
22
- ↳ db/migrate/20190612113019_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb:30
23
- ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612113019"]]
24
- ↳ bin/rails:4
25
-  (4.5ms) commit transaction
26
- ↳ bin/rails:4
27
- Migrating to AddMissingUniqueIndices (20190612113020)
28
-  (0.1ms) begin transaction
29
- ↳ bin/rails:4
30
-  (0.5ms) CREATE UNIQUE INDEX "index_tags_on_name" ON "tags" ("name")
31
- ↳ db/migrate/20190612113020_add_missing_unique_indices.acts_as_taggable_on_engine.rb:9
32
-  (0.4ms) DROP INDEX "index_taggings_on_tag_id"
33
- ↳ db/migrate/20190612113020_add_missing_unique_indices.acts_as_taggable_on_engine.rb:11
34
-  (0.3ms) DROP INDEX "taggings_taggable_context_idx"
35
- ↳ db/migrate/20190612113020_add_missing_unique_indices.acts_as_taggable_on_engine.rb:12
36
-  (0.3ms) CREATE UNIQUE INDEX "taggings_idx" ON "taggings" ("tag_id", "taggable_id", "taggable_type", "context", "tagger_id", "tagger_type")
37
- ↳ db/migrate/20190612113020_add_missing_unique_indices.acts_as_taggable_on_engine.rb:13
38
- ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612113020"]]
39
- ↳ bin/rails:4
40
-  (6.7ms) commit transaction
41
- ↳ bin/rails:4
42
- Migrating to AddTaggingsCounterCacheToTags (20190612113021)
43
-  (0.2ms) begin transaction
44
- ↳ bin/rails:4
45
-  (1.1ms) ALTER TABLE "tags" ADD "taggings_count" integer DEFAULT 0
46
- ↳ db/migrate/20190612113021_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb:9
47
- ActsAsTaggableOn::Tag Load (0.5ms) SELECT "tags".* FROM "tags" ORDER BY "tags"."id" ASC LIMIT ? [["LIMIT", 1000]]
48
- ↳ db/migrate/20190612113021_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb:12
49
- ActiveRecord::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612113021"]]
50
- ↳ bin/rails:4
51
-  (11.7ms) commit transaction
52
- ↳ bin/rails:4
53
- Migrating to AddMissingTaggableIndex (20190612113022)
54
-  (0.2ms) begin transaction
55
- ↳ bin/rails:4
56
-  (1.6ms) CREATE INDEX "taggings_taggable_context_idx" ON "taggings" ("taggable_id", "taggable_type", "context")
57
- ↳ db/migrate/20190612113022_add_missing_taggable_index.acts_as_taggable_on_engine.rb:9
58
- ActiveRecord::SchemaMigration Create (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612113022"]]
59
- ↳ bin/rails:4
60
-  (4.5ms) commit transaction
61
- ↳ bin/rails:4
62
- Migrating to ChangeCollationForTagNames (20190612113023)
63
-  (0.1ms) begin transaction
64
- ↳ bin/rails:4
65
- ActiveRecord::SchemaMigration Create (5.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612113023"]]
66
- ↳ bin/rails:4
67
-  (3.5ms) commit transaction
68
- ↳ bin/rails:4
69
- Migrating to AddMissingIndexesOnTaggings (20190612113024)
70
-  (0.1ms) begin transaction
71
- ↳ bin/rails:4
72
-  (1.0ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
73
- ↳ db/migrate/20190612113024_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb:9
74
-  (0.5ms) CREATE INDEX "index_taggings_on_taggable_id" ON "taggings" ("taggable_id")
75
- ↳ db/migrate/20190612113024_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb:10
76
-  (0.3ms) CREATE INDEX "index_taggings_on_taggable_type" ON "taggings" ("taggable_type")
77
- ↳ db/migrate/20190612113024_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb:11
78
-  (0.3ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
79
- ↳ db/migrate/20190612113024_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb:12
80
-  (0.3ms) CREATE INDEX "index_taggings_on_context" ON "taggings" ("context")
81
- ↳ db/migrate/20190612113024_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb:13
82
-  (0.2ms) CREATE INDEX "index_taggings_on_tagger_id_and_tagger_type" ON "taggings" ("tagger_id", "tagger_type")
83
- ↳ db/migrate/20190612113024_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb:16
84
-  (0.3ms) CREATE INDEX "taggings_idy" ON "taggings" ("taggable_id", "taggable_type", "tagger_id", "context")
85
- ↳ db/migrate/20190612113024_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb:20
86
- ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612113024"]]
87
- ↳ bin/rails:4
88
-  (14.0ms) commit transaction
89
- ↳ bin/rails:4
90
- Migrating to CreatePosts (20190612113029)
91
-  (0.1ms) begin transaction
92
- ↳ bin/rails:4
93
-  (0.9ms) CREATE TABLE "posts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
94
- ↳ db/migrate/20190612113029_create_posts.rb:3
95
- ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612113029"]]
96
- ↳ bin/rails:4
97
-  (5.7ms) commit transaction
98
- ↳ bin/rails:4
99
- ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
100
- ↳ bin/rails:4
101
-  (0.2ms) begin transaction
102
- ↳ bin/rails:4
103
- ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-06-12 11:30:48.553130"], ["updated_at", "2019-06-12 11:30:48.553130"]]
104
- ↳ bin/rails:4
105
-  (6.3ms) commit transaction
106
- ↳ bin/rails:4
107
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
108
- ↳ bin/rails:4
109
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
110
- ↳ bin/rails:4
111
-  (3.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
112
- ↳ bin/rails:4
113
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
114
- ↳ bin/rails:4
115
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
116
- ↳ bin/rails:4
117
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
118
- ↳ bin/rails:4
119
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
120
- ↳ bin/rails:4
121
-  (0.1ms) DROP TABLE IF EXISTS "posts"
122
- ↳ db/schema.rb:15
123
-  (0.2ms) SELECT sqlite_version(*)
124
- ↳ db/schema.rb:15
125
-  (5.2ms) CREATE TABLE "posts" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
126
- ↳ db/schema.rb:15
127
-  (0.2ms) DROP TABLE IF EXISTS "taggings"
128
- ↳ db/schema.rb:21
129
-  (6.1ms) CREATE TABLE "taggings" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "taggable_type" varchar, "taggable_id" integer, "tagger_type" varchar, "tagger_id" integer, "context" varchar(128), "created_at" datetime)
130
- ↳ db/schema.rb:21
131
-  (5.8ms) CREATE INDEX "index_taggings_on_context" ON "taggings" ("context")
132
- ↳ db/schema.rb:21
133
-  (4.5ms) CREATE UNIQUE INDEX "taggings_idx" ON "taggings" ("tag_id", "taggable_id", "taggable_type", "context", "tagger_id", "tagger_type")
134
- ↳ db/schema.rb:21
135
-  (3.6ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
136
- ↳ db/schema.rb:21
137
-  (3.4ms) CREATE INDEX "taggings_taggable_context_idx" ON "taggings" ("taggable_id", "taggable_type", "context")
138
- ↳ db/schema.rb:21
139
-  (3.6ms) CREATE INDEX "taggings_idy" ON "taggings" ("taggable_id", "taggable_type", "tagger_id", "context")
140
- ↳ db/schema.rb:21
141
-  (4.3ms) CREATE INDEX "index_taggings_on_taggable_id" ON "taggings" ("taggable_id")
142
- ↳ db/schema.rb:21
143
-  (4.4ms) CREATE INDEX "index_taggings_on_taggable_type" ON "taggings" ("taggable_type")
144
- ↳ db/schema.rb:21
145
-  (5.5ms) CREATE INDEX "index_taggings_on_tagger_id_and_tagger_type" ON "taggings" ("tagger_id", "tagger_type")
146
- ↳ db/schema.rb:21
147
-  (4.5ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
148
- ↳ db/schema.rb:21
149
-  (0.1ms) DROP TABLE IF EXISTS "tags"
150
- ↳ db/schema.rb:40
151
-  (4.5ms) CREATE TABLE "tags" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime, "taggings_count" integer DEFAULT 0)
152
- ↳ db/schema.rb:40
153
-  (4.4ms) CREATE UNIQUE INDEX "index_tags_on_name" ON "tags" ("name")
154
- ↳ db/schema.rb:40
155
-  (4.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
156
- ↳ db/schema.rb:13
157
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
158
- ↳ db/schema.rb:13
159
-  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES (20190612113029)
160
- ↳ db/schema.rb:13
161
-  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES
162
- (20190612113024),
163
- (20190612113023),
164
- (20190612113022),
165
- (20190612113019),
166
- (20190612113020),
167
- (20190612113021);
168
-
169
- 
170
- ↳ db/schema.rb:13
171
-  (5.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
172
- ↳ db/schema.rb:13
173
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
174
- ↳ db/schema.rb:13
175
-  (0.1ms) begin transaction
176
- ↳ db/schema.rb:13
177
- ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-06-12 11:30:48.726251"], ["updated_at", "2019-06-12 11:30:48.726251"]]
178
- ↳ db/schema.rb:13
179
-  (4.5ms) commit transaction
180
- ↳ db/schema.rb:13
181
- ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
182
- ↳ bin/rails:4
183
-  (0.1ms) begin transaction
184
- ↳ bin/rails:4
185
- ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2019-06-12 11:30:48.737026"], ["key", "environment"]]
186
- ↳ bin/rails:4
187
-  (4.0ms) commit transaction
188
- ↳ bin/rails:4
@@ -1,282 +0,0 @@
1
-  (0.0ms) begin transaction
2
-  (0.1ms) SAVEPOINT active_record_1
3
- Post Create (0.6ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:56.278020"], ["updated_at", "2019-06-12 11:30:56.278020"]]
4
- ActsAsTaggableOn::Tagging Load (0.3ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
5
-  (0.1ms) RELEASE SAVEPOINT active_record_1
6
- ActsAsTaggableOn::Tag Load (0.5ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
7
-  (0.1ms) SAVEPOINT active_record_1
8
- ActsAsTaggableOn::Tag Load (0.7ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo, bar, baz'))
9
- ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo, bar, baz"], ["LIMIT", 1]]
10
- ActsAsTaggableOn::Tag Create (0.4ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo, bar, baz"], ["created_at", "2019-06-12 11:30:56.660843"], ["updated_at", "2019-06-12 11:30:56.660843"]]
11
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
12
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
13
- ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
14
- ActsAsTaggableOn::Tagging Create (0.8ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:56.693055"]]
15
- ActsAsTaggableOn::Tag Update All (0.1ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
16
-  (0.1ms) RELEASE SAVEPOINT active_record_1
17
- Started GET "/de/tags" for 127.0.0.1 at 2019-06-12 13:30:56 +0200
18
- Processing by Cmor::Tags::SearchsController#new as HTML
19
- Parameters: {"locale"=>"de"}
20
- Rendering /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/new.html.haml within layouts/application
21
- Rendered /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/_form.html.haml (16.1ms)
22
- Rendered /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/new.html.haml within layouts/application (122.3ms)
23
- Completed 200 OK in 937ms (Views: 921.3ms | ActiveRecord: 0.0ms)
24
- Started POST "/de/tags/searchs" for 127.0.0.1 at 2019-06-12 13:30:57 +0200
25
- Processing by Cmor::Tags::SearchsController#create as HTML
26
- Parameters: {"utf8"=>"✓", "search"=>{"tag_list"=>"foo", "exact"=>"0"}, "commit"=>"Suchen", "locale"=>"de"}
27
-  (0.3ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
28
- Rendering /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/create.html.haml within layouts/application
29
- Rendered /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/_form.html.haml (12.0ms)
30
- Post Exists (0.4ms) SELECT 1 AS one FROM "posts" WHERE EXISTS (SELECT * FROM "taggings" WHERE "taggings"."taggable_id" = "posts"."id" AND "taggings"."taggable_type" = 'Post' AND "taggings"."tag_id" IN (SELECT "tags"."id" FROM "tags" WHERE (LOWER("tags"."name") LIKE '%foo%' ESCAPE '!'))) LIMIT ? [["LIMIT", 1]]
31
- Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE EXISTS (SELECT * FROM "taggings" WHERE "taggings"."taggable_id" = "posts"."id" AND "taggings"."taggable_type" = 'Post' AND "taggings"."tag_id" IN (SELECT "tags"."id" FROM "tags" WHERE (LOWER("tags"."name") LIKE '%foo%' ESCAPE '!')))
32
- Rendered collection of posts/_post.html.haml [1 times] (4.4ms)
33
- Rendered /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/create.html.haml within layouts/application (47.0ms)
34
- Completed 200 OK in 62ms (Views: 53.0ms | ActiveRecord: 1.2ms)
35
-  (0.4ms) rollback transaction
36
-  (1.1ms) begin transaction
37
-  (0.2ms) SAVEPOINT active_record_1
38
- Post Create (0.6ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:57.805250"], ["updated_at", "2019-06-12 11:30:57.805250"]]
39
- ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
40
-  (0.1ms) RELEASE SAVEPOINT active_record_1
41
- ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
42
-  (0.1ms) SAVEPOINT active_record_1
43
- ActsAsTaggableOn::Tag Load (0.5ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo, bar, baz'))
44
- ActsAsTaggableOn::Tag Exists (0.5ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo, bar, baz"], ["LIMIT", 1]]
45
- ActsAsTaggableOn::Tag Create (1.0ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo, bar, baz"], ["created_at", "2019-06-12 11:30:57.835664"], ["updated_at", "2019-06-12 11:30:57.835664"]]
46
- ActsAsTaggableOn::Tag Load (0.8ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
47
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48
- ActsAsTaggableOn::Tagging Exists (0.4ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
49
- ActsAsTaggableOn::Tagging Create (0.9ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:57.866682"]]
50
- ActsAsTaggableOn::Tag Update All (0.1ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
51
-  (0.1ms) RELEASE SAVEPOINT active_record_1
52
- Started GET "/de/tags/foo" for 127.0.0.1 at 2019-06-12 13:30:57 +0200
53
- Processing by Cmor::Tags::SearchsController#create as HTML
54
- Parameters: {"locale"=>"de", "tag_list"=>"foo"}
55
-  (0.3ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
56
- Rendering /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/create.html.haml within layouts/application
57
- Rendered /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/_form.html.haml (11.6ms)
58
- Post Exists (0.9ms) SELECT 1 AS one FROM "posts" WHERE EXISTS (SELECT * FROM "taggings" WHERE "taggings"."taggable_id" = "posts"."id" AND "taggings"."taggable_type" = 'Post' AND "taggings"."tag_id" IN (SELECT "tags"."id" FROM "tags" WHERE (LOWER("tags"."name") LIKE '%foo%' ESCAPE '!'))) LIMIT ? [["LIMIT", 1]]
59
- Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE EXISTS (SELECT * FROM "taggings" WHERE "taggings"."taggable_id" = "posts"."id" AND "taggings"."taggable_type" = 'Post' AND "taggings"."tag_id" IN (SELECT "tags"."id" FROM "tags" WHERE (LOWER("tags"."name") LIKE '%foo%' ESCAPE '!')))
60
- Rendered collection of posts/_post.html.haml [1 times] (0.1ms)
61
- Rendered /home/vagrant/rails/cmor/cmor/cmor_tags/app/views/cmor/tags/searchs/create.html.haml within layouts/application (23.3ms)
62
- Completed 200 OK in 36ms (Views: 26.3ms | ActiveRecord: 1.6ms)
63
-  (0.3ms) rollback transaction
64
-  (0.1ms) begin transaction
65
-  (0.1ms) SAVEPOINT active_record_1
66
- Post Create (0.5ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:57.928243"], ["updated_at", "2019-06-12 11:30:57.928243"]]
67
- ActsAsTaggableOn::Tagging Load (0.0ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
68
-  (0.1ms) RELEASE SAVEPOINT active_record_1
69
- ActsAsTaggableOn::Tag Load (0.5ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
70
-  (0.2ms) SAVEPOINT active_record_1
71
- ActsAsTaggableOn::Tag Load (0.4ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo'))
72
- ActsAsTaggableOn::Tag Exists (0.2ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo"], ["LIMIT", 1]]
73
- ActsAsTaggableOn::Tag Create (1.7ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo"], ["created_at", "2019-06-12 11:30:57.950014"], ["updated_at", "2019-06-12 11:30:57.950014"]]
74
- ActsAsTaggableOn::Tag Load (0.4ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
75
- ActsAsTaggableOn::Tag Load (1.4ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
76
- ActsAsTaggableOn::Tagging Exists (1.2ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
77
- ActsAsTaggableOn::Tagging Create (0.9ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:57.975435"]]
78
- ActsAsTaggableOn::Tag Update All (0.2ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
79
-  (0.1ms) RELEASE SAVEPOINT active_record_1
80
-  (0.1ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
81
-  (0.4ms) rollback transaction
82
-  (0.1ms) begin transaction
83
-  (6.5ms) SAVEPOINT active_record_1
84
- Post Create (0.4ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:58.001484"], ["updated_at", "2019-06-12 11:30:58.001484"]]
85
- ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
86
-  (0.1ms) RELEASE SAVEPOINT active_record_1
87
- ActsAsTaggableOn::Tag Load (3.4ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
88
-  (0.1ms) SAVEPOINT active_record_1
89
- ActsAsTaggableOn::Tag Load (7.0ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo'))
90
- ActsAsTaggableOn::Tag Exists (0.4ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo"], ["LIMIT", 1]]
91
- ActsAsTaggableOn::Tag Create (0.7ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo"], ["created_at", "2019-06-12 11:30:58.032434"], ["updated_at", "2019-06-12 11:30:58.032434"]]
92
- ActsAsTaggableOn::Tag Load (1.4ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
93
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
94
- ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
95
- ActsAsTaggableOn::Tagging Create (0.9ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:58.055366"]]
96
- ActsAsTaggableOn::Tag Update All (0.3ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
97
-  (0.1ms) RELEASE SAVEPOINT active_record_1
98
-  (0.1ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
99
-  (0.5ms) rollback transaction
100
-  (0.2ms) begin transaction
101
-  (0.3ms) SAVEPOINT active_record_1
102
- Post Create (0.7ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:58.082776"], ["updated_at", "2019-06-12 11:30:58.082776"]]
103
- ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
104
-  (0.2ms) RELEASE SAVEPOINT active_record_1
105
- ActsAsTaggableOn::Tag Load (0.6ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
106
-  (0.1ms) SAVEPOINT active_record_1
107
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo'))
108
- ActsAsTaggableOn::Tag Exists (0.3ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo"], ["LIMIT", 1]]
109
- ActsAsTaggableOn::Tag Create (0.5ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo"], ["created_at", "2019-06-12 11:30:58.105432"], ["updated_at", "2019-06-12 11:30:58.105432"]]
110
- ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
111
- ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
112
- ActsAsTaggableOn::Tagging Exists (0.3ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
113
- ActsAsTaggableOn::Tagging Create (0.9ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:58.119534"]]
114
- ActsAsTaggableOn::Tag Update All (0.7ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
115
-  (0.2ms) RELEASE SAVEPOINT active_record_1
116
-  (0.2ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
117
-  (0.4ms) SELECT COUNT(*) FROM "posts" WHERE EXISTS (SELECT * FROM "taggings" WHERE "taggings"."taggable_id" = "posts"."id" AND "taggings"."taggable_type" = 'Post' AND "taggings"."tag_id" IN (SELECT "tags"."id" FROM "tags" WHERE (LOWER("tags"."name") LIKE '%foo%' ESCAPE '!')))
118
-  (1.2ms) rollback transaction
119
-  (0.2ms) begin transaction
120
-  (0.9ms) SAVEPOINT active_record_1
121
- Post Create (2.0ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:58.153991"], ["updated_at", "2019-06-12 11:30:58.153991"]]
122
- ActsAsTaggableOn::Tagging Load (0.3ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
123
-  (0.1ms) RELEASE SAVEPOINT active_record_1
124
- ActsAsTaggableOn::Tag Load (0.5ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
125
-  (0.1ms) SAVEPOINT active_record_1
126
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo'))
127
- ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo"], ["LIMIT", 1]]
128
- ActsAsTaggableOn::Tag Create (0.3ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo"], ["created_at", "2019-06-12 11:30:58.169275"], ["updated_at", "2019-06-12 11:30:58.169275"]]
129
- ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
130
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
131
- ActsAsTaggableOn::Tagging Exists (0.1ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
132
- ActsAsTaggableOn::Tagging Create (2.4ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:58.187643"]]
133
- ActsAsTaggableOn::Tag Update All (0.3ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
134
-  (0.1ms) RELEASE SAVEPOINT active_record_1
135
-  (0.2ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
136
-  (0.5ms) rollback transaction
137
-  (0.1ms) begin transaction
138
-  (0.1ms) SAVEPOINT active_record_1
139
- Post Create (0.4ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:58.215889"], ["updated_at", "2019-06-12 11:30:58.215889"]]
140
- ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
141
-  (0.1ms) RELEASE SAVEPOINT active_record_1
142
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
143
-  (0.1ms) SAVEPOINT active_record_1
144
- ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo'))
145
- ActsAsTaggableOn::Tag Exists (0.3ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo"], ["LIMIT", 1]]
146
- ActsAsTaggableOn::Tag Create (1.9ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo"], ["created_at", "2019-06-12 11:30:58.226637"], ["updated_at", "2019-06-12 11:30:58.226637"]]
147
- ActsAsTaggableOn::Tag Load (0.7ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
148
- ActsAsTaggableOn::Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
149
- ActsAsTaggableOn::Tagging Exists (0.3ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
150
- ActsAsTaggableOn::Tagging Create (1.6ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:58.244930"]]
151
- ActsAsTaggableOn::Tag Update All (0.6ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
152
-  (0.2ms) RELEASE SAVEPOINT active_record_1
153
-  (0.2ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
154
-  (0.3ms) rollback transaction
155
-  (0.1ms) begin transaction
156
-  (0.1ms) SAVEPOINT active_record_1
157
- Post Create (0.8ms) INSERT INTO "posts" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "MyString"], ["created_at", "2019-06-12 11:30:58.282221"], ["updated_at", "2019-06-12 11:30:58.282221"]]
158
- ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? [["taggable_id", 1], ["taggable_type", "Post"]]
159
-  (0.1ms) RELEASE SAVEPOINT active_record_1
160
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
161
-  (0.1ms) SAVEPOINT active_record_1
162
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('foo'))
163
- ActsAsTaggableOn::Tag Exists (0.1ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "foo"], ["LIMIT", 1]]
164
- ActsAsTaggableOn::Tag Create (0.5ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "foo"], ["created_at", "2019-06-12 11:30:58.291265"], ["updated_at", "2019-06-12 11:30:58.291265"]]
165
- ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = ? AND "taggings"."taggable_type" = ? AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Post"]]
166
- ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
167
- ActsAsTaggableOn::Tagging Exists (0.2ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" = ? AND "taggings"."taggable_id" = ? AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["LIMIT", 1]]
168
- ActsAsTaggableOn::Tagging Create (0.8ms) INSERT INTO "taggings" ("tag_id", "taggable_type", "taggable_id", "context", "created_at") VALUES (?, ?, ?, ?, ?) [["tag_id", 1], ["taggable_type", "Post"], ["taggable_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:58.298670"]]
169
- ActsAsTaggableOn::Tag Update All (0.1ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
170
-  (0.1ms) RELEASE SAVEPOINT active_record_1
171
-  (0.2ms) SELECT DISTINCT "taggings"."taggable_type" FROM "taggings"
172
-  (0.4ms) SELECT COUNT(*) FROM "posts" WHERE EXISTS (SELECT * FROM "taggings" WHERE "taggings"."taggable_id" = "posts"."id" AND "taggings"."taggable_type" = 'Post' AND "taggings"."tag_id" IN (SELECT "tags"."id" FROM "tags" WHERE (LOWER("tags"."name") LIKE '%f%' ESCAPE '!')))
173
-  (0.4ms) rollback transaction
174
-  (0.2ms) begin transaction
175
-  (0.2ms) rollback transaction
176
-  (0.2ms) begin transaction
177
-  (0.1ms) rollback transaction
178
-  (0.1ms) begin transaction
179
- ActsAsTaggableOn::Tag Exists (0.6ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "tag-name-1"], ["LIMIT", 1]]
180
-  (0.2ms) rollback transaction
181
-  (0.9ms) begin transaction
182
- ActsAsTaggableOn::Tag Exists (0.3ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" IS NULL LIMIT ? [["LIMIT", 1]]
183
-  (0.1ms) rollback transaction
184
-  (0.1ms) begin transaction
185
-  (0.2ms) SAVEPOINT active_record_1
186
- ActsAsTaggableOn::Tag Exists (0.2ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "tag-name-2"], ["LIMIT", 1]]
187
- Cmor::Tags::Tag Create (0.8ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "tag-name-2"], ["created_at", "2019-06-12 11:30:58.411113"], ["updated_at", "2019-06-12 11:30:58.411113"]]
188
-  (0.2ms) RELEASE SAVEPOINT active_record_1
189
-  (0.2ms) rollback transaction
190
-  (0.2ms) begin transaction
191
-  (0.1ms) rollback transaction
192
-  (0.1ms) begin transaction
193
-  (0.8ms) rollback transaction
194
-  (0.2ms) begin transaction
195
-  (0.2ms) SAVEPOINT active_record_1
196
- ActsAsTaggableOn::Tag Exists (0.4ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "tag-name-3"], ["LIMIT", 1]]
197
- Cmor::Tags::Tag Create (0.5ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "tag-name-3"], ["created_at", "2019-06-12 11:30:58.479838"], ["updated_at", "2019-06-12 11:30:58.479838"]]
198
-  (0.1ms) RELEASE SAVEPOINT active_record_1
199
- ActsAsTaggableOn::Tagging Exists (0.3ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" IS NULL AND "taggings"."taggable_id" IS NULL AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["context", "tags"], ["LIMIT", 1]]
200
-  (0.2ms) rollback transaction
201
-  (0.1ms) begin transaction
202
- ActsAsTaggableOn::Tagging Exists (0.4ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" IS NULL AND "taggings"."taggable_type" IS NULL AND "taggings"."taggable_id" IS NULL AND "taggings"."context" IS NULL AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["LIMIT", 1]]
203
-  (0.1ms) rollback transaction
204
-  (0.1ms) begin transaction
205
-  (0.3ms) SAVEPOINT active_record_1
206
- ActsAsTaggableOn::Tag Exists (0.7ms) SELECT 1 AS one FROM "tags" WHERE "tags"."name" = ? LIMIT ? [["name", "tag-name-4"], ["LIMIT", 1]]
207
- Cmor::Tags::Tag Create (0.7ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "tag-name-4"], ["created_at", "2019-06-12 11:30:58.523415"], ["updated_at", "2019-06-12 11:30:58.523415"]]
208
-  (0.2ms) RELEASE SAVEPOINT active_record_1
209
-  (0.2ms) SAVEPOINT active_record_1
210
- ActsAsTaggableOn::Tagging Exists (0.5ms) SELECT 1 AS one FROM "taggings" WHERE "taggings"."tag_id" = ? AND "taggings"."taggable_type" IS NULL AND "taggings"."taggable_id" IS NULL AND "taggings"."context" = ? AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL LIMIT ? [["tag_id", 1], ["context", "tags"], ["LIMIT", 1]]
211
- Cmor::Tags::Tagging Create (1.0ms) INSERT INTO "taggings" ("tag_id", "context", "created_at") VALUES (?, ?, ?) [["tag_id", 1], ["context", "tags"], ["created_at", "2019-06-12 11:30:58.531588"]]
212
- Cmor::Tags::Tag Update All (0.4ms) UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = ? [["id", 1]]
213
-  (0.1ms) RELEASE SAVEPOINT active_record_1
214
-  (0.3ms) rollback transaction
215
-  (0.1ms) begin transaction
216
-  (0.1ms) rollback transaction
217
-  (0.2ms) begin transaction
218
-  (0.3ms) rollback transaction
219
-  (0.1ms) begin transaction
220
-  (0.1ms) rollback transaction
221
-  (0.2ms) begin transaction
222
-  (0.1ms) rollback transaction
223
-  (0.2ms) begin transaction
224
-  (0.1ms) rollback transaction
225
-  (0.1ms) begin transaction
226
-  (0.1ms) rollback transaction
227
-  (0.3ms) begin transaction
228
-  (0.1ms) rollback transaction
229
-  (6.6ms) begin transaction
230
-  (0.3ms) rollback transaction
231
-  (0.2ms) begin transaction
232
-  (0.2ms) rollback transaction
233
-  (0.2ms) begin transaction
234
-  (0.2ms) rollback transaction
235
-  (0.1ms) begin transaction
236
-  (0.1ms) rollback transaction
237
-  (0.1ms) begin transaction
238
-  (0.1ms) rollback transaction
239
-  (0.1ms) begin transaction
240
-  (0.1ms) rollback transaction
241
-  (0.2ms) begin transaction
242
-  (0.8ms) rollback transaction
243
-  (0.1ms) begin transaction
244
-  (0.1ms) rollback transaction
245
-  (0.1ms) begin transaction
246
-  (0.1ms) rollback transaction
247
-  (0.2ms) begin transaction
248
-  (0.2ms) rollback transaction
249
-  (0.2ms) begin transaction
250
-  (0.1ms) rollback transaction
251
-  (0.1ms) begin transaction
252
-  (0.1ms) rollback transaction
253
-  (0.2ms) begin transaction
254
-  (0.3ms) rollback transaction
255
-  (0.1ms) begin transaction
256
-  (0.1ms) rollback transaction
257
-  (0.1ms) begin transaction
258
-  (0.1ms) rollback transaction
259
-  (0.1ms) begin transaction
260
-  (0.1ms) rollback transaction
261
-  (0.1ms) begin transaction
262
-  (0.2ms) rollback transaction
263
-  (0.0ms) begin transaction
264
-  (0.1ms) rollback transaction
265
-  (0.1ms) begin transaction
266
-  (0.1ms) rollback transaction
267
-  (0.1ms) begin transaction
268
-  (0.1ms) rollback transaction
269
-  (0.2ms) begin transaction
270
-  (0.3ms) rollback transaction
271
-  (0.3ms) begin transaction
272
-  (0.2ms) rollback transaction
273
-  (0.1ms) begin transaction
274
-  (0.1ms) rollback transaction
275
-  (0.3ms) begin transaction
276
-  (0.1ms) rollback transaction
277
-  (0.1ms) begin transaction
278
-  (0.1ms) rollback transaction
279
-  (0.1ms) begin transaction
280
-  (0.1ms) rollback transaction
281
-  (0.4ms) begin transaction
282
-  (0.1ms) rollback transaction