easy_tag 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data/Rakefile +16 -9
  4. data/app/models/easy_tag/tag.rb +0 -3
  5. data/app/models/easy_tag/tag_context.rb +0 -3
  6. data/lib/easy_tag/taggable.rb +5 -4
  7. data/lib/easy_tag/tagger.rb +1 -1
  8. data/lib/easy_tag/version.rb +1 -1
  9. data/lib/easy_tag.rb +2 -2
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/javascripts/application.js +13 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/controllers/application_controller.rb +5 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/models/comment.rb +3 -0
  17. data/test/dummy/app/models/post.rb +3 -0
  18. data/test/dummy/app/models/user.rb +3 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/bin/bundle +3 -0
  21. data/test/dummy/bin/rails +4 -0
  22. data/test/dummy/bin/rake +4 -0
  23. data/test/dummy/config/application.rb +23 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +29 -0
  28. data/test/dummy/config/environments/production.rb +80 -0
  29. data/test/dummy/config/environments/test.rb +36 -0
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  32. data/test/dummy/config/initializers/inflections.rb +16 -0
  33. data/test/dummy/config/initializers/mime_types.rb +5 -0
  34. data/test/dummy/config/initializers/secret_token.rb +12 -0
  35. data/test/dummy/config/initializers/session_store.rb +3 -0
  36. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/test/dummy/config/locales/en.yml +23 -0
  38. data/test/dummy/config/routes.rb +56 -0
  39. data/test/dummy/config.ru +4 -0
  40. data/test/dummy/db/development.sqlite3 +0 -0
  41. data/test/dummy/db/migrate/20130113020203_create_users.rb +9 -0
  42. data/test/dummy/db/migrate/20130113020210_create_posts.rb +9 -0
  43. data/test/dummy/db/migrate/20130113020220_create_comments.rb +9 -0
  44. data/test/dummy/db/migrate/20130117032413_easy_tag_migration.rb +34 -0
  45. data/test/dummy/db/schema.rb +61 -0
  46. data/test/dummy/db/test.sqlite3 +0 -0
  47. data/test/dummy/log/development.log +847 -0
  48. data/test/dummy/log/test.log +92788 -0
  49. data/test/dummy/public/404.html +58 -0
  50. data/test/dummy/public/422.html +58 -0
  51. data/test/dummy/public/500.html +57 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/test/foo_test.rb +8 -0
  54. data/test/dummy/test/models/easy_tag/tag_test.rb +72 -0
  55. data/test/dummy/test/models/easy_tag/taggable_test.rb +214 -0
  56. data/test/dummy/test/models/easy_tag/tagger_test.rb +58 -0
  57. data/test/test_helper.rb +30 -0
  58. data.tar.gz.sig +0 -0
  59. metadata +134 -22
  60. metadata.gz.sig +2 -0
