simple_hashtag 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +6 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +174 -0
  8. data/Rakefile +6 -0
  9. data/lib/generators/simple_hashtag/migration_generator.rb +20 -0
  10. data/lib/generators/simple_hashtag/templates/migrations/create_hashtaggings_migration.rb +11 -0
  11. data/lib/generators/simple_hashtag/templates/migrations/create_hashtags_migration.rb +10 -0
  12. data/lib/generators/simple_hashtag/templates/views/hashtags_controller.rb +8 -0
  13. data/lib/generators/simple_hashtag/templates/views/hashtags_helper.rb +16 -0
  14. data/lib/generators/simple_hashtag/templates/views/hashtags_index.html.erb +8 -0
  15. data/lib/generators/simple_hashtag/views_generator.rb +14 -0
  16. data/lib/simple_hashtag/hashtag.rb +39 -0
  17. data/lib/simple_hashtag/hashtaggable.rb +45 -0
  18. data/lib/simple_hashtag/hashtagging.rb +8 -0
  19. data/lib/simple_hashtag/version.rb +3 -0
  20. data/lib/simple_hashtag.rb +6 -0
  21. data/simple_hashtag.gemspec +28 -0
  22. data/spec/dummy/README.rdoc +261 -0
  23. data/spec/dummy/Rakefile +7 -0
  24. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  25. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  26. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  27. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  28. data/spec/dummy/app/mailers/.gitkeep +0 -0
  29. data/spec/dummy/app/models/.gitkeep +0 -0
  30. data/spec/dummy/app/models/picture.rb +4 -0
  31. data/spec/dummy/app/models/post.rb +3 -0
  32. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/spec/dummy/config/application.rb +56 -0
  34. data/spec/dummy/config/boot.rb +10 -0
  35. data/spec/dummy/config/database.yml +25 -0
  36. data/spec/dummy/config/environment.rb +5 -0
  37. data/spec/dummy/config/environments/development.rb +37 -0
  38. data/spec/dummy/config/environments/production.rb +67 -0
  39. data/spec/dummy/config/environments/test.rb +37 -0
  40. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/dummy/config/initializers/inflections.rb +15 -0
  42. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  43. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  44. data/spec/dummy/config/initializers/session_store.rb +8 -0
  45. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/spec/dummy/config/locales/en.yml +5 -0
  47. data/spec/dummy/config/routes.rb +2 -0
  48. data/spec/dummy/config.ru +4 -0
  49. data/spec/dummy/db/migrate/20130919041824_create_posts.rb +9 -0
  50. data/spec/dummy/db/migrate/20130919041825_create_pictures.rb +9 -0
  51. data/spec/dummy/db/migrate/20131004085836_create_simple_hashtag_hashtags.rb +9 -0
  52. data/spec/dummy/db/migrate/20131004085907_create_simple_hashtag_hashtaggings.rb +10 -0
  53. data/spec/dummy/db/schema.rb +43 -0
  54. data/spec/dummy/lib/assets/.gitkeep +0 -0
  55. data/spec/dummy/log/.gitkeep +0 -0
  56. data/spec/dummy/log/development.log +92 -0
  57. data/spec/dummy/log/test.log +3423 -0
  58. data/spec/dummy/public/404.html +26 -0
  59. data/spec/dummy/public/422.html +26 -0
  60. data/spec/dummy/public/500.html +25 -0
  61. data/spec/dummy/public/favicon.ico +0 -0
  62. data/spec/dummy/script/rails +6 -0
  63. data/spec/simple_hashtag_spec.rb +103 -0
  64. data/spec/spec_helper.rb +13 -0
  65. metadata +221 -0
@@ -0,0 +1,3423 @@
1
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+  (0.2ms) SELECT version FROM "schema_migrations"
4
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
5
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6
+  (0.1ms) begin transaction
7
+ SQL (4.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:48:01 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:48:01 UTC +00:00]]
8
+  (1.2ms) commit transaction
9
+  (0.1ms) begin transaction
10
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:48:01 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:48:01 UTC +00:00]]
11
+  (1.0ms) commit transaction
12
+  (0.0ms) begin transaction
13
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:48:51 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:48:51 UTC +00:00]]
14
+  (1.7ms) commit transaction
15
+  (0.1ms) begin transaction
16
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:48:51 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:48:51 UTC +00:00]]
17
+  (0.9ms) commit transaction
18
+  (0.0ms) begin transaction
19
+ SQL (1.8ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:49:31 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:49:31 UTC +00:00]]
20
+  (1.8ms) commit transaction
21
+  (0.1ms) begin transaction
22
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:49:31 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:49:31 UTC +00:00]]
23
+  (1.0ms) commit transaction
24
+  (0.0ms) begin transaction
25
+ SQL (2.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:52:07 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:52:07 UTC +00:00]]
26
+  (2.0ms) commit transaction
27
+  (0.1ms) begin transaction
28
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:52:07 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:52:07 UTC +00:00]]
29
+  (1.0ms) commit transaction
30
+  (0.0ms) begin transaction
31
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:54:40 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:54:40 UTC +00:00]]
32
+  (1.8ms) commit transaction
33
+  (0.1ms) begin transaction
34
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:54:40 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:54:40 UTC +00:00]]
35
+  (0.9ms) commit transaction
36
+  (0.0ms) begin transaction
37
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:55:17 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:55:17 UTC +00:00]]
38
+  (1.8ms) commit transaction
39
+  (0.1ms) begin transaction
40
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 14:55:17 UTC +00:00], ["name", "dummy"], ["updated_at", Sat, 05 Oct 2013 14:55:17 UTC +00:00]]
41
+  (1.0ms) commit transaction
42
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
43
+  (1.8ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
44
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1
45
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
46
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
47
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
48
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'WEIRDCASE' LIMIT 1
49
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
50
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
51
+  (0.4ms) begin transaction
52
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
53
+ SQL (3.7ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:20:53 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:20:53 UTC +00:00]]
54
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:20:53 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:20:53 UTC +00:00]]
55
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 8], ["hashtaggable_id", 1], ["hashtaggable_type", "Post"]]
56
+  (0.7ms) commit transaction
57
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
58
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 8]]
59
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
60
+  (1.8ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
61
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
62
+  (0.1ms) begin transaction
63
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
64
+ SQL (1.9ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:21:07 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:21:07 UTC +00:00]]
65
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 8], ["hashtaggable_id", 2], ["hashtaggable_type", "Post"]]
66
+  (0.8ms) commit transaction
67
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
68
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 8]]
69
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
70
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
71
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
72
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
73
+  (0.1ms) begin transaction
74
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
75
+ SQL (1.9ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:21:33 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:21:33 UTC +00:00]]
76
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 8], ["hashtaggable_id", 3], ["hashtaggable_type", "Post"]]
77
+  (1.0ms) commit transaction
78
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
79
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 8]]
80
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
81
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
82
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 3]]
83
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
84
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
85
+  (0.1ms) begin transaction
86
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
87
+ SQL (2.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:26:05 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:26:05 UTC +00:00]]
88
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:26:05 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:26:05 UTC +00:00]]
89
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 1], ["hashtaggable_type", "Post"]]
90
+  (0.8ms) commit transaction
91
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
92
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
93
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
94
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
95
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
96
+  (0.3ms) begin transaction
97
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
98
+ SQL (3.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:26:15 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:26:15 UTC +00:00]]
99
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 2], ["hashtaggable_type", "Post"]]
100
+  (0.6ms) commit transaction
101
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
102
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
103
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
104
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
105
+  (2.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
106
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
107
+  (0.1ms) begin transaction
108
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
109
+ SQL (3.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:26:28 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:26:28 UTC +00:00]]
110
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 3], ["hashtaggable_type", "Post"]]
111
+  (0.8ms) commit transaction
112
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
113
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
114
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
115
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
116
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 3]]
117
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
118
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
119
+  (0.1ms) begin transaction
120
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
121
+ SQL (2.0ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:26:59 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:26:59 UTC +00:00]]
122
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 4], ["hashtaggable_type", "Post"]]
123
+  (0.7ms) commit transaction
124
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
125
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
126
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
127
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
128
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 3]]
129
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 4]]
130
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
131
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
132
+  (0.2ms) begin transaction
133
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
134
+ SQL (3.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:31:04 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:31:04 UTC +00:00]]
135
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 5], ["hashtaggable_type", "Post"]]
136
+  (0.9ms) commit transaction
137
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
138
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
139
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
140
+  (3.7ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
141
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
142
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
143
+  (0.1ms) begin transaction
144
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
145
+ SQL (2.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:32:11 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:32:11 UTC +00:00]]
146
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 6], ["hashtaggable_type", "Post"]]
147
+  (0.8ms) commit transaction
148
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
149
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
150
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
151
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
152
+ SimpleHashtag::Hashtagging Load (1.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
153
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
154
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
155
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 3]]
156
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 4]]
157
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 5]]
158
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 6]]
159
+  (0.1ms) begin transaction
160
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
161
+ SQL (0.8ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:33:02 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:33:02 UTC +00:00]]
162
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 7], ["hashtaggable_type", "Post"]]
163
+  (1.1ms) commit transaction
164
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
165
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
166
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
167
+ SimpleHashtag::Hashtagging Load (1.8ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
168
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
169
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
170
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 3]]
171
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 4]]
172
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 5]]
173
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 6]]
174
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 7]]
175
+  (0.1ms) begin transaction
176
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
177
+ SQL (1.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:33:17 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:33:17 UTC +00:00]]
178
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 8], ["hashtaggable_type", "Post"]]
179
+  (0.7ms) commit transaction
180
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
181
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
182
+  (0.1ms) begin transaction
183
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
184
+ SQL (3.7ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:36:47 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:36:47 UTC +00:00]]
185
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 9], ["hashtaggable_type", "Post"]]
186
+  (0.8ms) commit transaction
187
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
188
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
189
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
190
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
191
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 3]]
192
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 4]]
193
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 5]]
194
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 6]]
195
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 7]]
196
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 8]]
197
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 9]]
198
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
199
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
200
+  (0.2ms) begin transaction
201
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
202
+ SQL (3.7ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:39:35 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:39:35 UTC +00:00]]
203
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 10], ["hashtaggable_type", "Post"]]
204
+  (0.9ms) commit transaction
205
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
206
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
207
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
208
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
209
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 3]]
210
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 4]]
211
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 5]]
212
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 6]]
213
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 7]]
214
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 8]]
215
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 9]]
216
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 10]]
217
+ SQL (4.8ms) DELETE FROM "simple_hashtag_hashtags"
218
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtaggings"
219
+ SQL (0.8ms) DELETE FROM "posts"
220
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
221
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
222
+  (0.2ms) begin transaction
223
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
224
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:39:38 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:39:38 UTC +00:00]]
225
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:39:38 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:39:38 UTC +00:00]]
226
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 13], ["hashtaggable_id", 11], ["hashtaggable_type", "Post"]]
227
+  (0.7ms) commit transaction
228
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
229
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 13]]
230
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 11]]
231
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
232
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
233
+ SQL (0.7ms) DELETE FROM "posts"
234
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
235
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
236
+  (0.1ms) begin transaction
237
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
238
+ SQL (2.7ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:39:59 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:39:59 UTC +00:00]]
239
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:39:59 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:39:59 UTC +00:00]]
240
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 15], ["hashtaggable_id", 12], ["hashtaggable_type", "Post"]]
241
+  (0.8ms) commit transaction
242
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
243
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
244
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
245
+ SQL (0.6ms) DELETE FROM "posts"
246
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
247
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
248
+  (0.1ms) begin transaction
249
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
250
+ SQL (3.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:40:09 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:40:09 UTC +00:00]]
251
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:40:09 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:40:09 UTC +00:00]]
252
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 17], ["hashtaggable_id", 13], ["hashtaggable_type", "Post"]]
253
+  (0.8ms) commit transaction
254
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
255
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
256
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
257
+ SQL (0.7ms) DELETE FROM "posts"
258
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
259
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
260
+  (0.1ms) begin transaction
261
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
262
+ SQL (3.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:40:20 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:40:20 UTC +00:00]]
263
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:40:20 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:40:20 UTC +00:00]]
264
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 19], ["hashtaggable_id", 14], ["hashtaggable_type", "Post"]]
265
+  (0.7ms) commit transaction
266
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
267
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 19]]
268
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 14]]
269
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtags"
270
+ SQL (0.6ms) DELETE FROM "simple_hashtag_hashtaggings"
271
+ SQL (0.6ms) DELETE FROM "posts"
272
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
273
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
274
+  (0.2ms) begin transaction
275
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
276
+ SQL (2.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:43:51 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:43:51 UTC +00:00]]
277
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:43:51 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:43:51 UTC +00:00]]
278
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 21], ["hashtaggable_id", 15], ["hashtaggable_type", "Post"]]
279
+  (1.2ms) commit transaction
280
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
281
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 21]]
282
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 15]]
283
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
284
+ SQL (1.3ms) DELETE FROM "simple_hashtag_hashtaggings"
285
+ SQL (1.2ms) DELETE FROM "posts"
286
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
287
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
288
+  (0.1ms) begin transaction
289
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
290
+ SQL (3.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:48:14 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:48:14 UTC +00:00]]
291
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:48:15 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:48:15 UTC +00:00]]
292
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 23], ["hashtaggable_id", 16], ["hashtaggable_type", "Post"]]
293
+  (0.8ms) commit transaction
294
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
295
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 23]]
296
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 16]]
297
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtags"
298
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
299
+ SQL (0.7ms) DELETE FROM "posts"
300
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
301
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
302
+  (0.1ms) begin transaction
303
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
304
+ SQL (1.8ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:52:10 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:52:10 UTC +00:00]]
305
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:52:10 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:52:10 UTC +00:00]]
306
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 25], ["hashtaggable_id", 17], ["hashtaggable_type", "Post"]]
307
+  (1.2ms) commit transaction
308
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
309
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 25]]
310
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 17]]
311
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtags"
312
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtaggings"
313
+ SQL (1.3ms) DELETE FROM "posts"
314
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
315
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
316
+  (0.1ms) begin transaction
317
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
318
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:52:28 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:52:28 UTC +00:00]]
319
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:52:28 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:52:28 UTC +00:00]]
320
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 27], ["hashtaggable_id", 18], ["hashtaggable_type", "Post"]]
321
+  (1.0ms) commit transaction
322
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
323
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 27]]
324
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 18]]
325
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
326
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
327
+ SQL (0.7ms) DELETE FROM "posts"
328
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
329
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
330
+  (0.1ms) begin transaction
331
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
332
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:52:58 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:52:58 UTC +00:00]]
333
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:52:58 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:52:58 UTC +00:00]]
334
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 29], ["hashtaggable_id", 19], ["hashtaggable_type", "Post"]]
335
+  (1.3ms) commit transaction
336
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
337
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 29]]
338
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 19]]
339
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtags"
340
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtaggings"
341
+ SQL (0.8ms) DELETE FROM "posts"
342
+  (2.2ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
343
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
344
+  (0.1ms) begin transaction
345
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
346
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:53:28 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:53:28 UTC +00:00]]
347
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:53:28 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:53:28 UTC +00:00]]
348
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 31], ["hashtaggable_id", 20], ["hashtaggable_type", "Post"]]
349
+  (1.2ms) commit transaction
350
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
351
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 31]]
352
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 20]]
353
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
354
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtaggings"
355
+ SQL (1.1ms) DELETE FROM "posts"
356
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
357
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
358
+  (0.1ms) begin transaction
359
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
360
+ SQL (3.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:53:43 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:53:43 UTC +00:00]]
361
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:53:43 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:53:43 UTC +00:00]]
362
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 33], ["hashtaggable_id", 21], ["hashtaggable_type", "Post"]]
363
+  (0.8ms) commit transaction
364
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
365
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 33]]
366
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 21]]
367
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
368
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
369
+ SQL (0.8ms) DELETE FROM "posts"
370
+  (2.2ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
371
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
372
+  (0.1ms) begin transaction
373
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
374
+ SQL (1.7ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:54:38 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:54:38 UTC +00:00]]
375
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:54:38 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:54:38 UTC +00:00]]
376
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 35], ["hashtaggable_id", 22], ["hashtaggable_type", "Post"]]
377
+  (1.3ms) commit transaction
378
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
379
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 35]]
380
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 22]]
381
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtags"
382
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtaggings"
383
+ SQL (0.9ms) DELETE FROM "posts"
384
+  (2.2ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
385
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
386
+  (0.2ms) begin transaction
387
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
388
+ SQL (3.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 15:59:33 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 15:59:33 UTC +00:00]]
389
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:59:33 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:59:33 UTC +00:00]]
390
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 37], ["hashtaggable_id", 23], ["hashtaggable_type", "Post"]]
391
+  (1.2ms) commit transaction
392
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
393
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 37]]
394
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 23]]
395
+  (0.0ms) begin transaction
396
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
397
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 15:59:33 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 15:59:33 UTC +00:00]]
398
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 37], ["hashtaggable_id", 24], ["hashtaggable_type", "Post"]]
399
+  (0.8ms) commit transaction
400
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
401
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 24], ["hashtaggable_type", "Post"]]
402
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 24], ["hashtaggable_type", "Post"]]
403
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtags"
404
+ SQL (1.3ms) DELETE FROM "simple_hashtag_hashtaggings"
405
+ SQL (1.4ms) DELETE FROM "posts"
406
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
407
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
408
+  (0.1ms) begin transaction
409
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
410
+ SQL (2.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00]]
411
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00]]
412
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 39], ["hashtaggable_id", 25], ["hashtaggable_type", "Post"]]
413
+  (0.8ms) commit transaction
414
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
415
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 39]]
416
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 25]]
417
+  (0.1ms) begin transaction
418
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
419
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00]]
420
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 39], ["hashtaggable_id", 26], ["hashtaggable_type", "Post"]]
421
+  (0.7ms) commit transaction
422
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
423
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 26], ["hashtaggable_type", "Post"]]
424
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 26], ["hashtaggable_type", "Post"]]
425
+  (0.1ms) begin transaction
426
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
427
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00]]
428
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 39], ["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
429
+  (0.7ms) commit transaction
430
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
431
+  (0.1ms) begin transaction
432
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
433
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
434
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00], ["name", "blandit"], ["updated_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00]]
435
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
436
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 40], ["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
437
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 27 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sat, 05 Oct 2013 16:01:20 UTC +00:00]]
438
+  (0.8ms) commit transaction
439
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
440
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtags"
441
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtaggings"
442
+ SQL (0.9ms) DELETE FROM "posts"
443
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
444
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
445
+  (0.1ms) begin transaction
446
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
447
+ SQL (3.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00]]
448
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00]]
449
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 42], ["hashtaggable_id", 28], ["hashtaggable_type", "Post"]]
450
+  (1.3ms) commit transaction
451
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
452
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 42]]
453
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 28]]
454
+  (0.0ms) begin transaction
455
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
456
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00]]
457
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 42], ["hashtaggable_id", 29], ["hashtaggable_type", "Post"]]
458
+  (0.8ms) commit transaction
459
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
460
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 29], ["hashtaggable_type", "Post"]]
461
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 29], ["hashtaggable_type", "Post"]]
462
+  (0.1ms) begin transaction
463
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
464
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00]]
465
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 42], ["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
466
+  (0.8ms) commit transaction
467
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
468
+  (0.1ms) begin transaction
469
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
470
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
471
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00], ["name", "blandit"], ["updated_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00]]
472
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
473
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 43], ["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
474
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 30 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sat, 05 Oct 2013 16:01:30 UTC +00:00]]
475
+  (1.2ms) commit transaction
476
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
477
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
478
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
479
+ SQL (0.9ms) DELETE FROM "posts"
480
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
481
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
482
+  (0.1ms) begin transaction
483
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
484
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00]]
485
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00]]
486
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 45], ["hashtaggable_id", 31], ["hashtaggable_type", "Post"]]
487
+  (0.7ms) commit transaction
488
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
489
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 45]]
490
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 31]]
491
+  (0.1ms) begin transaction
492
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
493
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00]]
494
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 45], ["hashtaggable_id", 32], ["hashtaggable_type", "Post"]]
495
+  (0.6ms) commit transaction
496
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
497
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 32], ["hashtaggable_type", "Post"]]
498
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 32], ["hashtaggable_type", "Post"]]
499
+  (0.1ms) begin transaction
500
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
501
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00]]
502
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 45], ["hashtaggable_id", 33], ["hashtaggable_type", "Post"]]
503
+  (0.7ms) commit transaction
504
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
505
+  (0.1ms) begin transaction
506
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
507
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
508
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00], ["name", "blandit"], ["updated_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00]]
509
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 33], ["hashtaggable_type", "Post"]]
510
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 46], ["hashtaggable_id", 33], ["hashtaggable_type", "Post"]]
511
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 33 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00]]
512
+  (0.7ms) commit transaction
513
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 33], ["hashtaggable_type", "Post"]]
514
+  (0.1ms) begin transaction
515
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
516
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
517
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:02:10 UTC +00:00]]
518
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 45], ["hashtaggable_id", 34], ["hashtaggable_type", "Post"]]
519
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 46], ["hashtaggable_id", 34], ["hashtaggable_type", "Post"]]
520
+  (0.6ms) commit transaction
521
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
522
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 34], ["hashtaggable_type", "Post"]]
523
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
524
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
525
+ SQL (0.6ms) DELETE FROM "posts"
526
+  (1.8ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
527
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
528
+  (0.1ms) begin transaction
529
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
530
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00], ["name", "vitae"], ["updated_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00]]
531
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00]]
532
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 48], ["hashtaggable_id", 35], ["hashtaggable_type", "Post"]]
533
+  (1.2ms) commit transaction
534
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
535
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 48]]
536
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 35]]
537
+  (0.0ms) begin transaction
538
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
539
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00]]
540
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 48], ["hashtaggable_id", 36], ["hashtaggable_type", "Post"]]
541
+  (1.2ms) commit transaction
542
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
543
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 36], ["hashtaggable_type", "Post"]]
544
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 36], ["hashtaggable_type", "Post"]]
545
+  (0.0ms) begin transaction
546
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
547
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00]]
548
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 48], ["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
549
+  (1.4ms) commit transaction
550
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
551
+  (0.1ms) begin transaction
552
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
553
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
554
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00], ["name", "blandit"], ["updated_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00]]
555
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
556
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 49], ["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
557
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 37 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00]]
558
+  (1.0ms) commit transaction
559
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
560
+  (0.1ms) begin transaction
561
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
562
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
563
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00], ["updated_at", Sat, 05 Oct 2013 16:03:22 UTC +00:00]]
564
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 48], ["hashtaggable_id", 38], ["hashtaggable_type", "Post"]]
565
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 49], ["hashtaggable_id", 38], ["hashtaggable_type", "Post"]]
566
+  (0.8ms) commit transaction
567
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
568
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 38], ["hashtaggable_type", "Post"]]
569
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
570
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtaggings"
571
+ SQL (0.8ms) DELETE FROM "posts"
572
+  (1.5ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
573
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
574
+  (0.1ms) begin transaction
575
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
576
+ SQL (3.8ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00], ["name", "vitae"], ["updated_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00]]
577
+ SQL (0.6ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00]]
578
+ SQL (0.8ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 51], ["hashtaggable_id", 39], ["hashtaggable_type", "Post"]]
579
+  (0.8ms) commit transaction
580
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
581
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 51]]
582
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 39]]
583
+  (0.1ms) begin transaction
584
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
585
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00]]
586
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 51], ["hashtaggable_id", 40], ["hashtaggable_type", "Post"]]
587
+  (0.7ms) commit transaction
588
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
589
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 40], ["hashtaggable_type", "Post"]]
590
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 40], ["hashtaggable_type", "Post"]]
591
+  (0.1ms) begin transaction
592
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
593
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00]]
594
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 51], ["hashtaggable_id", 41], ["hashtaggable_type", "Post"]]
595
+  (0.7ms) commit transaction
596
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
597
+  (0.0ms) begin transaction
598
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
599
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
600
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00], ["name", "blandit"], ["updated_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00]]
601
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 41], ["hashtaggable_type", "Post"]]
602
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 52], ["hashtaggable_id", 41], ["hashtaggable_type", "Post"]]
603
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 41 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00]]
604
+  (0.7ms) commit transaction
605
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 41], ["hashtaggable_type", "Post"]]
606
+  (0.1ms) begin transaction
607
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
608
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
609
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:01:41 UTC +00:00]]
610
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 51], ["hashtaggable_id", 42], ["hashtaggable_type", "Post"]]
611
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 52], ["hashtaggable_id", 42], ["hashtaggable_type", "Post"]]
612
+  (0.7ms) commit transaction
613
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
614
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 42], ["hashtaggable_type", "Post"]]
615
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
616
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
617
+ SQL (0.7ms) DELETE FROM "posts"
618
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
619
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
620
+  (0.1ms) begin transaction
621
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
622
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00], ["name", "vitae"], ["updated_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00]]
623
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00]]
624
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 54], ["hashtaggable_id", 43], ["hashtaggable_type", "Post"]]
625
+  (0.7ms) commit transaction
626
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
627
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 54]]
628
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 43]]
629
+  (0.0ms) begin transaction
630
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
631
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00]]
632
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 54], ["hashtaggable_id", 44], ["hashtaggable_type", "Post"]]
633
+  (0.7ms) commit transaction
634
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
635
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 44], ["hashtaggable_type", "Post"]]
636
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 44], ["hashtaggable_type", "Post"]]
637
+  (0.0ms) begin transaction
638
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
639
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00]]
640
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 54], ["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
641
+  (0.7ms) commit transaction
642
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
643
+  (0.0ms) begin transaction
644
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
645
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
646
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00], ["name", "blandit"], ["updated_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00]]
647
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
648
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 55], ["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
649
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 45 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00]]
650
+  (0.7ms) commit transaction
651
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
652
+  (0.1ms) begin transaction
653
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
654
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
655
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:02:11 UTC +00:00]]
656
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 54], ["hashtaggable_id", 46], ["hashtaggable_type", "Post"]]
657
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 55], ["hashtaggable_id", 46], ["hashtaggable_type", "Post"]]
658
+  (0.7ms) commit transaction
659
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
660
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 46], ["hashtaggable_type", "Post"]]
661
+ SQL (1.3ms) DELETE FROM "simple_hashtag_hashtags"
662
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
663
+ SQL (0.7ms) DELETE FROM "posts"
664
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
665
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
666
+  (0.1ms) begin transaction
667
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
668
+ SQL (2.7ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:03:28 UTC +00:00], ["name", "vitae"], ["updated_at", Sun, 06 Oct 2013 03:03:28 UTC +00:00]]
669
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:03:28 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:03:28 UTC +00:00]]
670
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 57], ["hashtaggable_id", 47], ["hashtaggable_type", "Post"]]
671
+  (0.8ms) commit transaction
672
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='vitae') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
673
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 57]]
674
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 47]]
675
+  (0.1ms) begin transaction
676
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
677
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00]]
678
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 57], ["hashtaggable_id", 48], ["hashtaggable_type", "Post"]]
679
+  (0.7ms) commit transaction
680
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
681
+  (0.4ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 48], ["hashtaggable_type", "Post"]]
682
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 48], ["hashtaggable_type", "Post"]]
683
+  (0.1ms) begin transaction
684
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
685
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00]]
686
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 57], ["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
687
+  (0.8ms) commit transaction
688
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
689
+  (0.1ms) begin transaction
690
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
691
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
692
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00], ["name", "blandit"], ["updated_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00]]
693
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
694
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 58], ["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
695
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 49 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00]]
696
+  (0.9ms) commit transaction
697
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
698
+  (0.1ms) begin transaction
699
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
700
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
701
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:03:29 UTC +00:00]]
702
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 57], ["hashtaggable_id", 50], ["hashtaggable_type", "Post"]]
703
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 58], ["hashtaggable_id", 50], ["hashtaggable_type", "Post"]]
704
+  (0.8ms) commit transaction
705
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
706
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 50], ["hashtaggable_type", "Post"]]
707
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
708
+ SQL (1.7ms) DELETE FROM "simple_hashtag_hashtaggings"
709
+ SQL (2.0ms) DELETE FROM "posts"
710
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
711
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
712
+  (0.1ms) begin transaction
713
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
714
+ SQL (3.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
715
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
716
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 60], ["hashtaggable_id", 51], ["hashtaggable_type", "Post"]]
717
+  (1.6ms) commit transaction
718
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
719
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 60]]
720
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 51]]
721
+  (0.1ms) begin transaction
722
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
723
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00], ["name", "vitae"], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
724
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
725
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 61], ["hashtaggable_id", 52], ["hashtaggable_type", "Post"]]
726
+  (1.1ms) commit transaction
727
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
728
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 52], ["hashtaggable_type", "Post"]]
729
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 52], ["hashtaggable_type", "Post"]]
730
+  (0.1ms) begin transaction
731
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
732
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
733
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 61], ["hashtaggable_id", 53], ["hashtaggable_type", "Post"]]
734
+  (0.7ms) commit transaction
735
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
736
+  (0.0ms) begin transaction
737
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
738
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
739
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00], ["name", "blandit"], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
740
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 53], ["hashtaggable_type", "Post"]]
741
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 62], ["hashtaggable_id", 53], ["hashtaggable_type", "Post"]]
742
+ SQL (0.4ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 53 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
743
+  (1.3ms) commit transaction
744
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 53], ["hashtaggable_type", "Post"]]
745
+  (0.1ms) begin transaction
746
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
747
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
748
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:06:00 UTC +00:00]]
749
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 61], ["hashtaggable_id", 54], ["hashtaggable_type", "Post"]]
750
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 62], ["hashtaggable_id", 54], ["hashtaggable_type", "Post"]]
751
+  (0.9ms) commit transaction
752
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
753
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 54], ["hashtaggable_type", "Post"]]
754
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtags"
755
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
756
+ SQL (0.7ms) DELETE FROM "posts"
757
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
758
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
759
+  (0.1ms) begin transaction
760
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
761
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
762
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
763
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 64], ["hashtaggable_id", 55], ["hashtaggable_type", "Post"]]
764
+  (0.8ms) commit transaction
765
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
766
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 64]]
767
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 55]]
768
+  (0.1ms) begin transaction
769
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
770
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00], ["name", "vitae"], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
771
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
772
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 65], ["hashtaggable_id", 56], ["hashtaggable_type", "Post"]]
773
+  (0.7ms) commit transaction
774
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
775
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 56], ["hashtaggable_type", "Post"]]
776
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 56], ["hashtaggable_type", "Post"]]
777
+  (0.1ms) begin transaction
778
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
779
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero"], ["created_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
780
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 65], ["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
781
+  (0.8ms) commit transaction
782
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
783
+  (0.1ms) begin transaction
784
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
785
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
786
+ SQL (0.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00], ["name", "blandit"], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
787
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
788
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 66], ["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
789
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 57 [["body", "Nulla #vitae elit liberoCurabitur #blandit tempus porttitor."], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
790
+  (1.3ms) commit transaction
791
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
792
+  (0.1ms) begin transaction
793
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
794
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
795
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:13:33 UTC +00:00]]
796
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 65], ["hashtaggable_id", 58], ["hashtaggable_type", "Post"]]
797
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 66], ["hashtaggable_id", 58], ["hashtaggable_type", "Post"]]
798
+  (0.7ms) commit transaction
799
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
800
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 58], ["hashtaggable_type", "Post"]]
801
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
802
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtaggings"
803
+ SQL (0.8ms) DELETE FROM "posts"
804
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
805
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
806
+  (0.1ms) begin transaction
807
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
808
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
809
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
810
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 68], ["hashtaggable_id", 59], ["hashtaggable_type", "Post"]]
811
+  (0.8ms) commit transaction
812
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
813
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 68]]
814
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 59]]
815
+  (0.1ms) begin transaction
816
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
817
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
818
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success. What are we waiting for?"], ["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
819
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 69], ["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
820
+  (0.7ms) commit transaction
821
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
822
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
823
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
824
+  (0.1ms) begin transaction
825
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
826
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
827
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 69], ["hashtaggable_id", 61], ["hashtaggable_type", "Post"]]
828
+  (0.7ms) commit transaction
829
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
830
+  (0.0ms) begin transaction
831
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
832
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
833
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
834
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 61], ["hashtaggable_type", "Post"]]
835
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 70], ["hashtaggable_id", 61], ["hashtaggable_type", "Post"]]
836
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 61 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
837
+  (0.7ms) commit transaction
838
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 61], ["hashtaggable_type", "Post"]]
839
+  (0.1ms) begin transaction
840
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
841
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["name", "vitae"], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
842
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
843
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["name", "blandit"], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
844
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:14:36 UTC +00:00]]
845
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 71], ["hashtaggable_id", 62], ["hashtaggable_type", "Post"]]
846
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 72], ["hashtaggable_id", 62], ["hashtaggable_type", "Post"]]
847
+  (0.8ms) commit transaction
848
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
849
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 62], ["hashtaggable_type", "Post"]]
850
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
851
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtaggings"
852
+ SQL (0.7ms) DELETE FROM "posts"
853
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
854
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
855
+  (0.1ms) begin transaction
856
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
857
+ SQL (2.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
858
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
859
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 74], ["hashtaggable_id", 63], ["hashtaggable_type", "Post"]]
860
+  (0.8ms) commit transaction
861
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
862
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 74]]
863
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 63]]
864
+  (0.1ms) begin transaction
865
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
866
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
867
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
868
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 75], ["hashtaggable_id", 64], ["hashtaggable_type", "Post"]]
869
+  (0.7ms) commit transaction
870
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
871
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 64], ["hashtaggable_type", "Post"]]
872
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 64], ["hashtaggable_type", "Post"]]
873
+  (0.1ms) begin transaction
874
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
875
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
876
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
877
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 76], ["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
878
+  (0.7ms) commit transaction
879
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
880
+  (0.1ms) begin transaction
881
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
882
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
883
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
884
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
885
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 77], ["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
886
+ SQL (0.4ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 65 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
887
+  (0.8ms) commit transaction
888
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
889
+  (0.1ms) begin transaction
890
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'vitae' LIMIT 1
891
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["name", "vitae"], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
892
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'blandit' LIMIT 1
893
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["name", "blandit"], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
894
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Nulla #vitae elit libero. Curabitur #blandit tempus porttitor."], ["created_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:15:11 UTC +00:00]]
895
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 78], ["hashtaggable_id", 66], ["hashtaggable_type", "Post"]]
896
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 79], ["hashtaggable_id", 66], ["hashtaggable_type", "Post"]]
897
+  (1.0ms) commit transaction
898
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
899
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 66], ["hashtaggable_type", "Post"]]
900
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
901
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
902
+ SQL (0.8ms) DELETE FROM "posts"
903
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
904
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
905
+  (0.1ms) begin transaction
906
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
907
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
908
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
909
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 81], ["hashtaggable_id", 67], ["hashtaggable_type", "Post"]]
910
+  (0.7ms) commit transaction
911
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
912
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 81]]
913
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 67]]
914
+  (0.1ms) begin transaction
915
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
916
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
917
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
918
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 82], ["hashtaggable_id", 68], ["hashtaggable_type", "Post"]]
919
+  (0.7ms) commit transaction
920
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
921
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 68], ["hashtaggable_type", "Post"]]
922
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 68], ["hashtaggable_type", "Post"]]
923
+  (0.1ms) begin transaction
924
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
925
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
926
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
927
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 83], ["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
928
+  (0.8ms) commit transaction
929
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
930
+  (0.0ms) begin transaction
931
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
932
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
933
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
934
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
935
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 84], ["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
936
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 69 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
937
+  (0.7ms) commit transaction
938
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
939
+  (0.1ms) begin transaction
940
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
941
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
942
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
943
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
944
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
945
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
946
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 03:17:39 UTC +00:00]]
947
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 85], ["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
948
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 86], ["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
949
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 87], ["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
950
+  (0.7ms) commit transaction
951
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
952
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
953
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
954
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
955
+ SQL (0.8ms) DELETE FROM "posts"
956
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
957
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
958
+  (0.1ms) begin transaction
959
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
960
+ SQL (3.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
961
+ SQL (0.8ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
962
+ SQL (0.8ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 89], ["hashtaggable_id", 71], ["hashtaggable_type", "Post"]]
963
+  (1.2ms) commit transaction
964
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
965
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 89]]
966
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 71]]
967
+  (0.1ms) begin transaction
968
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
969
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
970
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
971
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 90], ["hashtaggable_id", 72], ["hashtaggable_type", "Post"]]
972
+  (0.9ms) commit transaction
973
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
974
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 72], ["hashtaggable_type", "Post"]]
975
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 72], ["hashtaggable_type", "Post"]]
976
+  (0.1ms) begin transaction
977
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
978
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
979
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
980
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 91], ["hashtaggable_id", 73], ["hashtaggable_type", "Post"]]
981
+  (0.9ms) commit transaction
982
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
983
+  (0.1ms) begin transaction
984
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
985
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
986
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
987
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 73], ["hashtaggable_type", "Post"]]
988
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 92], ["hashtaggable_id", 73], ["hashtaggable_type", "Post"]]
989
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 73 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
990
+  (0.7ms) commit transaction
991
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 73], ["hashtaggable_type", "Post"]]
992
+  (0.1ms) begin transaction
993
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
994
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
995
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
996
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
997
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
998
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
999
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:34:48 UTC +00:00]]
1000
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 93], ["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
1001
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 94], ["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
1002
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 95], ["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
1003
+  (0.8ms) commit transaction
1004
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1005
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
1006
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
1007
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
1008
+ SQL (0.7ms) DELETE FROM "posts"
1009
+  (2.2ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1010
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1011
+  (0.1ms) begin transaction
1012
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1013
+ SQL (2.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1014
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1015
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 97], ["hashtaggable_id", 75], ["hashtaggable_type", "Post"]]
1016
+  (1.2ms) commit transaction
1017
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1018
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 97]]
1019
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 75]]
1020
+  (0.0ms) begin transaction
1021
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1022
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1023
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1024
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 98], ["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
1025
+  (1.0ms) commit transaction
1026
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1027
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
1028
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
1029
+  (0.1ms) begin transaction
1030
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1031
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1032
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1033
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 99], ["hashtaggable_id", 77], ["hashtaggable_type", "Post"]]
1034
+  (0.9ms) commit transaction
1035
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1036
+  (0.0ms) begin transaction
1037
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1038
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1039
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1040
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 77], ["hashtaggable_type", "Post"]]
1041
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 100], ["hashtaggable_id", 77], ["hashtaggable_type", "Post"]]
1042
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 77 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1043
+  (1.3ms) commit transaction
1044
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 77], ["hashtaggable_type", "Post"]]
1045
+  (0.1ms) begin transaction
1046
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1047
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1048
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1049
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1050
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1051
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:35:40 UTC +00:00]]
1052
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:35:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:35:41 UTC +00:00]]
1053
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 101], ["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
1054
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 102], ["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
1055
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 103], ["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
1056
+  (1.2ms) commit transaction
1057
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1058
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
1059
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
1060
+ SQL (1.4ms) DELETE FROM "simple_hashtag_hashtaggings"
1061
+ SQL (1.3ms) DELETE FROM "posts"
1062
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1063
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1064
+  (0.1ms) begin transaction
1065
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1066
+ SQL (3.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1067
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1068
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 105], ["hashtaggable_id", 79], ["hashtaggable_type", "Post"]]
1069
+  (0.8ms) commit transaction
1070
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1071
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 105]]
1072
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 79]]
1073
+  (0.1ms) begin transaction
1074
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1075
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1076
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1077
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 106], ["hashtaggable_id", 80], ["hashtaggable_type", "Post"]]
1078
+  (0.8ms) commit transaction
1079
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1080
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 80], ["hashtaggable_type", "Post"]]
1081
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 80], ["hashtaggable_type", "Post"]]
1082
+  (0.1ms) begin transaction
1083
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1084
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1085
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1086
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 107], ["hashtaggable_id", 81], ["hashtaggable_type", "Post"]]
1087
+  (0.8ms) commit transaction
1088
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1089
+  (0.1ms) begin transaction
1090
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1091
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1092
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1093
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 81], ["hashtaggable_type", "Post"]]
1094
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 108], ["hashtaggable_id", 81], ["hashtaggable_type", "Post"]]
1095
+ SQL (0.4ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 81 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1096
+  (1.0ms) commit transaction
1097
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 81], ["hashtaggable_type", "Post"]]
1098
+  (0.1ms) begin transaction
1099
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1100
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1101
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1102
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1103
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1104
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1105
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:27 UTC +00:00]]
1106
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 109], ["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
1107
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 110], ["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
1108
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 111], ["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
1109
+  (0.9ms) commit transaction
1110
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1111
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
1112
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
1113
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
1114
+ SQL (0.9ms) DELETE FROM "posts"
1115
+  (1.5ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1116
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1117
+  (0.1ms) begin transaction
1118
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1119
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1120
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1121
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 113], ["hashtaggable_id", 83], ["hashtaggable_type", "Post"]]
1122
+  (0.8ms) commit transaction
1123
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1124
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 113]]
1125
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 83]]
1126
+  (0.0ms) begin transaction
1127
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1128
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1129
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1130
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 114], ["hashtaggable_id", 84], ["hashtaggable_type", "Post"]]
1131
+  (0.8ms) commit transaction
1132
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1133
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 84], ["hashtaggable_type", "Post"]]
1134
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 84], ["hashtaggable_type", "Post"]]
1135
+  (0.0ms) begin transaction
1136
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1137
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1138
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1139
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 115], ["hashtaggable_id", 85], ["hashtaggable_type", "Post"]]
1140
+  (0.8ms) commit transaction
1141
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1142
+  (0.1ms) begin transaction
1143
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1144
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1145
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1146
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 85], ["hashtaggable_type", "Post"]]
1147
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 116], ["hashtaggable_id", 85], ["hashtaggable_type", "Post"]]
1148
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 85 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1149
+  (0.8ms) commit transaction
1150
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 85], ["hashtaggable_type", "Post"]]
1151
+  (0.2ms) begin transaction
1152
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1153
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1154
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1155
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1156
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1157
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1158
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:36:40 UTC +00:00]]
1159
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 117], ["hashtaggable_id", 86], ["hashtaggable_type", "Post"]]
1160
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 118], ["hashtaggable_id", 86], ["hashtaggable_type", "Post"]]
1161
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 119], ["hashtaggable_id", 86], ["hashtaggable_type", "Post"]]
1162
+  (0.8ms) commit transaction
1163
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1164
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 86], ["hashtaggable_type", "Post"]]
1165
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtags"
1166
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
1167
+ SQL (0.7ms) DELETE FROM "posts"
1168
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1169
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1170
+  (0.1ms) begin transaction
1171
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1172
+ SQL (1.8ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1173
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1174
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 121], ["hashtaggable_id", 87], ["hashtaggable_type", "Post"]]
1175
+  (1.2ms) commit transaction
1176
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1177
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 121]]
1178
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 87]]
1179
+  (0.0ms) begin transaction
1180
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1181
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1182
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1183
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 122], ["hashtaggable_id", 88], ["hashtaggable_type", "Post"]]
1184
+  (1.0ms) commit transaction
1185
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1186
+  (0.0ms) begin transaction
1187
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1188
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1189
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 88], ["hashtaggable_type", "Post"]]
1190
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 122 [["hashtaggable_id", 88], ["hashtaggable_type", "Post"]]
1191
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 123], ["hashtaggable_id", 88], ["hashtaggable_type", "Post"]]
1192
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 88 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1193
+  (1.2ms) commit transaction
1194
+  (0.1ms) begin transaction
1195
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1196
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1197
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1198
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 124], ["hashtaggable_id", 89], ["hashtaggable_type", "Post"]]
1199
+  (1.1ms) commit transaction
1200
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1201
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 89], ["hashtaggable_type", "Post"]]
1202
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 89], ["hashtaggable_type", "Post"]]
1203
+  (0.1ms) begin transaction
1204
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1205
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1206
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 122], ["hashtaggable_id", 90], ["hashtaggable_type", "Post"]]
1207
+  (0.9ms) commit transaction
1208
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1209
+  (0.0ms) begin transaction
1210
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1211
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1212
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 90], ["hashtaggable_type", "Post"]]
1213
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 123], ["hashtaggable_id", 90], ["hashtaggable_type", "Post"]]
1214
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 90 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1215
+  (1.2ms) commit transaction
1216
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 90], ["hashtaggable_type", "Post"]]
1217
+  (0.1ms) begin transaction
1218
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1219
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1220
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1221
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1222
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1223
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1224
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:24 UTC +00:00]]
1225
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 125], ["hashtaggable_id", 91], ["hashtaggable_type", "Post"]]
1226
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 126], ["hashtaggable_id", 91], ["hashtaggable_type", "Post"]]
1227
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 127], ["hashtaggable_id", 91], ["hashtaggable_type", "Post"]]
1228
+  (1.2ms) commit transaction
1229
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1230
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 91], ["hashtaggable_type", "Post"]]
1231
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
1232
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtaggings"
1233
+ SQL (1.4ms) DELETE FROM "posts"
1234
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1235
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1236
+  (0.1ms) begin transaction
1237
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1238
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1239
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1240
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 129], ["hashtaggable_id", 92], ["hashtaggable_type", "Post"]]
1241
+  (1.2ms) commit transaction
1242
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1243
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 129]]
1244
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 92]]
1245
+  (0.0ms) begin transaction
1246
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1247
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1248
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1249
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 130], ["hashtaggable_id", 93], ["hashtaggable_type", "Post"]]
1250
+  (1.0ms) commit transaction
1251
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1252
+  (0.1ms) begin transaction
1253
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1254
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1255
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 93], ["hashtaggable_type", "Post"]]
1256
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 130 [["hashtaggable_id", 93], ["hashtaggable_type", "Post"]]
1257
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 131], ["hashtaggable_id", 93], ["hashtaggable_type", "Post"]]
1258
+ SQL (0.4ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 93 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1259
+  (0.9ms) commit transaction
1260
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
1261
+  (0.0ms) begin transaction
1262
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1263
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1264
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1265
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 132], ["hashtaggable_id", 94], ["hashtaggable_type", "Post"]]
1266
+  (1.2ms) commit transaction
1267
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1268
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 94], ["hashtaggable_type", "Post"]]
1269
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 94], ["hashtaggable_type", "Post"]]
1270
+  (0.1ms) begin transaction
1271
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1272
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1273
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 130], ["hashtaggable_id", 95], ["hashtaggable_type", "Post"]]
1274
+  (0.8ms) commit transaction
1275
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1276
+  (0.1ms) begin transaction
1277
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1278
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1279
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 95], ["hashtaggable_type", "Post"]]
1280
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 131], ["hashtaggable_id", 95], ["hashtaggable_type", "Post"]]
1281
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 95 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1282
+  (1.1ms) commit transaction
1283
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 95], ["hashtaggable_type", "Post"]]
1284
+  (0.1ms) begin transaction
1285
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1286
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1287
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1288
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1289
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1290
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1291
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:40:41 UTC +00:00]]
1292
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 133], ["hashtaggable_id", 96], ["hashtaggable_type", "Post"]]
1293
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 134], ["hashtaggable_id", 96], ["hashtaggable_type", "Post"]]
1294
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 135], ["hashtaggable_id", 96], ["hashtaggable_type", "Post"]]
1295
+  (0.8ms) commit transaction
1296
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1297
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 96], ["hashtaggable_type", "Post"]]
1298
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
1299
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
1300
+ SQL (0.7ms) DELETE FROM "posts"
1301
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1302
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1303
+  (0.1ms) begin transaction
1304
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1305
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1306
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1307
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 137], ["hashtaggable_id", 97], ["hashtaggable_type", "Post"]]
1308
+  (1.2ms) commit transaction
1309
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1310
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 137]]
1311
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 97]]
1312
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
1313
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtaggings"
1314
+ SQL (1.0ms) DELETE FROM "posts"
1315
+  (0.1ms) begin transaction
1316
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1317
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1318
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1319
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 138], ["hashtaggable_id", 98], ["hashtaggable_type", "Post"]]
1320
+  (0.8ms) commit transaction
1321
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1322
+  (0.0ms) begin transaction
1323
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1324
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1325
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 98], ["hashtaggable_type", "Post"]]
1326
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 138 [["hashtaggable_id", 98], ["hashtaggable_type", "Post"]]
1327
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 139], ["hashtaggable_id", 98], ["hashtaggable_type", "Post"]]
1328
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 98 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1329
+  (0.7ms) commit transaction
1330
+  (0.1ms) begin transaction
1331
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1332
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1333
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1334
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 140], ["hashtaggable_id", 99], ["hashtaggable_type", "Post"]]
1335
+  (0.7ms) commit transaction
1336
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1337
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 99], ["hashtaggable_type", "Post"]]
1338
+ SimpleHashtag::Hashtag Load (0.5ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 99], ["hashtaggable_type", "Post"]]
1339
+  (0.1ms) begin transaction
1340
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1341
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1342
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 138], ["hashtaggable_id", 100], ["hashtaggable_type", "Post"]]
1343
+  (0.8ms) commit transaction
1344
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1345
+  (0.1ms) begin transaction
1346
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1347
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1348
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 100], ["hashtaggable_type", "Post"]]
1349
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 139], ["hashtaggable_id", 100], ["hashtaggable_type", "Post"]]
1350
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 100 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1351
+  (0.8ms) commit transaction
1352
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 100], ["hashtaggable_type", "Post"]]
1353
+  (0.1ms) begin transaction
1354
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1355
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1356
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1357
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1358
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1359
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1360
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:03 UTC +00:00]]
1361
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 141], ["hashtaggable_id", 101], ["hashtaggable_type", "Post"]]
1362
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 142], ["hashtaggable_id", 101], ["hashtaggable_type", "Post"]]
1363
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 143], ["hashtaggable_id", 101], ["hashtaggable_type", "Post"]]
1364
+  (0.9ms) commit transaction
1365
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1366
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 101], ["hashtaggable_type", "Post"]]
1367
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
1368
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
1369
+ SQL (0.7ms) DELETE FROM "posts"
1370
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1371
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1372
+  (0.1ms) begin transaction
1373
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1374
+ SQL (2.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1375
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1376
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 145], ["hashtaggable_id", 102], ["hashtaggable_type", "Post"]]
1377
+  (0.7ms) commit transaction
1378
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1379
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 145]]
1380
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 102]]
1381
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
1382
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
1383
+ SQL (0.7ms) DELETE FROM "posts"
1384
+  (0.1ms) begin transaction
1385
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1386
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1387
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1388
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 146], ["hashtaggable_id", 103], ["hashtaggable_type", "Post"]]
1389
+  (1.0ms) commit transaction
1390
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1391
+  (0.1ms) begin transaction
1392
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1393
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1394
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 103], ["hashtaggable_type", "Post"]]
1395
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 146 [["hashtaggable_id", 103], ["hashtaggable_type", "Post"]]
1396
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 147], ["hashtaggable_id", 103], ["hashtaggable_type", "Post"]]
1397
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 103 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1398
+  (1.1ms) commit transaction
1399
+  (0.1ms) begin transaction
1400
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1401
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1402
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1403
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 148], ["hashtaggable_id", 104], ["hashtaggable_type", "Post"]]
1404
+  (1.0ms) commit transaction
1405
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1406
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 104], ["hashtaggable_type", "Post"]]
1407
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 104], ["hashtaggable_type", "Post"]]
1408
+  (0.1ms) begin transaction
1409
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1410
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1411
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 146], ["hashtaggable_id", 105], ["hashtaggable_type", "Post"]]
1412
+  (1.0ms) commit transaction
1413
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1414
+  (0.1ms) begin transaction
1415
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1416
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1417
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 105], ["hashtaggable_type", "Post"]]
1418
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 147], ["hashtaggable_id", 105], ["hashtaggable_type", "Post"]]
1419
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 105 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1420
+  (0.9ms) commit transaction
1421
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 105], ["hashtaggable_type", "Post"]]
1422
+  (0.1ms) begin transaction
1423
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1424
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1425
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1426
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1427
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1428
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1429
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:13 UTC +00:00]]
1430
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 149], ["hashtaggable_id", 106], ["hashtaggable_type", "Post"]]
1431
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 150], ["hashtaggable_id", 106], ["hashtaggable_type", "Post"]]
1432
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 151], ["hashtaggable_id", 106], ["hashtaggable_type", "Post"]]
1433
+  (1.5ms) commit transaction
1434
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1435
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 106], ["hashtaggable_type", "Post"]]
1436
+ SQL (2.1ms) DELETE FROM "simple_hashtag_hashtags"
1437
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtaggings"
1438
+ SQL (0.8ms) DELETE FROM "posts"
1439
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1440
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1441
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1442
+  (0.1ms) begin transaction
1443
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1444
+ SQL (2.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1445
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1446
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 153], ["hashtaggable_id", 107], ["hashtaggable_type", "Post"]]
1447
+  (0.7ms) commit transaction
1448
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1449
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 153]]
1450
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 107]]
1451
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
1452
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
1453
+ SQL (0.7ms) DELETE FROM "posts"
1454
+  (0.1ms) begin transaction
1455
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1456
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1457
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1458
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 154], ["hashtaggable_id", 108], ["hashtaggable_type", "Post"]]
1459
+  (0.8ms) commit transaction
1460
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1461
+  (0.0ms) begin transaction
1462
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1463
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1464
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 108], ["hashtaggable_type", "Post"]]
1465
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 154 [["hashtaggable_id", 108], ["hashtaggable_type", "Post"]]
1466
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 155], ["hashtaggable_id", 108], ["hashtaggable_type", "Post"]]
1467
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 108 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1468
+  (0.7ms) commit transaction
1469
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1470
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 154]]
1471
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 155]]
1472
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 108]]
1473
+  (0.1ms) begin transaction
1474
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1475
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1476
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1477
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 156], ["hashtaggable_id", 109], ["hashtaggable_type", "Post"]]
1478
+  (0.9ms) commit transaction
1479
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1480
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 109], ["hashtaggable_type", "Post"]]
1481
+ SimpleHashtag::Hashtag Load (0.6ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 109], ["hashtaggable_type", "Post"]]
1482
+  (0.1ms) begin transaction
1483
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1484
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1485
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 154], ["hashtaggable_id", 110], ["hashtaggable_type", "Post"]]
1486
+  (0.9ms) commit transaction
1487
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1488
+  (0.1ms) begin transaction
1489
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1490
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1491
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 110], ["hashtaggable_type", "Post"]]
1492
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 155], ["hashtaggable_id", 110], ["hashtaggable_type", "Post"]]
1493
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 110 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1494
+  (0.8ms) commit transaction
1495
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 110], ["hashtaggable_type", "Post"]]
1496
+  (0.1ms) begin transaction
1497
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1498
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1499
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1500
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1501
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1502
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1503
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:48:24 UTC +00:00]]
1504
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 157], ["hashtaggable_id", 111], ["hashtaggable_type", "Post"]]
1505
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 158], ["hashtaggable_id", 111], ["hashtaggable_type", "Post"]]
1506
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 159], ["hashtaggable_id", 111], ["hashtaggable_type", "Post"]]
1507
+  (1.4ms) commit transaction
1508
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1509
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 111], ["hashtaggable_type", "Post"]]
1510
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
1511
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtaggings"
1512
+ SQL (1.3ms) DELETE FROM "posts"
1513
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1514
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1515
+  (0.1ms) begin transaction
1516
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1517
+ SQL (2.6ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1518
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1519
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 161], ["hashtaggable_id", 112], ["hashtaggable_type", "Post"]]
1520
+  (1.3ms) commit transaction
1521
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1522
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 161]]
1523
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 112]]
1524
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtags"
1525
+ SQL (1.3ms) DELETE FROM "simple_hashtag_hashtaggings"
1526
+ SQL (1.2ms) DELETE FROM "posts"
1527
+  (0.2ms) begin transaction
1528
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1529
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1530
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1531
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 162], ["hashtaggable_id", 113], ["hashtaggable_type", "Post"]]
1532
+  (1.2ms) commit transaction
1533
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1534
+  (0.0ms) begin transaction
1535
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1536
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1537
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 113], ["hashtaggable_type", "Post"]]
1538
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 162 [["hashtaggable_id", 113], ["hashtaggable_type", "Post"]]
1539
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 163], ["hashtaggable_id", 113], ["hashtaggable_type", "Post"]]
1540
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 113 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1541
+  (0.9ms) commit transaction
1542
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1543
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 162]]
1544
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 163]]
1545
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 113]]
1546
+  (0.0ms) begin transaction
1547
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1548
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1549
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1550
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 164], ["hashtaggable_id", 114], ["hashtaggable_type", "Post"]]
1551
+  (1.1ms) commit transaction
1552
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1553
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 114], ["hashtaggable_type", "Post"]]
1554
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 114], ["hashtaggable_type", "Post"]]
1555
+  (0.1ms) begin transaction
1556
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1557
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1558
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 162], ["hashtaggable_id", 115], ["hashtaggable_type", "Post"]]
1559
+  (1.1ms) commit transaction
1560
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1561
+  (0.1ms) begin transaction
1562
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1563
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1564
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 115], ["hashtaggable_type", "Post"]]
1565
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 163], ["hashtaggable_id", 115], ["hashtaggable_type", "Post"]]
1566
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 115 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1567
+  (0.8ms) commit transaction
1568
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 115], ["hashtaggable_type", "Post"]]
1569
+  (0.1ms) begin transaction
1570
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1571
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1572
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1573
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1574
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1575
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1576
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:49:03 UTC +00:00]]
1577
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 165], ["hashtaggable_id", 116], ["hashtaggable_type", "Post"]]
1578
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 166], ["hashtaggable_id", 116], ["hashtaggable_type", "Post"]]
1579
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 167], ["hashtaggable_id", 116], ["hashtaggable_type", "Post"]]
1580
+  (0.7ms) commit transaction
1581
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1582
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 116], ["hashtaggable_type", "Post"]]
1583
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
1584
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtaggings"
1585
+ SQL (1.4ms) DELETE FROM "posts"
1586
+  (1.5ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1587
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1588
+  (0.1ms) begin transaction
1589
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1590
+ SQL (2.8ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1591
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1592
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 169], ["hashtaggable_id", 117], ["hashtaggable_type", "Post"]]
1593
+  (0.7ms) commit transaction
1594
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1595
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 169]]
1596
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 117]]
1597
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
1598
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
1599
+ SQL (0.6ms) DELETE FROM "posts"
1600
+  (0.0ms) begin transaction
1601
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1602
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1603
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1604
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 170], ["hashtaggable_id", 118], ["hashtaggable_type", "Post"]]
1605
+  (0.7ms) commit transaction
1606
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1607
+  (0.1ms) begin transaction
1608
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1609
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1610
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 118], ["hashtaggable_type", "Post"]]
1611
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 170 [["hashtaggable_id", 118], ["hashtaggable_type", "Post"]]
1612
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 171], ["hashtaggable_id", 118], ["hashtaggable_type", "Post"]]
1613
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 118 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1614
+  (0.7ms) commit transaction
1615
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1616
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 170]]
1617
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 171]]
1618
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 118]]
1619
+  (0.1ms) begin transaction
1620
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 170]]
1621
+  (0.7ms) commit transaction
1622
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
1623
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1624
+  (0.1ms) begin transaction
1625
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1626
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1627
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1628
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 172], ["hashtaggable_id", 119], ["hashtaggable_type", "Post"]]
1629
+  (1.1ms) commit transaction
1630
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1631
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 119], ["hashtaggable_type", "Post"]]
1632
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 119], ["hashtaggable_type", "Post"]]
1633
+  (0.1ms) begin transaction
1634
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1635
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1636
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1637
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 173], ["hashtaggable_id", 120], ["hashtaggable_type", "Post"]]
1638
+  (0.7ms) commit transaction
1639
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1640
+  (0.0ms) begin transaction
1641
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1642
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1643
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 120], ["hashtaggable_type", "Post"]]
1644
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 171], ["hashtaggable_id", 120], ["hashtaggable_type", "Post"]]
1645
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 120 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1646
+  (0.7ms) commit transaction
1647
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 120], ["hashtaggable_type", "Post"]]
1648
+  (0.1ms) begin transaction
1649
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1650
+ SQL (0.6ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1651
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1652
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1653
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1654
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1655
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:29 UTC +00:00]]
1656
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 174], ["hashtaggable_id", 121], ["hashtaggable_type", "Post"]]
1657
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 175], ["hashtaggable_id", 121], ["hashtaggable_type", "Post"]]
1658
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 176], ["hashtaggable_id", 121], ["hashtaggable_type", "Post"]]
1659
+  (0.8ms) commit transaction
1660
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1661
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 121], ["hashtaggable_type", "Post"]]
1662
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtags"
1663
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
1664
+ SQL (1.0ms) DELETE FROM "posts"
1665
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1666
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1667
+  (0.1ms) begin transaction
1668
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1669
+ SQL (2.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1670
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1671
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 178], ["hashtaggable_id", 122], ["hashtaggable_type", "Post"]]
1672
+  (1.2ms) commit transaction
1673
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1674
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 178]]
1675
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 122]]
1676
+  (0.0ms) begin transaction
1677
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1678
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1679
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1680
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 179], ["hashtaggable_id", 123], ["hashtaggable_type", "Post"]]
1681
+  (1.7ms) commit transaction
1682
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1683
+  (0.0ms) begin transaction
1684
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1685
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1686
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 123], ["hashtaggable_type", "Post"]]
1687
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 179 [["hashtaggable_id", 123], ["hashtaggable_type", "Post"]]
1688
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 180], ["hashtaggable_id", 123], ["hashtaggable_type", "Post"]]
1689
+ SQL (0.5ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 123 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1690
+  (1.0ms) commit transaction
1691
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1692
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 177]]
1693
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 178]]
1694
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 122]]
1695
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 179]]
1696
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 180]]
1697
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 123]]
1698
+  (0.0ms) begin transaction
1699
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 177]]
1700
+  (1.0ms) commit transaction
1701
+  (0.1ms) begin transaction
1702
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 179]]
1703
+  (1.1ms) commit transaction
1704
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
1705
+  (0.1ms) begin transaction
1706
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1707
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1708
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1709
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 181], ["hashtaggable_id", 124], ["hashtaggable_type", "Post"]]
1710
+  (0.8ms) commit transaction
1711
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1712
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 124], ["hashtaggable_type", "Post"]]
1713
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 124], ["hashtaggable_type", "Post"]]
1714
+  (0.1ms) begin transaction
1715
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1716
+ SQL (0.6ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1717
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1718
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 182], ["hashtaggable_id", 125], ["hashtaggable_type", "Post"]]
1719
+  (0.8ms) commit transaction
1720
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1721
+  (0.1ms) begin transaction
1722
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1723
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1724
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 125], ["hashtaggable_type", "Post"]]
1725
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 180], ["hashtaggable_id", 125], ["hashtaggable_type", "Post"]]
1726
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 125 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1727
+  (0.8ms) commit transaction
1728
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 125], ["hashtaggable_type", "Post"]]
1729
+  (0.1ms) begin transaction
1730
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1731
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1732
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1733
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1734
+ SimpleHashtag::Hashtag Load (0.0ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1735
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1736
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:50:44 UTC +00:00]]
1737
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 183], ["hashtaggable_id", 126], ["hashtaggable_type", "Post"]]
1738
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 184], ["hashtaggable_id", 126], ["hashtaggable_type", "Post"]]
1739
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 185], ["hashtaggable_id", 126], ["hashtaggable_type", "Post"]]
1740
+  (0.9ms) commit transaction
1741
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1742
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 126], ["hashtaggable_type", "Post"]]
1743
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
1744
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtaggings"
1745
+ SQL (1.4ms) DELETE FROM "posts"
1746
+  (2.2ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1747
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1748
+  (0.1ms) begin transaction
1749
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1750
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1751
+ SQL (0.8ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1752
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 187], ["hashtaggable_id", 127], ["hashtaggable_type", "Post"]]
1753
+  (0.9ms) commit transaction
1754
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1755
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 187]]
1756
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 127]]
1757
+  (0.1ms) begin transaction
1758
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1759
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1760
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1761
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 188], ["hashtaggable_id", 128], ["hashtaggable_type", "Post"]]
1762
+  (0.7ms) commit transaction
1763
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1764
+  (0.0ms) begin transaction
1765
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1766
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1767
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 128], ["hashtaggable_type", "Post"]]
1768
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 188 [["hashtaggable_id", 128], ["hashtaggable_type", "Post"]]
1769
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 189], ["hashtaggable_id", 128], ["hashtaggable_type", "Post"]]
1770
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 128 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1771
+  (1.0ms) commit transaction
1772
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1773
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 186]]
1774
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 187]]
1775
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 127]]
1776
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 188]]
1777
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 189]]
1778
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 128]]
1779
+  (0.1ms) begin transaction
1780
+ SQL (0.4ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 186]]
1781
+  (0.7ms) commit transaction
1782
+  (0.0ms) begin transaction
1783
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 188]]
1784
+  (0.6ms) commit transaction
1785
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
1786
+  (0.1ms) begin transaction
1787
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1788
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1789
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1790
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 190], ["hashtaggable_id", 129], ["hashtaggable_type", "Post"]]
1791
+  (0.7ms) commit transaction
1792
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1793
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 129], ["hashtaggable_type", "Post"]]
1794
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 129], ["hashtaggable_type", "Post"]]
1795
+  (0.1ms) begin transaction
1796
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1797
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1798
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1799
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 191], ["hashtaggable_id", 130], ["hashtaggable_type", "Post"]]
1800
+  (0.8ms) commit transaction
1801
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1802
+  (0.1ms) begin transaction
1803
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1804
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1805
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 130], ["hashtaggable_type", "Post"]]
1806
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 189], ["hashtaggable_id", 130], ["hashtaggable_type", "Post"]]
1807
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 130 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1808
+  (0.8ms) commit transaction
1809
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 130], ["hashtaggable_type", "Post"]]
1810
+  (0.1ms) begin transaction
1811
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1812
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1813
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1814
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1815
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1816
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1817
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:51:33 UTC +00:00]]
1818
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 192], ["hashtaggable_id", 131], ["hashtaggable_type", "Post"]]
1819
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 193], ["hashtaggable_id", 131], ["hashtaggable_type", "Post"]]
1820
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 194], ["hashtaggable_id", 131], ["hashtaggable_type", "Post"]]
1821
+  (1.2ms) commit transaction
1822
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1823
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 131], ["hashtaggable_type", "Post"]]
1824
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
1825
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
1826
+ SQL (0.7ms) DELETE FROM "posts"
1827
+  (0.1ms) begin transaction
1828
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1829
+ SQL (1.8ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:59 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:51:59 UTC +00:00]]
1830
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:51:59 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:51:59 UTC +00:00]]
1831
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 195], ["hashtaggable_id", 132], ["hashtaggable_type", "Post"]]
1832
+  (1.1ms) commit transaction
1833
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1834
+  (0.1ms) begin transaction
1835
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1836
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:51:59 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:51:59 UTC +00:00]]
1837
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 132], ["hashtaggable_type", "Post"]]
1838
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 195 [["hashtaggable_id", 132], ["hashtaggable_type", "Post"]]
1839
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 196], ["hashtaggable_id", 132], ["hashtaggable_type", "Post"]]
1840
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 132 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:51:59 UTC +00:00]]
1841
+  (0.6ms) commit transaction
1842
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1843
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 195]]
1844
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 196]]
1845
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 132]]
1846
+  (0.1ms) begin transaction
1847
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 195]]
1848
+  (0.6ms) commit transaction
1849
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
1850
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1851
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
1852
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
1853
+ SQL (0.8ms) DELETE FROM "posts"
1854
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1855
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1856
+  (0.1ms) begin transaction
1857
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1858
+ SQL (1.7ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1859
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1860
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 2], ["hashtaggable_id", 1], ["hashtaggable_type", "Post"]]
1861
+  (1.2ms) commit transaction
1862
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1863
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 2]]
1864
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 1]]
1865
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtags"
1866
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtaggings"
1867
+ SQL (1.4ms) DELETE FROM "pictures"
1868
+ SQL (1.0ms) DELETE FROM "posts"
1869
+  (0.1ms) begin transaction
1870
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1871
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1872
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1873
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 3], ["hashtaggable_id", 2], ["hashtaggable_type", "Post"]]
1874
+  (1.1ms) commit transaction
1875
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1876
+  (0.1ms) begin transaction
1877
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1878
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1879
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 2], ["hashtaggable_type", "Post"]]
1880
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 3 [["hashtaggable_id", 2], ["hashtaggable_type", "Post"]]
1881
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 4], ["hashtaggable_id", 2], ["hashtaggable_type", "Post"]]
1882
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 2 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1883
+  (1.2ms) commit transaction
1884
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1885
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 3]]
1886
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 4]]
1887
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 2]]
1888
+  (0.0ms) begin transaction
1889
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 3]]
1890
+  (1.0ms) commit transaction
1891
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
1892
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1893
+  (0.1ms) begin transaction
1894
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1895
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1896
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1897
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 5], ["hashtaggable_id", 3], ["hashtaggable_type", "Post"]]
1898
+  (1.1ms) commit transaction
1899
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1900
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 3], ["hashtaggable_type", "Post"]]
1901
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 3], ["hashtaggable_type", "Post"]]
1902
+  (0.1ms) begin transaction
1903
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1904
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1905
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1906
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 6], ["hashtaggable_id", 4], ["hashtaggable_type", "Post"]]
1907
+  (1.0ms) commit transaction
1908
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1909
+  (0.1ms) begin transaction
1910
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1911
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1912
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 4], ["hashtaggable_type", "Post"]]
1913
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 4], ["hashtaggable_id", 4], ["hashtaggable_type", "Post"]]
1914
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 4 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1915
+  (0.7ms) commit transaction
1916
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 4], ["hashtaggable_type", "Post"]]
1917
+  (0.1ms) begin transaction
1918
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
1919
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1920
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
1921
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1922
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
1923
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1924
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 10:58:30 UTC +00:00]]
1925
+ SQL (0.7ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 7], ["hashtaggable_id", 5], ["hashtaggable_type", "Post"]]
1926
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 8], ["hashtaggable_id", 5], ["hashtaggable_type", "Post"]]
1927
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 9], ["hashtaggable_id", 5], ["hashtaggable_type", "Post"]]
1928
+  (0.9ms) commit transaction
1929
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1930
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 5], ["hashtaggable_type", "Post"]]
1931
+ SQL (1.4ms) DELETE FROM "simple_hashtag_hashtags"
1932
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtaggings"
1933
+ SQL (1.4ms) DELETE FROM "pictures"
1934
+ SQL (1.5ms) DELETE FROM "posts"
1935
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
1936
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1937
+  (0.1ms) begin transaction
1938
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
1939
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1940
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1941
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 11], ["hashtaggable_id", 6], ["hashtaggable_type", "Post"]]
1942
+  (0.7ms) commit transaction
1943
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1944
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 11]]
1945
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 6]]
1946
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtags"
1947
+ SQL (0.6ms) DELETE FROM "simple_hashtag_hashtaggings"
1948
+ SQL (0.8ms) DELETE FROM "pictures"
1949
+ SQL (0.7ms) DELETE FROM "posts"
1950
+  (0.1ms) begin transaction
1951
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1952
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1953
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1954
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 12], ["hashtaggable_id", 7], ["hashtaggable_type", "Post"]]
1955
+  (0.8ms) commit transaction
1956
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1957
+  (0.0ms) begin transaction
1958
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1959
+ SQL (1.6ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1960
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 7], ["hashtaggable_type", "Post"]]
1961
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 12 [["hashtaggable_id", 7], ["hashtaggable_type", "Post"]]
1962
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 13], ["hashtaggable_id", 7], ["hashtaggable_type", "Post"]]
1963
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 7 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1964
+  (0.7ms) commit transaction
1965
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
1966
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 12]]
1967
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 13]]
1968
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 7]]
1969
+  (0.0ms) begin transaction
1970
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 12]]
1971
+  (0.6ms) commit transaction
1972
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
1973
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
1974
+  (0.1ms) begin transaction
1975
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
1976
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1977
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1978
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 14], ["hashtaggable_id", 8], ["hashtaggable_type", "Post"]]
1979
+  (0.7ms) commit transaction
1980
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1981
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 8], ["hashtaggable_type", "Post"]]
1982
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 8], ["hashtaggable_type", "Post"]]
1983
+  (0.1ms) begin transaction
1984
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1985
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1986
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1987
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 15], ["hashtaggable_id", 9], ["hashtaggable_type", "Post"]]
1988
+  (0.7ms) commit transaction
1989
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
1990
+  (0.0ms) begin transaction
1991
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
1992
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
1993
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 9], ["hashtaggable_type", "Post"]]
1994
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 13], ["hashtaggable_id", 9], ["hashtaggable_type", "Post"]]
1995
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 9 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
1996
+  (0.7ms) commit transaction
1997
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 9], ["hashtaggable_type", "Post"]]
1998
+  (0.1ms) begin transaction
1999
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2000
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
2001
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2002
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
2003
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2004
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
2005
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:01:00 UTC +00:00]]
2006
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 16], ["hashtaggable_id", 10], ["hashtaggable_type", "Post"]]
2007
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 17], ["hashtaggable_id", 10], ["hashtaggable_type", "Post"]]
2008
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 18], ["hashtaggable_id", 10], ["hashtaggable_type", "Post"]]
2009
+  (0.7ms) commit transaction
2010
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2011
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 10], ["hashtaggable_type", "Post"]]
2012
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
2013
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
2014
+ SQL (0.7ms) DELETE FROM "pictures"
2015
+ SQL (0.7ms) DELETE FROM "posts"
2016
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2017
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2018
+  (0.1ms) begin transaction
2019
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2020
+ SQL (2.0ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2021
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2022
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 20], ["hashtaggable_id", 11], ["hashtaggable_type", "Post"]]
2023
+  (0.8ms) commit transaction
2024
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2025
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 20]]
2026
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 11]]
2027
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
2028
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtaggings"
2029
+ SQL (0.8ms) DELETE FROM "pictures"
2030
+ SQL (0.7ms) DELETE FROM "posts"
2031
+  (0.1ms) begin transaction
2032
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2033
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2034
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2035
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 21], ["hashtaggable_id", 12], ["hashtaggable_type", "Post"]]
2036
+  (0.7ms) commit transaction
2037
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2038
+  (0.1ms) begin transaction
2039
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2040
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2041
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 12], ["hashtaggable_type", "Post"]]
2042
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 21 [["hashtaggable_id", 12], ["hashtaggable_type", "Post"]]
2043
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 22], ["hashtaggable_id", 12], ["hashtaggable_type", "Post"]]
2044
+ SQL (0.4ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 12 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2045
+  (0.7ms) commit transaction
2046
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2047
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 21]]
2048
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 22]]
2049
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 12]]
2050
+  (0.1ms) begin transaction
2051
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 21]]
2052
+  (1.0ms) commit transaction
2053
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
2054
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2055
+  (0.1ms) begin transaction
2056
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2057
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2058
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2059
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 23], ["hashtaggable_id", 13], ["hashtaggable_type", "Post"]]
2060
+  (0.9ms) commit transaction
2061
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2062
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 13], ["hashtaggable_type", "Post"]]
2063
+ SimpleHashtag::Hashtag Load (0.4ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 13], ["hashtaggable_type", "Post"]]
2064
+  (0.1ms) begin transaction
2065
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2066
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2067
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2068
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 24], ["hashtaggable_id", 14], ["hashtaggable_type", "Post"]]
2069
+  (0.8ms) commit transaction
2070
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2071
+  (0.0ms) begin transaction
2072
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2073
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2074
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 14], ["hashtaggable_type", "Post"]]
2075
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 22], ["hashtaggable_id", 14], ["hashtaggable_type", "Post"]]
2076
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 14 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2077
+  (0.7ms) commit transaction
2078
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 14], ["hashtaggable_type", "Post"]]
2079
+  (0.1ms) begin transaction
2080
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2081
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2082
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2083
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2084
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2085
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2086
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2087
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 25], ["hashtaggable_id", 15], ["hashtaggable_type", "Post"]]
2088
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 26], ["hashtaggable_id", 15], ["hashtaggable_type", "Post"]]
2089
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 27], ["hashtaggable_id", 15], ["hashtaggable_type", "Post"]]
2090
+  (0.7ms) commit transaction
2091
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2092
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 15], ["hashtaggable_type", "Post"]]
2093
+  (0.1ms) begin transaction
2094
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2095
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2096
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2097
+ SQL (0.5ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:02:20 UTC +00:00]]
2098
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 25], ["hashtaggable_id", 1], ["hashtaggable_type", "Picture"]]
2099
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 26], ["hashtaggable_id", 1], ["hashtaggable_type", "Picture"]]
2100
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 27], ["hashtaggable_id", 1], ["hashtaggable_type", "Picture"]]
2101
+  (0.7ms) commit transaction
2102
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2103
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 1], ["hashtaggable_type", "Picture"]]
2104
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 1], ["hashtaggable_type", "Picture"]]
2105
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtags"
2106
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2107
+ SQL (0.7ms) DELETE FROM "pictures"
2108
+ SQL (1.3ms) DELETE FROM "posts"
2109
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2110
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2111
+  (0.1ms) begin transaction
2112
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2113
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2114
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2115
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 29], ["hashtaggable_id", 16], ["hashtaggable_type", "Post"]]
2116
+  (1.0ms) commit transaction
2117
+  (0.2ms) begin transaction
2118
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2119
+ SQL (0.6ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2120
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 29], ["hashtaggable_id", 2], ["hashtaggable_type", "Picture"]]
2121
+  (0.7ms) commit transaction
2122
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2123
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 29]]
2124
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 16]]
2125
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 2]]
2126
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
2127
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
2128
+ SQL (0.7ms) DELETE FROM "pictures"
2129
+ SQL (0.6ms) DELETE FROM "posts"
2130
+  (0.1ms) begin transaction
2131
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2132
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2133
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2134
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 30], ["hashtaggable_id", 17], ["hashtaggable_type", "Post"]]
2135
+  (0.8ms) commit transaction
2136
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2137
+  (0.0ms) begin transaction
2138
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2139
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2140
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 17], ["hashtaggable_type", "Post"]]
2141
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 30 [["hashtaggable_id", 17], ["hashtaggable_type", "Post"]]
2142
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 31], ["hashtaggable_id", 17], ["hashtaggable_type", "Post"]]
2143
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 17 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2144
+  (1.2ms) commit transaction
2145
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2146
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 30]]
2147
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 31]]
2148
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 17]]
2149
+  (0.0ms) begin transaction
2150
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 30]]
2151
+  (1.0ms) commit transaction
2152
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
2153
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2154
+  (0.1ms) begin transaction
2155
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2156
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2157
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2158
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 32], ["hashtaggable_id", 18], ["hashtaggable_type", "Post"]]
2159
+  (0.7ms) commit transaction
2160
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2161
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 18], ["hashtaggable_type", "Post"]]
2162
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 18], ["hashtaggable_type", "Post"]]
2163
+  (0.1ms) begin transaction
2164
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2165
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2166
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2167
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 33], ["hashtaggable_id", 19], ["hashtaggable_type", "Post"]]
2168
+  (1.1ms) commit transaction
2169
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2170
+  (0.0ms) begin transaction
2171
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2172
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2173
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 19], ["hashtaggable_type", "Post"]]
2174
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 31], ["hashtaggable_id", 19], ["hashtaggable_type", "Post"]]
2175
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 19 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2176
+  (1.2ms) commit transaction
2177
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 19], ["hashtaggable_type", "Post"]]
2178
+  (0.1ms) begin transaction
2179
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2180
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2181
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2182
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2183
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2184
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2185
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2186
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 34], ["hashtaggable_id", 20], ["hashtaggable_type", "Post"]]
2187
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 35], ["hashtaggable_id", 20], ["hashtaggable_type", "Post"]]
2188
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 36], ["hashtaggable_id", 20], ["hashtaggable_type", "Post"]]
2189
+  (0.9ms) commit transaction
2190
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2191
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 20], ["hashtaggable_type", "Post"]]
2192
+  (0.1ms) begin transaction
2193
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2194
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2195
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2196
+ SQL (0.3ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:05:49 UTC +00:00]]
2197
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 34], ["hashtaggable_id", 3], ["hashtaggable_type", "Picture"]]
2198
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 35], ["hashtaggable_id", 3], ["hashtaggable_type", "Picture"]]
2199
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 36], ["hashtaggable_id", 3], ["hashtaggable_type", "Picture"]]
2200
+  (0.8ms) commit transaction
2201
+ Picture Load (0.3ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2202
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 3], ["hashtaggable_type", "Picture"]]
2203
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 3], ["hashtaggable_type", "Picture"]]
2204
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
2205
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtaggings"
2206
+ SQL (1.0ms) DELETE FROM "pictures"
2207
+ SQL (1.2ms) DELETE FROM "posts"
2208
+  (1.8ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2209
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2210
+  (0.1ms) begin transaction
2211
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2212
+ SQL (3.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2213
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2214
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 38], ["hashtaggable_id", 21], ["hashtaggable_type", "Post"]]
2215
+  (0.8ms) commit transaction
2216
+  (0.1ms) begin transaction
2217
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2218
+ SQL (0.6ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2219
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 38], ["hashtaggable_id", 4], ["hashtaggable_type", "Picture"]]
2220
+  (1.3ms) commit transaction
2221
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2222
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 38]]
2223
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 21]]
2224
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 4]]
2225
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtags"
2226
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2227
+ SQL (0.8ms) DELETE FROM "pictures"
2228
+ SQL (0.6ms) DELETE FROM "posts"
2229
+  (0.1ms) begin transaction
2230
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2231
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2232
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2233
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 39], ["hashtaggable_id", 22], ["hashtaggable_type", "Post"]]
2234
+  (1.1ms) commit transaction
2235
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2236
+  (0.0ms) begin transaction
2237
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2238
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2239
+ SimpleHashtag::Hashtag Load (0.4ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 22], ["hashtaggable_type", "Post"]]
2240
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 39 [["hashtaggable_id", 22], ["hashtaggable_type", "Post"]]
2241
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 40], ["hashtaggable_id", 22], ["hashtaggable_type", "Post"]]
2242
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 22 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2243
+  (1.1ms) commit transaction
2244
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2245
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 39]]
2246
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 40]]
2247
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 22]]
2248
+  (0.1ms) begin transaction
2249
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 39]]
2250
+  (0.8ms) commit transaction
2251
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
2252
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2253
+  (0.1ms) begin transaction
2254
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2255
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2256
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2257
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 41], ["hashtaggable_id", 23], ["hashtaggable_type", "Post"]]
2258
+  (1.0ms) commit transaction
2259
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2260
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 23], ["hashtaggable_type", "Post"]]
2261
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 23], ["hashtaggable_type", "Post"]]
2262
+  (0.1ms) begin transaction
2263
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2264
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2265
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2266
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 42], ["hashtaggable_id", 24], ["hashtaggable_type", "Post"]]
2267
+  (1.0ms) commit transaction
2268
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2269
+  (0.0ms) begin transaction
2270
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2271
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2272
+ SimpleHashtag::Hashtag Load (0.0ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 24], ["hashtaggable_type", "Post"]]
2273
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 40], ["hashtaggable_id", 24], ["hashtaggable_type", "Post"]]
2274
+ SQL (0.1ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 24 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2275
+  (1.0ms) commit transaction
2276
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 24], ["hashtaggable_type", "Post"]]
2277
+  (0.1ms) begin transaction
2278
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2279
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2280
+ SimpleHashtag::Hashtag Load (0.0ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2281
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2282
+ SimpleHashtag::Hashtag Load (0.0ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2283
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2284
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2285
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 43], ["hashtaggable_id", 25], ["hashtaggable_type", "Post"]]
2286
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 44], ["hashtaggable_id", 25], ["hashtaggable_type", "Post"]]
2287
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 45], ["hashtaggable_id", 25], ["hashtaggable_type", "Post"]]
2288
+  (1.1ms) commit transaction
2289
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2290
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 25], ["hashtaggable_type", "Post"]]
2291
+  (0.2ms) begin transaction
2292
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2293
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2294
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2295
+ SQL (0.3ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:06:11 UTC +00:00]]
2296
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 43], ["hashtaggable_id", 5], ["hashtaggable_type", "Picture"]]
2297
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 44], ["hashtaggable_id", 5], ["hashtaggable_type", "Picture"]]
2298
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 45], ["hashtaggable_id", 5], ["hashtaggable_type", "Picture"]]
2299
+  (0.9ms) commit transaction
2300
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2301
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 5], ["hashtaggable_type", "Picture"]]
2302
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 5], ["hashtaggable_type", "Picture"]]
2303
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtags"
2304
+ SQL (1.4ms) DELETE FROM "simple_hashtag_hashtaggings"
2305
+ SQL (1.1ms) DELETE FROM "pictures"
2306
+ SQL (1.6ms) DELETE FROM "posts"
2307
+  (2.0ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2308
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2309
+  (0.1ms) begin transaction
2310
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2311
+ SQL (3.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2312
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2313
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 47], ["hashtaggable_id", 26], ["hashtaggable_type", "Post"]]
2314
+  (1.1ms) commit transaction
2315
+  (0.1ms) begin transaction
2316
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2317
+ SQL (0.5ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2318
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 47], ["hashtaggable_id", 6], ["hashtaggable_type", "Picture"]]
2319
+  (0.8ms) commit transaction
2320
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2321
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 47]]
2322
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 26]]
2323
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 6]]
2324
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
2325
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2326
+ SQL (0.7ms) DELETE FROM "pictures"
2327
+ SQL (0.6ms) DELETE FROM "posts"
2328
+  (0.1ms) begin transaction
2329
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2330
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2331
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2332
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 48], ["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
2333
+  (0.8ms) commit transaction
2334
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2335
+  (0.1ms) begin transaction
2336
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2337
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2338
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
2339
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 48 [["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
2340
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 49], ["hashtaggable_id", 27], ["hashtaggable_type", "Post"]]
2341
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 27 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2342
+  (0.8ms) commit transaction
2343
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2344
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 48]]
2345
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 49]]
2346
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 27]]
2347
+  (0.1ms) begin transaction
2348
+ SQL (0.4ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 48]]
2349
+  (0.6ms) commit transaction
2350
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
2351
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2352
+  (0.1ms) begin transaction
2353
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2354
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2355
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2356
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 50], ["hashtaggable_id", 28], ["hashtaggable_type", "Post"]]
2357
+  (0.6ms) commit transaction
2358
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2359
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 28], ["hashtaggable_type", "Post"]]
2360
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 28], ["hashtaggable_type", "Post"]]
2361
+  (0.1ms) begin transaction
2362
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2363
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2364
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2365
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 51], ["hashtaggable_id", 29], ["hashtaggable_type", "Post"]]
2366
+  (0.7ms) commit transaction
2367
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2368
+  (0.0ms) begin transaction
2369
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2370
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2371
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 29], ["hashtaggable_type", "Post"]]
2372
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 49], ["hashtaggable_id", 29], ["hashtaggable_type", "Post"]]
2373
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 29 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2374
+  (0.9ms) commit transaction
2375
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 29], ["hashtaggable_type", "Post"]]
2376
+  (0.1ms) begin transaction
2377
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2378
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2379
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2380
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2381
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2382
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2383
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2384
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 52], ["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
2385
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 53], ["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
2386
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 54], ["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
2387
+  (0.8ms) commit transaction
2388
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2389
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 30], ["hashtaggable_type", "Post"]]
2390
+  (0.1ms) begin transaction
2391
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2392
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2393
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2394
+ SQL (0.4ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 11:08:33 UTC +00:00]]
2395
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 52], ["hashtaggable_id", 7], ["hashtaggable_type", "Picture"]]
2396
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 53], ["hashtaggable_id", 7], ["hashtaggable_type", "Picture"]]
2397
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 54], ["hashtaggable_id", 7], ["hashtaggable_type", "Picture"]]
2398
+  (0.7ms) commit transaction
2399
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2400
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 7], ["hashtaggable_type", "Picture"]]
2401
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 7], ["hashtaggable_type", "Picture"]]
2402
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
2403
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2404
+ SQL (0.8ms) DELETE FROM "pictures"
2405
+ SQL (0.9ms) DELETE FROM "posts"
2406
+  (1.3ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2407
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2408
+  (0.1ms) begin transaction
2409
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2410
+ SQL (2.6ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2411
+ SQL (0.7ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2412
+ SQL (0.8ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 56], ["hashtaggable_id", 31], ["hashtaggable_type", "Post"]]
2413
+  (0.7ms) commit transaction
2414
+  (0.1ms) begin transaction
2415
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2416
+ SQL (0.8ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2417
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 56], ["hashtaggable_id", 8], ["hashtaggable_type", "Picture"]]
2418
+  (1.0ms) commit transaction
2419
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2420
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 56]]
2421
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 31]]
2422
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 8]]
2423
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
2424
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2425
+ SQL (0.8ms) DELETE FROM "pictures"
2426
+ SQL (0.8ms) DELETE FROM "posts"
2427
+  (0.1ms) begin transaction
2428
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2429
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2430
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2431
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 57], ["hashtaggable_id", 32], ["hashtaggable_type", "Post"]]
2432
+  (0.7ms) commit transaction
2433
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2434
+  (0.0ms) begin transaction
2435
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2436
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2437
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 32], ["hashtaggable_type", "Post"]]
2438
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 57 [["hashtaggable_id", 32], ["hashtaggable_type", "Post"]]
2439
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 58], ["hashtaggable_id", 32], ["hashtaggable_type", "Post"]]
2440
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 32 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2441
+  (0.8ms) commit transaction
2442
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2443
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 57]]
2444
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 58]]
2445
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 32]]
2446
+  (0.1ms) begin transaction
2447
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 57]]
2448
+  (0.7ms) commit transaction
2449
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
2450
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2451
+  (0.1ms) begin transaction
2452
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2453
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2454
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2455
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 59], ["hashtaggable_id", 33], ["hashtaggable_type", "Post"]]
2456
+  (1.3ms) commit transaction
2457
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2458
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 33], ["hashtaggable_type", "Post"]]
2459
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 33], ["hashtaggable_type", "Post"]]
2460
+  (0.1ms) begin transaction
2461
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2462
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2463
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2464
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 60], ["hashtaggable_id", 34], ["hashtaggable_type", "Post"]]
2465
+  (0.9ms) commit transaction
2466
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2467
+  (0.1ms) begin transaction
2468
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2469
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2470
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 34], ["hashtaggable_type", "Post"]]
2471
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 58], ["hashtaggable_id", 34], ["hashtaggable_type", "Post"]]
2472
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 34 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2473
+  (0.7ms) commit transaction
2474
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 34], ["hashtaggable_type", "Post"]]
2475
+  (0.1ms) begin transaction
2476
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2477
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2478
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2479
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2480
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2481
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2482
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2483
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 61], ["hashtaggable_id", 35], ["hashtaggable_type", "Post"]]
2484
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 62], ["hashtaggable_id", 35], ["hashtaggable_type", "Post"]]
2485
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 63], ["hashtaggable_id", 35], ["hashtaggable_type", "Post"]]
2486
+  (0.9ms) commit transaction
2487
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2488
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 35], ["hashtaggable_type", "Post"]]
2489
+  (0.1ms) begin transaction
2490
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2491
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2492
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2493
+ SQL (0.4ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:12:37 UTC +00:00]]
2494
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 61], ["hashtaggable_id", 9], ["hashtaggable_type", "Picture"]]
2495
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 62], ["hashtaggable_id", 9], ["hashtaggable_type", "Picture"]]
2496
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 63], ["hashtaggable_id", 9], ["hashtaggable_type", "Picture"]]
2497
+  (0.8ms) commit transaction
2498
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2499
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 9], ["hashtaggable_type", "Picture"]]
2500
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 9], ["hashtaggable_type", "Picture"]]
2501
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
2502
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2503
+ SQL (1.0ms) DELETE FROM "pictures"
2504
+ SQL (0.8ms) DELETE FROM "posts"
2505
+  (1.5ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2506
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2507
+  (0.1ms) begin transaction
2508
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2509
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2510
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2511
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 65], ["hashtaggable_id", 36], ["hashtaggable_type", "Post"]]
2512
+  (0.7ms) commit transaction
2513
+  (0.1ms) begin transaction
2514
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2515
+ SQL (0.4ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2516
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 65], ["hashtaggable_id", 10], ["hashtaggable_type", "Picture"]]
2517
+  (0.6ms) commit transaction
2518
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2519
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 65]]
2520
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 36]]
2521
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 10]]
2522
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtags"
2523
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
2524
+ SQL (0.6ms) DELETE FROM "pictures"
2525
+ SQL (0.9ms) DELETE FROM "posts"
2526
+  (0.1ms) begin transaction
2527
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2528
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2529
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2530
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 66], ["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
2531
+  (0.7ms) commit transaction
2532
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2533
+  (0.0ms) begin transaction
2534
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2535
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2536
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
2537
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 66 [["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
2538
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 67], ["hashtaggable_id", 37], ["hashtaggable_type", "Post"]]
2539
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 37 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2540
+  (0.7ms) commit transaction
2541
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2542
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 66]]
2543
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 67]]
2544
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 37]]
2545
+  (0.0ms) begin transaction
2546
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 66]]
2547
+  (0.6ms) commit transaction
2548
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
2549
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2550
+  (0.0ms) begin transaction
2551
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2552
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2553
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2554
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 68], ["hashtaggable_id", 38], ["hashtaggable_type", "Post"]]
2555
+  (0.8ms) commit transaction
2556
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2557
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 38], ["hashtaggable_type", "Post"]]
2558
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 38], ["hashtaggable_type", "Post"]]
2559
+  (0.1ms) begin transaction
2560
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2561
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2562
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2563
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 69], ["hashtaggable_id", 39], ["hashtaggable_type", "Post"]]
2564
+  (0.8ms) commit transaction
2565
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2566
+  (0.0ms) begin transaction
2567
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2568
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2569
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 39], ["hashtaggable_type", "Post"]]
2570
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 67], ["hashtaggable_id", 39], ["hashtaggable_type", "Post"]]
2571
+ SQL (0.1ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 39 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2572
+  (0.6ms) commit transaction
2573
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 39], ["hashtaggable_type", "Post"]]
2574
+  (0.1ms) begin transaction
2575
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2576
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2577
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2578
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2579
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2580
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2581
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2582
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 70], ["hashtaggable_id", 40], ["hashtaggable_type", "Post"]]
2583
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 71], ["hashtaggable_id", 40], ["hashtaggable_type", "Post"]]
2584
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 72], ["hashtaggable_id", 40], ["hashtaggable_type", "Post"]]
2585
+  (0.7ms) commit transaction
2586
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2587
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 40], ["hashtaggable_type", "Post"]]
2588
+  (0.1ms) begin transaction
2589
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2590
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2591
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2592
+ SQL (0.3ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:06 UTC +00:00]]
2593
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 70], ["hashtaggable_id", 11], ["hashtaggable_type", "Picture"]]
2594
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 71], ["hashtaggable_id", 11], ["hashtaggable_type", "Picture"]]
2595
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 72], ["hashtaggable_id", 11], ["hashtaggable_type", "Picture"]]
2596
+  (0.8ms) commit transaction
2597
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2598
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 11], ["hashtaggable_type", "Picture"]]
2599
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 11], ["hashtaggable_type", "Picture"]]
2600
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
2601
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2602
+ SQL (0.7ms) DELETE FROM "pictures"
2603
+ SQL (0.7ms) DELETE FROM "posts"
2604
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2605
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2606
+  (0.1ms) begin transaction
2607
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2608
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00]]
2609
+ SQL (0.5ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00]]
2610
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 74], ["hashtaggable_id", 41], ["hashtaggable_type", "Post"]]
2611
+  (1.1ms) commit transaction
2612
+  (0.1ms) begin transaction
2613
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2614
+ SQL (0.6ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00]]
2615
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 74], ["hashtaggable_id", 12], ["hashtaggable_type", "Picture"]]
2616
+  (1.3ms) commit transaction
2617
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2618
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 74]]
2619
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 41]]
2620
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 12]]
2621
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
2622
+ SQL (1.1ms) DELETE FROM "simple_hashtag_hashtaggings"
2623
+ SQL (1.4ms) DELETE FROM "pictures"
2624
+ SQL (1.2ms) DELETE FROM "posts"
2625
+  (0.1ms) begin transaction
2626
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2627
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00]]
2628
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00]]
2629
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 75], ["hashtaggable_id", 42], ["hashtaggable_type", "Post"]]
2630
+  (0.7ms) commit transaction
2631
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2632
+  (0.0ms) begin transaction
2633
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2634
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:13:58 UTC +00:00]]
2635
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 42], ["hashtaggable_type", "Post"]]
2636
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 75 [["hashtaggable_id", 42], ["hashtaggable_type", "Post"]]
2637
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 76], ["hashtaggable_id", 42], ["hashtaggable_type", "Post"]]
2638
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 42 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2639
+  (1.1ms) commit transaction
2640
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2641
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 75]]
2642
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 76]]
2643
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 42]]
2644
+  (0.1ms) begin transaction
2645
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 75]]
2646
+  (0.9ms) commit transaction
2647
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags"
2648
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2649
+  (0.1ms) begin transaction
2650
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2651
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2652
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2653
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 77], ["hashtaggable_id", 43], ["hashtaggable_type", "Post"]]
2654
+  (0.8ms) commit transaction
2655
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2656
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 43], ["hashtaggable_type", "Post"]]
2657
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 43], ["hashtaggable_type", "Post"]]
2658
+  (0.1ms) begin transaction
2659
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2660
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2661
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certianty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2662
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 78], ["hashtaggable_id", 44], ["hashtaggable_type", "Post"]]
2663
+  (1.3ms) commit transaction
2664
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2665
+  (0.0ms) begin transaction
2666
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2667
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2668
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 44], ["hashtaggable_type", "Post"]]
2669
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 76], ["hashtaggable_id", 44], ["hashtaggable_type", "Post"]]
2670
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 44 [["body", "Certianty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2671
+  (0.8ms) commit transaction
2672
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 44], ["hashtaggable_type", "Post"]]
2673
+  (0.1ms) begin transaction
2674
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2675
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2676
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2677
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2678
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2679
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2680
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2681
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 79], ["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
2682
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 80], ["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
2683
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 81], ["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
2684
+  (1.1ms) commit transaction
2685
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2686
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 45], ["hashtaggable_type", "Post"]]
2687
+  (0.1ms) begin transaction
2688
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2689
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2690
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2691
+ SQL (0.3ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:13:59 UTC +00:00]]
2692
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 79], ["hashtaggable_id", 13], ["hashtaggable_type", "Picture"]]
2693
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 80], ["hashtaggable_id", 13], ["hashtaggable_type", "Picture"]]
2694
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 81], ["hashtaggable_id", 13], ["hashtaggable_type", "Picture"]]
2695
+  (1.0ms) commit transaction
2696
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2697
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 13], ["hashtaggable_type", "Picture"]]
2698
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 13], ["hashtaggable_type", "Picture"]]
2699
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtags"
2700
+ SQL (1.2ms) DELETE FROM "simple_hashtag_hashtaggings"
2701
+ SQL (1.0ms) DELETE FROM "pictures"
2702
+ SQL (0.8ms) DELETE FROM "posts"
2703
+  (1.9ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2704
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2705
+  (0.1ms) begin transaction
2706
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2707
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2708
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2709
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 83], ["hashtaggable_id", 46], ["hashtaggable_type", "Post"]]
2710
+  (0.8ms) commit transaction
2711
+  (0.1ms) begin transaction
2712
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2713
+ SQL (0.7ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2714
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 83], ["hashtaggable_id", 14], ["hashtaggable_type", "Picture"]]
2715
+  (0.9ms) commit transaction
2716
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2717
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 83]]
2718
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 46]]
2719
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 14]]
2720
+  (0.1ms) begin transaction
2721
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2722
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2723
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2724
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 84], ["hashtaggable_id", 47], ["hashtaggable_type", "Post"]]
2725
+  (0.7ms) commit transaction
2726
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2727
+  (0.0ms) begin transaction
2728
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2729
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2730
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 47], ["hashtaggable_type", "Post"]]
2731
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 84 [["hashtaggable_id", 47], ["hashtaggable_type", "Post"]]
2732
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 85], ["hashtaggable_id", 47], ["hashtaggable_type", "Post"]]
2733
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 47 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2734
+  (0.9ms) commit transaction
2735
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2736
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 82]]
2737
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 83]]
2738
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 46]]
2739
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 14]]
2740
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 84]]
2741
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 85]]
2742
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 47]]
2743
+  (0.1ms) begin transaction
2744
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 82]]
2745
+  (0.6ms) commit transaction
2746
+  (0.1ms) begin transaction
2747
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 84]]
2748
+  (0.5ms) commit transaction
2749
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2750
+  (0.1ms) begin transaction
2751
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2752
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2753
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2754
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 86], ["hashtaggable_id", 48], ["hashtaggable_type", "Post"]]
2755
+  (0.9ms) commit transaction
2756
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2757
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 48], ["hashtaggable_type", "Post"]]
2758
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 48], ["hashtaggable_type", "Post"]]
2759
+  (0.2ms) begin transaction
2760
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2761
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2762
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2763
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 87], ["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
2764
+  (0.9ms) commit transaction
2765
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2766
+  (0.1ms) begin transaction
2767
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2768
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2769
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
2770
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 85], ["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
2771
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 49 [["body", "Certainty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2772
+  (0.7ms) commit transaction
2773
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 49], ["hashtaggable_type", "Post"]]
2774
+  (0.1ms) begin transaction
2775
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2776
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2777
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2778
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2779
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2780
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2781
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2782
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 88], ["hashtaggable_id", 50], ["hashtaggable_type", "Post"]]
2783
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 89], ["hashtaggable_id", 50], ["hashtaggable_type", "Post"]]
2784
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 90], ["hashtaggable_id", 50], ["hashtaggable_type", "Post"]]
2785
+  (0.8ms) commit transaction
2786
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2787
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 50], ["hashtaggable_type", "Post"]]
2788
+  (0.1ms) begin transaction
2789
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2790
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2791
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2792
+ SQL (0.5ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:18:00 UTC +00:00]]
2793
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 88], ["hashtaggable_id", 15], ["hashtaggable_type", "Picture"]]
2794
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 89], ["hashtaggable_id", 15], ["hashtaggable_type", "Picture"]]
2795
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 90], ["hashtaggable_id", 15], ["hashtaggable_type", "Picture"]]
2796
+  (1.0ms) commit transaction
2797
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2798
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 15], ["hashtaggable_type", "Picture"]]
2799
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 15], ["hashtaggable_type", "Picture"]]
2800
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtags"
2801
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2802
+ SQL (0.8ms) DELETE FROM "pictures"
2803
+ SQL (0.9ms) DELETE FROM "posts"
2804
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2805
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2806
+  (0.1ms) begin transaction
2807
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2808
+ SQL (2.6ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2809
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2810
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 92], ["hashtaggable_id", 51], ["hashtaggable_type", "Post"]]
2811
+  (0.7ms) commit transaction
2812
+  (0.1ms) begin transaction
2813
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2814
+ SQL (0.5ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2815
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 92], ["hashtaggable_id", 16], ["hashtaggable_type", "Picture"]]
2816
+  (0.7ms) commit transaction
2817
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2818
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 92]]
2819
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 51]]
2820
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 16]]
2821
+  (0.0ms) begin transaction
2822
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2823
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2824
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2825
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 93], ["hashtaggable_id", 52], ["hashtaggable_type", "Post"]]
2826
+  (0.8ms) commit transaction
2827
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2828
+  (0.0ms) begin transaction
2829
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2830
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2831
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 52], ["hashtaggable_type", "Post"]]
2832
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 93 [["hashtaggable_id", 52], ["hashtaggable_type", "Post"]]
2833
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 94], ["hashtaggable_id", 52], ["hashtaggable_type", "Post"]]
2834
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 52 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2835
+  (0.9ms) commit transaction
2836
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2837
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 91]]
2838
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 92]]
2839
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 51]]
2840
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 16]]
2841
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 93]]
2842
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 94]]
2843
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 52]]
2844
+  (0.0ms) begin transaction
2845
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 91]]
2846
+  (0.6ms) commit transaction
2847
+  (0.1ms) begin transaction
2848
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 93]]
2849
+  (0.4ms) commit transaction
2850
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2851
+  (0.1ms) begin transaction
2852
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2853
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2854
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2855
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 95], ["hashtaggable_id", 53], ["hashtaggable_type", "Post"]]
2856
+  (0.7ms) commit transaction
2857
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2858
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 53], ["hashtaggable_type", "Post"]]
2859
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 53], ["hashtaggable_type", "Post"]]
2860
+  (0.1ms) begin transaction
2861
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2862
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2863
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2864
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 96], ["hashtaggable_id", 54], ["hashtaggable_type", "Post"]]
2865
+  (0.7ms) commit transaction
2866
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2867
+  (0.1ms) begin transaction
2868
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2869
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2870
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 54], ["hashtaggable_type", "Post"]]
2871
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 94], ["hashtaggable_id", 54], ["hashtaggable_type", "Post"]]
2872
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 54 [["body", "Certainty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2873
+  (0.9ms) commit transaction
2874
+  (0.4ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 54], ["hashtaggable_type", "Post"]]
2875
+  (0.1ms) begin transaction
2876
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2877
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2878
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2879
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2880
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2881
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2882
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2883
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 97], ["hashtaggable_id", 55], ["hashtaggable_type", "Post"]]
2884
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 98], ["hashtaggable_id", 55], ["hashtaggable_type", "Post"]]
2885
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 99], ["hashtaggable_id", 55], ["hashtaggable_type", "Post"]]
2886
+  (0.7ms) commit transaction
2887
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2888
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 55], ["hashtaggable_type", "Post"]]
2889
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 55], ["hashtaggable_type", "Post"]]
2890
+  (0.1ms) begin transaction
2891
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2892
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2893
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2894
+ SQL (0.4ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:20:39 UTC +00:00]]
2895
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 97], ["hashtaggable_id", 17], ["hashtaggable_type", "Picture"]]
2896
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 98], ["hashtaggable_id", 17], ["hashtaggable_type", "Picture"]]
2897
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 99], ["hashtaggable_id", 17], ["hashtaggable_type", "Picture"]]
2898
+  (0.7ms) commit transaction
2899
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
2900
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 17], ["hashtaggable_type", "Picture"]]
2901
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 17], ["hashtaggable_type", "Picture"]]
2902
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
2903
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtaggings"
2904
+ SQL (0.7ms) DELETE FROM "pictures"
2905
+ SQL (0.7ms) DELETE FROM "posts"
2906
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
2907
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2908
+  (0.1ms) begin transaction
2909
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2910
+ SQL (1.8ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2911
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2912
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 101], ["hashtaggable_id", 56], ["hashtaggable_type", "Post"]]
2913
+  (1.2ms) commit transaction
2914
+  (0.1ms) begin transaction
2915
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
2916
+ SQL (0.5ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2917
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 101], ["hashtaggable_id", 18], ["hashtaggable_type", "Picture"]]
2918
+  (1.4ms) commit transaction
2919
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
2920
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 101]]
2921
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 56]]
2922
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 18]]
2923
+  (0.1ms) begin transaction
2924
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2925
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2926
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2927
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 102], ["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
2928
+  (1.1ms) commit transaction
2929
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2930
+  (0.0ms) begin transaction
2931
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2932
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2933
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
2934
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 102 [["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
2935
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 103], ["hashtaggable_id", 57], ["hashtaggable_type", "Post"]]
2936
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 57 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2937
+  (1.1ms) commit transaction
2938
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2939
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 100]]
2940
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 101]]
2941
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 56]]
2942
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 18]]
2943
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 102]]
2944
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 103]]
2945
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 57]]
2946
+  (0.0ms) begin transaction
2947
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 100]]
2948
+  (1.0ms) commit transaction
2949
+  (0.0ms) begin transaction
2950
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 102]]
2951
+  (1.0ms) commit transaction
2952
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
2953
+  (0.1ms) begin transaction
2954
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
2955
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2956
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2957
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 104], ["hashtaggable_id", 58], ["hashtaggable_type", "Post"]]
2958
+  (1.1ms) commit transaction
2959
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2960
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 58], ["hashtaggable_type", "Post"]]
2961
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 58], ["hashtaggable_type", "Post"]]
2962
+  (0.1ms) begin transaction
2963
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2964
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2965
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2966
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 105], ["hashtaggable_id", 59], ["hashtaggable_type", "Post"]]
2967
+  (1.0ms) commit transaction
2968
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2969
+  (0.0ms) begin transaction
2970
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
2971
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
2972
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 59], ["hashtaggable_type", "Post"]]
2973
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 103], ["hashtaggable_id", 59], ["hashtaggable_type", "Post"]]
2974
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 59 [["body", "Certainty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2975
+  (0.8ms) commit transaction
2976
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 59], ["hashtaggable_type", "Post"]]
2977
+  (0.1ms) begin transaction
2978
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2979
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2980
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2981
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2982
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2983
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2984
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2985
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 106], ["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
2986
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 107], ["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
2987
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 108], ["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
2988
+  (1.1ms) commit transaction
2989
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
2990
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
2991
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 60], ["hashtaggable_type", "Post"]]
2992
+  (0.1ms) begin transaction
2993
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
2994
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
2995
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
2996
+ SQL (0.3ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:11 UTC +00:00]]
2997
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 106], ["hashtaggable_id", 19], ["hashtaggable_type", "Picture"]]
2998
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 107], ["hashtaggable_id", 19], ["hashtaggable_type", "Picture"]]
2999
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 108], ["hashtaggable_id", 19], ["hashtaggable_type", "Picture"]]
3000
+  (1.0ms) commit transaction
3001
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
3002
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 19], ["hashtaggable_type", "Picture"]]
3003
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 19], ["hashtaggable_type", "Picture"]]
3004
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
3005
+ SQL (1.5ms) DELETE FROM "simple_hashtag_hashtaggings"
3006
+ SQL (1.4ms) DELETE FROM "pictures"
3007
+ SQL (1.1ms) DELETE FROM "posts"
3008
+  (1.7ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
3009
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3010
+  (0.1ms) begin transaction
3011
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3012
+ SQL (1.9ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3013
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3014
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 110], ["hashtaggable_id", 61], ["hashtaggable_type", "Post"]]
3015
+  (1.2ms) commit transaction
3016
+  (0.1ms) begin transaction
3017
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3018
+ SQL (0.4ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3019
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 110], ["hashtaggable_id", 20], ["hashtaggable_type", "Picture"]]
3020
+  (0.7ms) commit transaction
3021
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3022
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 110]]
3023
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 61]]
3024
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 20]]
3025
+  (0.1ms) begin transaction
3026
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3027
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3028
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3029
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 111], ["hashtaggable_id", 62], ["hashtaggable_type", "Post"]]
3030
+  (0.9ms) commit transaction
3031
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3032
+  (0.0ms) begin transaction
3033
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3034
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3035
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 62], ["hashtaggable_type", "Post"]]
3036
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 111 [["hashtaggable_id", 62], ["hashtaggable_type", "Post"]]
3037
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 112], ["hashtaggable_id", 62], ["hashtaggable_type", "Post"]]
3038
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 62 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3039
+  (0.8ms) commit transaction
3040
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3041
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 109]]
3042
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 110]]
3043
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 61]]
3044
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 20]]
3045
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 111]]
3046
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 112]]
3047
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 62]]
3048
+  (0.0ms) begin transaction
3049
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 109]]
3050
+  (0.7ms) commit transaction
3051
+  (0.1ms) begin transaction
3052
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 111]]
3053
+  (0.7ms) commit transaction
3054
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3055
+  (0.1ms) begin transaction
3056
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
3057
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3058
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3059
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 113], ["hashtaggable_id", 63], ["hashtaggable_type", "Post"]]
3060
+  (1.1ms) commit transaction
3061
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3062
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 63], ["hashtaggable_type", "Post"]]
3063
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 63], ["hashtaggable_type", "Post"]]
3064
+  (0.1ms) begin transaction
3065
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3066
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3067
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3068
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 114], ["hashtaggable_id", 64], ["hashtaggable_type", "Post"]]
3069
+  (0.8ms) commit transaction
3070
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3071
+  (0.0ms) begin transaction
3072
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3073
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3074
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 64], ["hashtaggable_type", "Post"]]
3075
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 112], ["hashtaggable_id", 64], ["hashtaggable_type", "Post"]]
3076
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 64 [["body", "Certainty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3077
+  (0.8ms) commit transaction
3078
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 64], ["hashtaggable_type", "Post"]]
3079
+  (0.1ms) begin transaction
3080
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3081
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3082
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3083
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3084
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3085
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3086
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3087
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 115], ["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
3088
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 116], ["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
3089
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 117], ["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
3090
+  (0.8ms) commit transaction
3091
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3092
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
3093
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 65], ["hashtaggable_type", "Post"]]
3094
+  (0.1ms) begin transaction
3095
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3096
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3097
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3098
+ SQL (0.5ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:24:47 UTC +00:00]]
3099
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 115], ["hashtaggable_id", 21], ["hashtaggable_type", "Picture"]]
3100
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 116], ["hashtaggable_id", 21], ["hashtaggable_type", "Picture"]]
3101
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 117], ["hashtaggable_id", 21], ["hashtaggable_type", "Picture"]]
3102
+  (1.0ms) commit transaction
3103
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
3104
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 21], ["hashtaggable_type", "Picture"]]
3105
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 21], ["hashtaggable_type", "Picture"]]
3106
+ SQL (1.0ms) DELETE FROM "simple_hashtag_hashtags"
3107
+ SQL (1.3ms) DELETE FROM "simple_hashtag_hashtaggings"
3108
+ SQL (1.1ms) DELETE FROM "pictures"
3109
+ SQL (1.2ms) DELETE FROM "posts"
3110
+  (1.5ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
3111
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3112
+  (0.1ms) begin transaction
3113
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3114
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3115
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3116
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 119], ["hashtaggable_id", 66], ["hashtaggable_type", "Post"]]
3117
+  (0.7ms) commit transaction
3118
+  (0.1ms) begin transaction
3119
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3120
+ SQL (0.6ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3121
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 119], ["hashtaggable_id", 22], ["hashtaggable_type", "Picture"]]
3122
+  (0.7ms) commit transaction
3123
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3124
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 119]]
3125
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 66]]
3126
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 22]]
3127
+  (0.1ms) begin transaction
3128
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3129
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3130
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3131
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 120], ["hashtaggable_id", 67], ["hashtaggable_type", "Post"]]
3132
+  (0.7ms) commit transaction
3133
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3134
+  (0.0ms) begin transaction
3135
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3136
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3137
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 67], ["hashtaggable_type", "Post"]]
3138
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 120 [["hashtaggable_id", 67], ["hashtaggable_type", "Post"]]
3139
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 121], ["hashtaggable_id", 67], ["hashtaggable_type", "Post"]]
3140
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 67 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3141
+  (0.7ms) commit transaction
3142
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3143
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 118]]
3144
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 119]]
3145
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 66]]
3146
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 22]]
3147
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 120]]
3148
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 121]]
3149
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 67]]
3150
+  (0.0ms) begin transaction
3151
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 118]]
3152
+  (0.6ms) commit transaction
3153
+  (0.0ms) begin transaction
3154
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 120]]
3155
+  (0.5ms) commit transaction
3156
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3157
+  (0.1ms) begin transaction
3158
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
3159
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3160
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3161
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 122], ["hashtaggable_id", 68], ["hashtaggable_type", "Post"]]
3162
+  (0.7ms) commit transaction
3163
+ Post Load (0.7ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3164
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 68], ["hashtaggable_type", "Post"]]
3165
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 68], ["hashtaggable_type", "Post"]]
3166
+  (0.1ms) begin transaction
3167
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3168
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3169
+ SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3170
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 123], ["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
3171
+  (0.6ms) commit transaction
3172
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3173
+  (0.0ms) begin transaction
3174
+ SimpleHashtag::Hashtag Load (0.9ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3175
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3176
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
3177
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 121], ["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
3178
+ SQL (0.1ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 69 [["body", "Certainty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3179
+  (0.6ms) commit transaction
3180
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 69], ["hashtaggable_type", "Post"]]
3181
+  (0.1ms) begin transaction
3182
+  (0.1ms) rollback transaction
3183
+  (0.1ms) begin transaction
3184
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3185
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3186
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3187
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3188
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3189
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3190
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3191
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 124], ["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
3192
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 125], ["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
3193
+ SQL (0.0ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 126], ["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
3194
+  (0.7ms) commit transaction
3195
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3196
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
3197
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 70], ["hashtaggable_type", "Post"]]
3198
+  (0.1ms) begin transaction
3199
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3200
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3201
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3202
+ SQL (0.3ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:07 UTC +00:00]]
3203
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 124], ["hashtaggable_id", 23], ["hashtaggable_type", "Picture"]]
3204
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 125], ["hashtaggable_id", 23], ["hashtaggable_type", "Picture"]]
3205
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 126], ["hashtaggable_id", 23], ["hashtaggable_type", "Picture"]]
3206
+  (0.8ms) commit transaction
3207
+ Picture Load (0.2ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
3208
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 23], ["hashtaggable_type", "Picture"]]
3209
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 23], ["hashtaggable_type", "Picture"]]
3210
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
3211
+ SQL (0.9ms) DELETE FROM "simple_hashtag_hashtaggings"
3212
+ SQL (0.9ms) DELETE FROM "pictures"
3213
+ SQL (1.0ms) DELETE FROM "posts"
3214
+  (2.1ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
3215
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3216
+  (0.1ms) begin transaction
3217
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3218
+ SQL (3.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3219
+ SQL (0.4ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3220
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 128], ["hashtaggable_id", 71], ["hashtaggable_type", "Post"]]
3221
+  (0.8ms) commit transaction
3222
+  (0.2ms) begin transaction
3223
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3224
+ SQL (0.6ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3225
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 128], ["hashtaggable_id", 24], ["hashtaggable_type", "Picture"]]
3226
+  (0.7ms) commit transaction
3227
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3228
+ SimpleHashtag::Hashtagging Load (0.3ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 128]]
3229
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 71]]
3230
+ Picture Load (0.3ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 24]]
3231
+  (0.1ms) begin transaction
3232
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3233
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3234
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3235
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 129], ["hashtaggable_id", 72], ["hashtaggable_type", "Post"]]
3236
+  (0.9ms) commit transaction
3237
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3238
+  (0.1ms) begin transaction
3239
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3240
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3241
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 72], ["hashtaggable_type", "Post"]]
3242
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 129 [["hashtaggable_id", 72], ["hashtaggable_type", "Post"]]
3243
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 130], ["hashtaggable_id", 72], ["hashtaggable_type", "Post"]]
3244
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 72 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3245
+  (0.8ms) commit transaction
3246
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3247
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 127]]
3248
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 128]]
3249
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 71]]
3250
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 24]]
3251
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 129]]
3252
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 130]]
3253
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 72]]
3254
+  (0.1ms) begin transaction
3255
+ SQL (0.4ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 127]]
3256
+  (0.8ms) commit transaction
3257
+  (0.1ms) begin transaction
3258
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 129]]
3259
+  (1.0ms) commit transaction
3260
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3261
+  (0.1ms) begin transaction
3262
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
3263
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3264
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3265
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 131], ["hashtaggable_id", 73], ["hashtaggable_type", "Post"]]
3266
+  (0.7ms) commit transaction
3267
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3268
+  (0.2ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 73], ["hashtaggable_type", "Post"]]
3269
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 73], ["hashtaggable_type", "Post"]]
3270
+  (0.1ms) begin transaction
3271
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3272
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3273
+ SQL (0.6ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3274
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 132], ["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
3275
+  (1.0ms) commit transaction
3276
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3277
+  (0.1ms) begin transaction
3278
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3279
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3280
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
3281
+ SQL (0.5ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 130], ["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
3282
+ SQL (0.2ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 74 [["body", "Certainty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3283
+  (0.7ms) commit transaction
3284
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 74], ["hashtaggable_type", "Post"]]
3285
+  (0.1ms) begin transaction
3286
+ SQL (0.5ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3287
+  (0.7ms) commit transaction
3288
+  (0.1ms) begin transaction
3289
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3290
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3291
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3292
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3293
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3294
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3295
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3296
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 133], ["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
3297
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 134], ["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
3298
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 135], ["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
3299
+  (0.9ms) commit transaction
3300
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3301
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
3302
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 76], ["hashtaggable_type", "Post"]]
3303
+  (0.1ms) begin transaction
3304
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3305
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3306
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3307
+ SQL (0.7ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:18 UTC +00:00]]
3308
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 133], ["hashtaggable_id", 25], ["hashtaggable_type", "Picture"]]
3309
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 134], ["hashtaggable_id", 25], ["hashtaggable_type", "Picture"]]
3310
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 135], ["hashtaggable_id", 25], ["hashtaggable_type", "Picture"]]
3311
+  (1.0ms) commit transaction
3312
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
3313
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 25], ["hashtaggable_type", "Picture"]]
3314
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 25], ["hashtaggable_type", "Picture"]]
3315
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
3316
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
3317
+ SQL (0.7ms) DELETE FROM "pictures"
3318
+ SQL (0.8ms) DELETE FROM "posts"
3319
+  (1.4ms) INSERT INTO simple_hashtag_hashtags (name) values ('WEirDcasE')
3320
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='weirdcase') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3321
+  (0.1ms) begin transaction
3322
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3323
+ SQL (2.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:26 UTC +00:00], ["name", "book"], ["updated_at", Sun, 06 Oct 2013 12:29:26 UTC +00:00]]
3324
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "I thought up an ending for my #book."], ["created_at", Sun, 06 Oct 2013 12:29:26 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:26 UTC +00:00]]
3325
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 137], ["hashtaggable_id", 77], ["hashtaggable_type", "Post"]]
3326
+  (0.8ms) commit transaction
3327
+  (0.1ms) begin transaction
3328
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'book' LIMIT 1
3329
+ SQL (0.4ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "Some who have read the #book."], ["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3330
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 137], ["hashtaggable_id", 26], ["hashtaggable_type", "Picture"]]
3331
+  (0.7ms) commit transaction
3332
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE (lower(name) ='book') ORDER BY "simple_hashtag_hashtags"."id" ASC LIMIT 1
3333
+ SimpleHashtag::Hashtagging Load (0.2ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 137]]
3334
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 77]]
3335
+ Picture Load (0.3ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 26]]
3336
+  (0.1ms) begin transaction
3337
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3338
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3339
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3340
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 138], ["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
3341
+  (0.8ms) commit transaction
3342
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3343
+  (0.0ms) begin transaction
3344
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3345
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["name", "waiting"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3346
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
3347
+ SQL (0.1ms) DELETE FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? AND "simple_hashtag_hashtaggings"."hashtag_id" = 138 [["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
3348
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 139], ["hashtaggable_id", 78], ["hashtaggable_type", "Post"]]
3349
+ SQL (0.3ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 78 [["body", "What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3350
+  (0.7ms) commit transaction
3351
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3352
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 136]]
3353
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 137]]
3354
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 77]]
3355
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."id" = ? ORDER BY "pictures"."id" ASC LIMIT 1 [["id", 26]]
3356
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 138]]
3357
+ SimpleHashtag::Hashtagging Load (0.1ms) SELECT "simple_hashtag_hashtaggings".* FROM "simple_hashtag_hashtaggings" WHERE "simple_hashtag_hashtaggings"."hashtag_id" = ? [["hashtag_id", 139]]
3358
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? ORDER BY "posts"."id" ASC LIMIT 1 [["id", 78]]
3359
+  (0.0ms) begin transaction
3360
+ SQL (0.3ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 136]]
3361
+  (0.6ms) commit transaction
3362
+  (0.0ms) begin transaction
3363
+ SQL (0.2ms) DELETE FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."id" = ? [["id", 138]]
3364
+  (0.5ms) commit transaction
3365
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags"
3366
+  (0.1ms) begin transaction
3367
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'follow' LIMIT 1
3368
+ SQL (0.3ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["name", "follow"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3369
+ SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Don't go where I can't #follow."], ["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3370
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 140], ["hashtaggable_id", 79], ["hashtaggable_type", "Post"]]
3371
+  (0.7ms) commit transaction
3372
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3373
+  (0.3ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 79], ["hashtaggable_type", "Post"]]
3374
+ SimpleHashtag::Hashtag Load (0.3ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? ORDER BY "simple_hashtag_hashtags"."id" DESC LIMIT 1 [["hashtaggable_id", 79], ["hashtaggable_type", "Post"]]
3375
+  (0.1ms) begin transaction
3376
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3377
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["name", "chance"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3378
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "Certainty of death, small #chance of success."], ["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3379
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 141], ["hashtaggable_id", 80], ["hashtaggable_type", "Post"]]
3380
+  (0.7ms) commit transaction
3381
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3382
+  (0.0ms) begin transaction
3383
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'chance' LIMIT 1
3384
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'waiting' LIMIT 1
3385
+ SimpleHashtag::Hashtag Load (0.0ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 80], ["hashtaggable_type", "Post"]]
3386
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 139], ["hashtaggable_id", 80], ["hashtaggable_type", "Post"]]
3387
+ SQL (0.1ms) UPDATE "posts" SET "body" = ?, "updated_at" = ? WHERE "posts"."id" = 80 [["body", "Certainty of death, small #chance of success.What are we #waiting for?"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3388
+  (0.6ms) commit transaction
3389
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 80], ["hashtaggable_type", "Post"]]
3390
+  (0.1ms) begin transaction
3391
+ SQL (0.3ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3392
+  (0.7ms) commit transaction
3393
+  (0.1ms) begin transaction
3394
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3395
+ SQL (0.4ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["name", "rain-curtain"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3396
+ SimpleHashtag::Hashtag Load (0.2ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3397
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["name", "silver"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3398
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3399
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["name", "see"], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3400
+ SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3401
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 142], ["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
3402
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 143], ["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
3403
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 144], ["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
3404
+  (1.2ms) commit transaction
3405
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
3406
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
3407
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 82], ["hashtaggable_type", "Post"]]
3408
+  (0.1ms) begin transaction
3409
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'rain-curtain' LIMIT 1
3410
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'silver' LIMIT 1
3411
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" WHERE "simple_hashtag_hashtags"."name" = 'see' LIMIT 1
3412
+ SQL (0.3ms) INSERT INTO "pictures" ("caption", "created_at", "updated_at") VALUES (?, ?, ?) [["caption", "The grey #rain-curtain of this world rolls back, and all turns to #silver glass, and then you #see it."], ["created_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00], ["updated_at", Sun, 06 Oct 2013 12:29:27 UTC +00:00]]
3413
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 142], ["hashtaggable_id", 27], ["hashtaggable_type", "Picture"]]
3414
+ SQL (0.1ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 143], ["hashtaggable_id", 27], ["hashtaggable_type", "Picture"]]
3415
+ SQL (0.2ms) INSERT INTO "simple_hashtag_hashtaggings" ("hashtag_id", "hashtaggable_id", "hashtaggable_type") VALUES (?, ?, ?) [["hashtag_id", 144], ["hashtaggable_id", 27], ["hashtaggable_type", "Picture"]]
3416
+  (0.8ms) commit transaction
3417
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" ORDER BY "pictures"."id" DESC LIMIT 1
3418
+  (0.1ms) SELECT COUNT(*) FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 27], ["hashtaggable_type", "Picture"]]
3419
+ SimpleHashtag::Hashtag Load (0.1ms) SELECT "simple_hashtag_hashtags".* FROM "simple_hashtag_hashtags" INNER JOIN "simple_hashtag_hashtaggings" ON "simple_hashtag_hashtags"."id" = "simple_hashtag_hashtaggings"."hashtag_id" WHERE "simple_hashtag_hashtaggings"."hashtaggable_id" = ? AND "simple_hashtag_hashtaggings"."hashtaggable_type" = ? [["hashtaggable_id", 27], ["hashtaggable_type", "Picture"]]
3420
+ SQL (0.8ms) DELETE FROM "simple_hashtag_hashtags"
3421
+ SQL (0.7ms) DELETE FROM "simple_hashtag_hashtaggings"
3422
+ SQL (0.7ms) DELETE FROM "pictures"
3423
+ SQL (0.9ms) DELETE FROM "posts"