@@ -0,0 +1,847 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+ Connecting to database specified by database.yml
7
+ Connecting to database specified by database.yml
8
+ Connecting to database specified by database.yml
9
+ Connecting to database specified by database.yml
10
+ Connecting to database specified by database.yml
11
+ Connecting to database specified by database.yml
12
+  (1.1ms) select sqlite_version(*)
13
+  (5.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
+ Migrating to SimpleTagMigration (20130112031215)
17
+  (0.0ms) begin transaction
18
+  (0.1ms) rollback transaction
19
+ Connecting to database specified by database.yml
20
+ Connecting to database specified by database.yml
21
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
22
+ Migrating to SimpleTagMigration (20130112031423)
23
+  (0.0ms) select sqlite_version(*)
24
+  (0.0ms) begin transaction
25
+  (0.5ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
26
+  (0.2ms) CREATE TABLE "tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
27
+  (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
28
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
29
+  (0.1ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
30
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
31
+  (0.2ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")
32
+ SQLite3::SQLException: table taggings has no column named context: CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")
33
+  (72.1ms) rollback transaction
34
+ Connecting to database specified by database.yml
35
+ Connecting to database specified by database.yml
36
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
37
+ Migrating to SimpleTagMigration (20130112031638)
38
+  (0.0ms) select sqlite_version(*)
39
+  (0.0ms) begin transaction
40
+  (0.5ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
41
+  (0.1ms) CREATE TABLE "tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
42
+  (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
43
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
44
+  (0.2ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
45
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
46
+  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
47
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130112031638')
48
+  (49.9ms) commit transaction
49
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
50
+ Connecting to database specified by database.yml
51
+ Connecting to database specified by database.yml
52
+ Connecting to database specified by database.yml
53
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
54
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
55
+ Migrating to SimpleTagMigration (20130112031638)
56
+  (0.0ms) select sqlite_version(*)
57
+  (0.0ms) begin transaction
58
+  (0.5ms) DROP TABLE "taggings"
59
+  (0.3ms) DROP TABLE "tag_context"
60
+  (0.1ms) DROP TABLE "tags"
61
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130112031638'
62
+  (63.3ms) commit transaction
63
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
64
+ Connecting to database specified by database.yml
65
+ Connecting to database specified by database.yml
66
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
67
+ Migrating to SimpleTagMigration (20130112152147)
68
+  (0.0ms) select sqlite_version(*)
69
+  (0.0ms) begin transaction
70
+  (0.4ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
71
+  (0.1ms) CREATE TABLE "simple_tag_tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
72
+  (0.1ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
73
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
74
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
75
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
76
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
77
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130112152147')
78
+  (159.0ms) commit transaction
79
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
80
+ Connecting to database specified by database.yml
81
+ Connecting to database specified by database.yml
82
+ Connecting to database specified by database.yml
83
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
84
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
85
+ Migrating to SimpleTagMigration (20130112152147)
86
+  (0.0ms) select sqlite_version(*)
87
+  (0.0ms) begin transaction
88
+  (0.5ms) DROP TABLE "simple_tag_taggings"
89
+  (0.3ms) DROP TABLE "simple_tag_tag_context"
90
+  (0.1ms) DROP TABLE "simple_tag_tags"
91
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130112152147'
92
+  (59.7ms) commit transaction
93
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
94
+ Connecting to database specified by database.yml
95
+ Connecting to database specified by database.yml
96
+ Connecting to database specified by database.yml
97
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
98
+ Migrating to SimpleTagMigration (20130112152401)
99
+  (0.0ms) select sqlite_version(*)
100
+  (0.0ms) begin transaction
101
+  (0.4ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
102
+  (0.1ms) CREATE TABLE "tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
103
+  (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
104
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
105
+  (0.1ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
106
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
107
+  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
108
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130112152401')
109
+  (54.5ms) commit transaction
110
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
111
+ Connecting to database specified by database.yml
112
+ Connecting to database specified by database.yml
113
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
114
+  (0.2ms) select sqlite_version(*)
115
+  (2.5ms) CREATE TABLE "tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
116
+  (2.8ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
117
+  (2.8ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
118
+  (2.8ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
119
+  (2.6ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
120
+  (2.7ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
121
+  (2.7ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
122
+  (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
123
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
124
+  (0.1ms) SELECT version FROM "schema_migrations"
125
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20130112152401')
126
+ Connecting to database specified by database.yml
127
+ Connecting to database specified by database.yml
128
+ Connecting to database specified by database.yml
129
+ Connecting to database specified by database.yml
130
+  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
131
+ Migrating to SimpleTagMigration (20130112152401)
132
+ Migrating to CreateUsers (20130113020203)
133
+  (0.1ms) select sqlite_version(*)
134
+  (0.1ms) begin transaction
135
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
136
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020203')
137
+  (64.5ms) commit transaction
138
+ Migrating to CreatePosts (20130113020210)
139
+  (0.1ms) begin transaction
140
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
141
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020210')
142
+  (3.3ms) commit transaction
143
+ Migrating to CreateComments (20130113020220)
144
+  (0.1ms) begin transaction
145
+  (0.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
146
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020220')
147
+  (3.6ms) commit transaction
148
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
149
+ Connecting to database specified by database.yml
150
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
151
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
152
+ Migrating to CreateComments (20130113020220)
153
+  (0.0ms) select sqlite_version(*)
154
+  (0.0ms) begin transaction
155
+  (0.6ms) DROP TABLE "comments"
156
+  (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130113020220'
157
+  (3.2ms) commit transaction
158
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
159
+ Connecting to database specified by database.yml
160
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
161
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
162
+ Migrating to CreatePosts (20130113020210)
163
+  (0.1ms) select sqlite_version(*)
164
+  (0.0ms) begin transaction
165
+  (0.4ms) DROP TABLE "posts"
166
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130113020210'
167
+  (57.8ms) commit transaction
168
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
169
+ Connecting to database specified by database.yml
170
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
171
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
172
+ Migrating to CreateUsers (20130113020203)
173
+  (0.0ms) select sqlite_version(*)
174
+  (0.0ms) begin transaction
175
+  (0.4ms) DROP TABLE "users"
176
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130113020203'
177
+  (57.3ms) commit transaction
178
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
179
+ Connecting to database specified by database.yml
180
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
181
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
182
+ Migrating to SimpleTagMigration (20130112152401)
183
+  (0.0ms) select sqlite_version(*)
184
+  (0.0ms) begin transaction
185
+  (0.5ms) DROP TABLE "taggings"
186
+  (0.3ms) DROP TABLE "tag_context"
187
+  (0.1ms) DROP TABLE "tags"
188
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130112152401'
189
+  (54.4ms) commit transaction
190
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
191
+ Connecting to database specified by database.yml
192
+ Connecting to database specified by database.yml
193
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
194
+ Migrating to CreateUsers (20130113020203)
195
+  (0.0ms) select sqlite_version(*)
196
+  (0.0ms) begin transaction
197
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
198
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020203')
199
+  (56.1ms) commit transaction
200
+ Migrating to CreatePosts (20130113020210)
201
+  (0.1ms) begin transaction
202
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
203
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020210')
204
+  (3.8ms) commit transaction
205
+ Migrating to CreateComments (20130113020220)
206
+  (0.1ms) begin transaction
207
+  (0.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
208
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020220')
209
+  (3.8ms) commit transaction
210
+ Migrating to SimpleTagMigration (20130113020310)
211
+  (0.1ms) begin transaction
212
+  (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
213
+  (0.1ms) CREATE TABLE "tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
214
+  (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
215
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
216
+  (0.1ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
217
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
218
+  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
219
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020310')
220
+  (3.4ms) commit transaction
221
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
222
+ Connecting to database specified by database.yml
223
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
224
+  (0.2ms) select sqlite_version(*)
225
+  (36.0ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
226
+  (3.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
227
+  (12.4ms) CREATE TABLE "tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
228
+  (3.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
229
+  (3.1ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
230
+  (3.0ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
231
+  (2.9ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
232
+  (2.9ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
233
+  (2.7ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
234
+  (2.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
235
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
236
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
237
+  (0.1ms) SELECT version FROM "schema_migrations"
238
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020310')
239
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
240
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
241
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
242
+ Connecting to database specified by database.yml
243
+ Connecting to database specified by database.yml
244
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
245
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
246
+ Migrating to SimpleTagMigration (20130113020310)
247
+  (0.0ms) select sqlite_version(*)
248
+  (0.0ms) begin transaction
249
+  (0.5ms) DROP TABLE "taggings"
250
+  (0.3ms) DROP TABLE "tag_context"
251
+  (0.1ms) DROP TABLE "tags"
252
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130113020310'
253
+  (60.6ms) commit transaction
254
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
255
+ Connecting to database specified by database.yml
256
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
257
+ Migrating to CreateUsers (20130113020203)
258
+ Migrating to CreatePosts (20130113020210)
259
+ Migrating to CreateComments (20130113020220)
260
+ Migrating to SimpleTagMigration (20130113020310)
261
+  (0.1ms) select sqlite_version(*)
262
+  (0.1ms) begin transaction
263
+  (0.5ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
264
+  (0.1ms) CREATE TABLE "tag_context" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
265
+  (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
266
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
267
+  (0.1ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
268
+  (0.2ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
269
+  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
270
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020310')
271
+  (55.7ms) commit transaction
272
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
273
+ Connecting to database specified by database.yml
274
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
275
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
276
+ Migrating to SimpleTagMigration (20130113020310)
277
+  (0.0ms) select sqlite_version(*)
278
+  (0.0ms) begin transaction
279
+  (0.5ms) DROP TABLE "taggings"
280
+  (0.3ms) DROP TABLE "tag_context"
281
+  (0.1ms) DROP TABLE "tags"
282
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130113020310'
283
+  (53.3ms) commit transaction
284
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
285
+ Connecting to database specified by database.yml
286
+ Connecting to database specified by database.yml
287
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
288
+ Migrating to CreateUsers (20130113020203)
289
+ Migrating to CreatePosts (20130113020210)
290
+ Migrating to CreateComments (20130113020220)
291
+ Migrating to SimpleTagMigration (20130113033722)
292
+  (0.0ms) select sqlite_version(*)
293
+  (0.0ms) begin transaction
294
+  (0.8ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
295
+  (0.1ms) CREATE TABLE "tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
296
+  (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
297
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
298
+  (0.1ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
299
+  (0.1ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
300
+  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
301
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113033722')
302
+  (56.6ms) commit transaction
303
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
304
+ Connecting to database specified by database.yml
305
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
306
+  (0.2ms) select sqlite_version(*)
307
+  (59.3ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
308
+  (45.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
309
+  (3.6ms) CREATE TABLE "tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
310
+  (2.9ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
311
+  (3.0ms) CREATE INDEX "index_taggings_on_tag_context_id" ON "taggings" ("tag_context_id")
312
+  (2.9ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")
313
+  (3.0ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type" ON "taggings" ("taggable_id", "taggable_type")
314
+  (2.8ms) CREATE INDEX "index_taggings_on_tagger_id" ON "taggings" ("tagger_id")
315
+  (2.8ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
316
+  (2.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
317
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
318
+  (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
319
+  (0.1ms) SELECT version FROM "schema_migrations"
320
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113033722')
321
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
322
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
323
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
324
+ Connecting to database specified by database.yml
325
+ Connecting to database specified by database.yml
326
+ Connecting to database specified by database.yml
327
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
328
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
329
+ Migrating to SimpleTagMigration (20130113033722)
330
+  (0.0ms) select sqlite_version(*)
331
+  (0.0ms) begin transaction
332
+  (0.6ms) DROP TABLE "taggings"
333
+  (0.2ms) DROP TABLE "tag_context"
334
+ SQLite3::SQLException: no such table: tag_context: DROP TABLE "tag_context"
335
+  (2.2ms) rollback transaction
336
+ Connecting to database specified by database.yml
337
+  (0.1ms) select sqlite_version(*)
338
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
339
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
340
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
341
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
342
+ Connecting to database specified by database.yml
343
+  (0.1ms) SELECT version FROM schema_migrations
344
+ Connecting to database specified by database.yml
345
+ Connecting to database specified by database.yml
346
+  (0.1ms) SELECT version FROM schema_migrations
347
+ Connecting to database specified by database.yml
348
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
349
+ Migrating to CreateUsers (20130113020203)
350
+  (0.0ms) select sqlite_version(*)
351
+  (0.0ms) begin transaction
352
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
353
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020203')
354
+  (3.0ms) commit transaction
355
+ Migrating to CreatePosts (20130113020210)
356
+  (0.1ms) begin transaction
357
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
358
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020210')
359
+  (3.0ms) commit transaction
360
+ Migrating to CreateComments (20130113020220)
361
+  (0.1ms) begin transaction
362
+  (0.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
363
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020220')
364
+  (3.4ms) commit transaction
365
+ Migrating to SimpleTagMigration (20130113063142)
366
+  (0.1ms) begin transaction
367
+  (0.5ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
368
+  (0.2ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
369
+  (0.2ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
370
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
371
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
372
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
373
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
374
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113063142')
375
+  (3.1ms) commit transaction
376
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
377
+ Connecting to database specified by database.yml
378
+  (0.1ms) SELECT version FROM schema_migrations
379
+ Connecting to database specified by database.yml
380
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
381
+  (0.2ms) select sqlite_version(*)
382
+  (53.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
383
+  (3.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
384
+  (3.1ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
385
+  (3.1ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
386
+  (3.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
387
+  (4.6ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
388
+  (3.2ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
389
+  (2.7ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
390
+  (2.6ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
391
+  (3.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
392
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
393
+  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
394
+  (0.1ms) SELECT version FROM "schema_migrations"
395
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
396
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
397
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
398
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
399
+ Connecting to database specified by database.yml
400
+ Connecting to database specified by database.yml
401
+  (0.1ms) SELECT version FROM schema_migrations
402
+ Connecting to database specified by database.yml
403
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
404
+  (0.3ms) select sqlite_version(*)
405
+  (50.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
406
+  (3.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
407
+  (3.1ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
408
+  (2.9ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
409
+  (34.4ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
410
+  (3.7ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
411
+  (3.1ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
412
+  (3.3ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
413
+  (3.1ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
414
+  (2.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
415
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
416
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
417
+  (0.1ms) SELECT version FROM "schema_migrations"
418
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
419
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
420
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
421
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
422
+ Connecting to database specified by database.yml
423
+ Connecting to database specified by database.yml
424
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
425
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
426
+ Migrating to SimpleTagMigration (20130113063142)
427
+  (0.0ms) select sqlite_version(*)
428
+  (0.0ms) begin transaction
429
+  (0.5ms) DROP TABLE "simple_tag_taggings"
430
+  (0.2ms) DROP TABLE "simple_tag_tag_context"
431
+ SQLite3::SQLException: no such table: simple_tag_tag_context: DROP TABLE "simple_tag_tag_context"
432
+  (2.4ms) rollback transaction
433
+ Connecting to database specified by database.yml
434
+  (1.9ms) select sqlite_version(*)
435
+  (56.9ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
436
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
437
+  (3.2ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
438
+  (2.8ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime) 
439
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
440
+  (3.2ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
441
+  (2.7ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
442
+  (3.1ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
443
+  (4.0ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
444
+  (2.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
445
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
446
+  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
447
+  (0.1ms) SELECT version FROM "schema_migrations"
448
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
449
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
450
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
451
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
452
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
453
+ Connecting to database specified by database.yml
454
+ Connecting to database specified by database.yml
455
+ Connecting to database specified by database.yml
456
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
457
+  (0.3ms) select sqlite_version(*)
458
+  (52.9ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
459
+  (3.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
460
+  (3.0ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
461
+  (3.0ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
462
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
463
+  (3.2ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
464
+  (2.7ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
465
+  (3.1ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
466
+  (4.3ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
467
+  (2.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
468
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
469
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
470
+  (0.1ms) SELECT version FROM "schema_migrations"
471
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
472
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
473
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
474
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
475
+ Connecting to database specified by database.yml
476
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from irb_binding at (irb):5)
477
+ Connecting to database specified by database.yml
478
+  (1.9ms) select sqlite_version(*)
479
+  (2.3ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
480
+  (2.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
481
+  (2.9ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
482
+  (3.0ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime) 
483
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
484
+  (2.7ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
485
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
486
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
487
+  (2.7ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
488
+  (2.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
489
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
490
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
491
+  (0.1ms) SELECT version FROM "schema_migrations"
492
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
493
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
494
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
495
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
496
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
497
+ Connecting to database specified by database.yml
498
+  (1.8ms) select sqlite_version(*)
499
+  (54.5ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
500
+  (3.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
501
+  (3.1ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
502
+  (3.4ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime) 
503
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
504
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
505
+  (3.1ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
506
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
507
+  (2.5ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
508
+  (2.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
509
+  (3.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
510
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
511
+  (0.1ms) SELECT version FROM "schema_migrations"
512
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
513
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
514
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
515
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
516
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
517
+ Connecting to database specified by database.yml
518
+ Connecting to database specified by database.yml
519
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
520
+  (0.2ms) select sqlite_version(*)
521
+  (57.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
522
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
523
+  (3.4ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
524
+  (2.9ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime)
525
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
526
+  (4.3ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
527
+  (2.7ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
528
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
529
+  (2.7ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
530
+  (3.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
531
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
532
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
533
+  (0.1ms) SELECT version FROM "schema_migrations"
534
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
535
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
536
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
537
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
538
+ Connecting to database specified by database.yml
539
+ Connecting to database specified by database.yml
540
+ Connecting to database specified by database.yml
541
+ SQLite3::SQLException: no such column: taggings.tag_context: SELECT "simple_tag_tags".* FROM "simple_tag_tags" INNER JOIN "simple_tag_taggings" ON "simple_tag_taggings"."tag_id" = "simple_tag_tags"."id" WHERE (taggings.tag_context = 'ruby')
542
+ SQLite3::SQLException: no such column: taggings.tag_context_id: SELECT "simple_tag_tags".* FROM "simple_tag_tags" INNER JOIN "simple_tag_taggings" ON "simple_tag_taggings"."tag_id" = "simple_tag_tags"."id" WHERE (taggings.tag_context_id = 1)
543
+ Connecting to database specified by database.yml
544
+ Connecting to database specified by database.yml
545
+ Connecting to database specified by database.yml
546
+ Connecting to database specified by database.yml
547
+ Connecting to database specified by database.yml
548
+ Connecting to database specified by database.yml
549
+ Connecting to database specified by database.yml
550
+ Connecting to database specified by database.yml
551
+ Connecting to database specified by database.yml
552
+ Connecting to database specified by database.yml
553
+ Connecting to database specified by database.yml
554
+  (18.5ms) select sqlite_version(*)
555
+  (2.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
556
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
557
+  (2.7ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
558
+  (2.6ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime) 
559
+  (2.6ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
560
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
561
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
562
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
563
+  (2.7ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
564
+  (2.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
565
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
566
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
567
+  (0.1ms) SELECT version FROM "schema_migrations"
568
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113063142')
569
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
570
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
571
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
572
+  (28.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
573
+ Connecting to database specified by database.yml
574
+  (0.1ms) SELECT version FROM schema_migrations
575
+ Connecting to database specified by database.yml
576
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
577
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
578
+ Migrating to SimpleTagMigration (20130113063142)
579
+  (0.0ms) select sqlite_version(*)
580
+  (0.1ms) begin transaction
581
+  (7.4ms) DROP TABLE "simple_tag_taggings"
582
+  (0.2ms) DROP TABLE "simple_tag_tag_context"
583
+ SQLite3::SQLException: no such table: simple_tag_tag_context: DROP TABLE "simple_tag_tag_context"
584
+  (1.0ms) rollback transaction
585
+ Connecting to database specified by database.yml
586
+ Connecting to database specified by database.yml
587
+  (0.1ms) select sqlite_version(*)
588
+  (59.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
589
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
590
+  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
591
+ Migrating to CreateUsers (20130113020203)
592
+  (0.1ms) begin transaction
593
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
594
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020203')
595
+  (4.5ms) commit transaction
596
+ Migrating to CreatePosts (20130113020210)
597
+  (0.1ms) begin transaction
598
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
599
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020210')
600
+  (3.3ms) commit transaction
601
+ Migrating to CreateComments (20130113020220)
602
+  (0.1ms) begin transaction
603
+  (0.5ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
604
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020220')
605
+  (3.3ms) commit transaction
606
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
607
+ Connecting to database specified by database.yml
608
+ Connecting to database specified by database.yml
609
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
610
+ Migrating to CreateUsers (20130113020203)
611
+ Migrating to CreatePosts (20130113020210)
612
+ Migrating to CreateComments (20130113020220)
613
+ Migrating to SimpleTagMigration (20130114150014)
614
+  (0.0ms) select sqlite_version(*)
615
+  (0.1ms) begin transaction
616
+  (0.4ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
617
+  (0.1ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
618
+  (0.1ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
619
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
620
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
621
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
622
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
623
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130114150014')
624
+  (53.9ms) commit transaction
625
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
626
+ Connecting to database specified by database.yml
627
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
628
+  (0.2ms) select sqlite_version(*)
629
+  (59.6ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
630
+  (3.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
631
+  (2.9ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
632
+  (3.0ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
633
+  (3.4ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
634
+  (3.8ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
635
+  (3.0ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
636
+  (2.6ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
637
+  (3.7ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
638
+  (3.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
639
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
640
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
641
+  (0.1ms) SELECT version FROM "schema_migrations"
642
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130114150014')
643
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
644
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
645
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
646
+ Connecting to database specified by database.yml
647
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
648
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
649
+ Migrating to SimpleTagMigration (20130114150014)
650
+  (0.0ms) select sqlite_version(*)
651
+  (0.0ms) begin transaction
652
+  (0.3ms) DROP INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type"
653
+  (0.2ms) DROP INDEX "index_simple_tag_taggings_on_tag_context_id"
654
+  (0.1ms) DROP INDEX "index_simple_tag_taggings_on_tagger_id"
655
+  (0.1ms) DROP INDEX "index_simple_tag_taggings_on_tag_id"
656
+  (0.1ms) DROP TABLE "simple_tag_taggings"
657
+  (0.1ms) DROP TABLE "simple_tag_tag_contexts"
658
+  (0.1ms) DROP TABLE "simple_tag_tags"
659
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130114150014'
660
+  (3.5ms) commit transaction
661
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
662
+ Connecting to database specified by database.yml
663
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
664
+ Migrating to CreateUsers (20130113020203)
665
+ Migrating to CreatePosts (20130113020210)
666
+ Migrating to CreateComments (20130113020220)
667
+ Migrating to SimpleTagMigration (20130114150014)
668
+  (0.0ms) select sqlite_version(*)
669
+  (0.0ms) begin transaction
670
+  (0.4ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
671
+  (0.1ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
672
+  (0.1ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
673
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
674
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
675
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
676
+  (0.1ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
677
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130114150014')
678
+  (61.1ms) commit transaction
679
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
680
+ Connecting to database specified by database.yml
681
+ Connecting to database specified by database.yml
682
+ Connecting to database specified by database.yml
683
+ Connecting to database specified by database.yml
684
+ Connecting to database specified by database.yml
685
+ Connecting to database specified by database.yml
686
+ Connecting to database specified by database.yml
687
+ Connecting to database specified by database.yml
688
+ Connecting to database specified by database.yml
689
+ Connecting to database specified by database.yml
690
+ Connecting to database specified by database.yml
691
+ Connecting to database specified by database.yml
692
+ Connecting to database specified by database.yml
693
+ Connecting to database specified by database.yml
694
+ Connecting to database specified by database.yml
695
+ Connecting to database specified by database.yml
696
+  (16.4ms) select sqlite_version(*)
697
+  (2.8ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
698
+  (2.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
699
+  (3.0ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
700
+  (2.9ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
701
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
702
+  (2.8ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
703
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
704
+  (20.0ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
705
+  (3.4ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
706
+  (2.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
707
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
708
+  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
709
+  (0.2ms) SELECT version FROM "schema_migrations"
710
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130114150014')
711
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
712
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
713
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
714
+  (18.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
715
+ Connecting to database specified by database.yml
716
+  (1.8ms) select sqlite_version(*)
717
+  (56.8ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
718
+  (3.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
719
+  (2.9ms) CREATE TABLE "simple_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
720
+  (3.5ms) CREATE TABLE "simple_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
721
+  (83.3ms) CREATE INDEX "index_simple_tag_taggings_on_tag_context_id" ON "simple_tag_taggings" ("tag_context_id")
722
+  (3.7ms) CREATE INDEX "index_simple_tag_taggings_on_tag_id" ON "simple_tag_taggings" ("tag_id")
723
+  (3.1ms) CREATE INDEX "index_simple_tag_taggings_on_taggable_id_and_taggable_type" ON "simple_tag_taggings" ("taggable_id", "taggable_type")
724
+  (2.9ms) CREATE INDEX "index_simple_tag_taggings_on_tagger_id" ON "simple_tag_taggings" ("tagger_id")
725
+  (2.8ms) CREATE TABLE "simple_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
726
+  (3.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
727
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
728
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
+  (0.1ms) SELECT version FROM "schema_migrations"
730
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130114150014')
731
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
732
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
733
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
734
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
735
+ Connecting to database specified by database.yml
736
+  (0.1ms) select sqlite_version(*)
737
+  (50.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
738
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
739
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
740
+ Migrating to CreateUsers (20130113020203)
741
+  (0.1ms) begin transaction
742
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
743
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020203')
744
+  (3.8ms) commit transaction
745
+ Migrating to CreatePosts (20130113020210)
746
+  (0.1ms) begin transaction
747
+  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
748
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020210')
749
+  (4.2ms) commit transaction
750
+ Migrating to CreateComments (20130113020220)
751
+  (0.1ms) begin transaction
752
+  (0.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
753
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130113020220')
754
+  (2.9ms) commit transaction
755
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
756
+ Connecting to database specified by database.yml
757
+ Connecting to database specified by database.yml
758
+  (162.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
759
+ Migrating to CreateUsers (20130113020203)
760
+ Migrating to CreatePosts (20130113020210)
761
+ Migrating to CreateComments (20130113020220)
762
+ Migrating to EasyTagMigration (20130117032413)
763
+  (0.1ms) select sqlite_version(*)
764
+  (0.1ms) begin transaction
765
+  (0.4ms) CREATE TABLE "easy_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
766
+  (0.1ms) CREATE TABLE "easy_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
767
+  (0.2ms) CREATE TABLE "easy_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
768
+  (0.2ms) CREATE INDEX "index_easy_tag_taggings_on_tag_id" ON "easy_tag_taggings" ("tag_id")
769
+  (0.2ms) CREATE INDEX "index_easy_tag_taggings_on_tagger_id" ON "easy_tag_taggings" ("tagger_id")
770
+  (0.1ms) CREATE INDEX "index_easy_tag_taggings_on_tag_context_id" ON "easy_tag_taggings" ("tag_context_id")
771
+  (0.1ms) CREATE INDEX "index_easy_tag_taggings_on_taggable_id_and_taggable_type" ON "easy_tag_taggings" ("taggable_id", "taggable_type")
772
+  (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130117032413')
773
+  (3.3ms) commit transaction
774
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
775
+ Connecting to database specified by database.yml
776
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
777
+  (0.2ms) select sqlite_version(*)
778
+  (2.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
779
+  (2.7ms) CREATE TABLE "easy_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
780
+  (2.8ms) CREATE TABLE "easy_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
781
+  (2.9ms) CREATE INDEX "index_easy_tag_taggings_on_tag_context_id" ON "easy_tag_taggings" ("tag_context_id")
782
+  (2.8ms) CREATE INDEX "index_easy_tag_taggings_on_tag_id" ON "easy_tag_taggings" ("tag_id")
783
+  (2.7ms) CREATE INDEX "index_easy_tag_taggings_on_taggable_id_and_taggable_type" ON "easy_tag_taggings" ("taggable_id", "taggable_type")
784
+  (4.6ms) CREATE INDEX "index_easy_tag_taggings_on_tagger_id" ON "easy_tag_taggings" ("tagger_id")
785
+  (2.9ms) CREATE TABLE "easy_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
786
+  (2.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
787
+  (2.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
788
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
789
+  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
790
+  (0.1ms) SELECT version FROM "schema_migrations"
791
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130117032413')
792
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
793
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
794
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
795
+ Connecting to database specified by database.yml
796
+  (0.7ms) SELECT version FROM schema_migrations
797
+  (2.8ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
798
+  (2.9ms) CREATE TABLE "easy_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
799
+  (2.8ms) CREATE TABLE "easy_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
800
+  (2.7ms) CREATE INDEX "index_easy_tag_taggings_on_tag_context_id" ON "easy_tag_taggings" ("tag_context_id")
801
+  (2.9ms) CREATE INDEX "index_easy_tag_taggings_on_tag_id" ON "easy_tag_taggings" ("tag_id")
802
+  (2.9ms) CREATE INDEX "index_easy_tag_taggings_on_taggable_id_and_taggable_type" ON "easy_tag_taggings" ("taggable_id", "taggable_type")
803
+  (2.8ms) CREATE INDEX "index_easy_tag_taggings_on_tagger_id" ON "easy_tag_taggings" ("tagger_id")
804
+  (2.8ms) CREATE TABLE "easy_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
805
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
806
+  (2.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
807
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
808
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
809
+  (0.2ms) SELECT version FROM "schema_migrations"
810
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130117032413')
811
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
812
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
813
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
814
+  (2.8ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
815
+  (2.5ms) CREATE TABLE "easy_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
816
+  (2.9ms) CREATE TABLE "easy_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
817
+  (2.9ms) CREATE INDEX "index_easy_tag_taggings_on_tag_context_id" ON "easy_tag_taggings" ("tag_context_id")
818
+  (3.2ms) CREATE INDEX "index_easy_tag_taggings_on_tag_id" ON "easy_tag_taggings" ("tag_id")
819
+  (2.8ms) CREATE INDEX "index_easy_tag_taggings_on_taggable_id_and_taggable_type" ON "easy_tag_taggings" ("taggable_id", "taggable_type")
820
+  (2.8ms) CREATE INDEX "index_easy_tag_taggings_on_tagger_id" ON "easy_tag_taggings" ("tagger_id")
821
+  (2.9ms) CREATE TABLE "easy_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
822
+  (3.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
823
+  (2.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
824
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
825
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
826
+  (0.1ms) SELECT version FROM "schema_migrations"
827
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130117032413')
828
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
829
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
830
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')
831
+  (49.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
832
+  (3.2ms) CREATE TABLE "easy_tag_tag_contexts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
833
+  (3.2ms) CREATE TABLE "easy_tag_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "tag_context_id" integer, "tagger_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
834
+  (3.0ms) CREATE INDEX "index_easy_tag_taggings_on_tag_context_id" ON "easy_tag_taggings" ("tag_context_id")
835
+  (2.9ms) CREATE INDEX "index_easy_tag_taggings_on_tag_id" ON "easy_tag_taggings" ("tag_id")
836
+  (2.8ms) CREATE INDEX "index_easy_tag_taggings_on_taggable_id_and_taggable_type" ON "easy_tag_taggings" ("taggable_id", "taggable_type")
837
+  (2.6ms) CREATE INDEX "index_easy_tag_taggings_on_tagger_id" ON "easy_tag_taggings" ("tagger_id")
838
+  (2.8ms) CREATE TABLE "easy_tag_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
839
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
840
+  (2.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
841
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
842
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
843
+  (0.1ms) SELECT version FROM "schema_migrations"
844
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130117032413')
845
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020203')
846
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020210')
847
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130113020220')