clearance 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of clearance might be problematic. Click here for more details.

Files changed (133) hide show
  1. data/CHANGELOG.md +6 -0
  2. data/README.md +15 -4
  3. data/VERSION +1 -1
  4. data/app/controllers/clearance/passwords_controller.rb +14 -6
  5. data/lib/clearance.rb +0 -3
  6. data/lib/clearance/shoulda_macros.rb +1 -176
  7. data/lib/rails/generators/clearance_features_templates/features/password_reset.feature +4 -3
  8. data/lib/rails/generators/clearance_features_templates/features/sign_in.feature +3 -2
  9. data/lib/rails/generators/clearance_features_templates/features/sign_out.feature +4 -3
  10. data/lib/rails/generators/clearance_features_templates/features/sign_up.feature +3 -2
  11. data/lib/rails/generators/clearance_features_templates/features/step_definitions/clearance_steps.rb +2 -10
  12. data/spec/rails_root/Gemfile.lock +143 -0
  13. data/spec/rails_root/app/views/passwords/edit.html.erb +21 -0
  14. data/spec/rails_root/app/views/passwords/new.html.erb +15 -0
  15. data/spec/rails_root/app/views/sessions/new.html.erb +21 -0
  16. data/spec/rails_root/app/views/users/_inputs.html.erb +6 -0
  17. data/spec/rails_root/app/views/users/new.html.erb +10 -0
  18. data/spec/rails_root/db/development.sqlite3 +0 -0
  19. data/spec/rails_root/db/migrate/20110209234521_clearance_create_users.rb +19 -0
  20. data/spec/rails_root/db/schema.rb +28 -0
  21. data/spec/rails_root/db/test.sqlite3 +0 -0
  22. data/spec/rails_root/features/password_reset.feature +40 -0
  23. data/spec/rails_root/features/sign_in.feature +28 -0
  24. data/spec/rails_root/features/sign_out.feature +16 -0
  25. data/spec/rails_root/features/sign_up.feature +21 -0
  26. data/spec/rails_root/features/step_definitions/clearance_steps.rb +109 -0
  27. data/spec/rails_root/log/development.log +536 -0
  28. data/spec/rails_root/log/test.log +7600 -0
  29. data/spec/rails_root/test/factories/clearance.rb +13 -0
  30. data/spec/rails_root/test/functional/accounts_controller_test.rb +22 -0
  31. data/spec/rails_root/test/performance/browsing_test.rb +9 -0
  32. data/spec/rails_root/test/test_helper.rb +13 -0
  33. data/spec/rails_root/vendor/Gemfile +17 -0
  34. data/spec/rails_root/vendor/Gemfile.lock +143 -0
  35. data/spec/rails_root/vendor/README +244 -0
  36. data/spec/rails_root/vendor/Rakefile +10 -0
  37. data/spec/rails_root/vendor/app/controllers/accounts_controller.rb +10 -0
  38. data/spec/rails_root/vendor/app/controllers/application_controller.rb +6 -0
  39. data/spec/rails_root/vendor/app/helpers/application_helper.rb +2 -0
  40. data/spec/rails_root/vendor/app/models/user.rb +3 -0
  41. data/spec/rails_root/vendor/app/views/accounts/edit.html.erb +0 -0
  42. data/spec/rails_root/vendor/app/views/layouts/application.html.erb +24 -0
  43. data/spec/rails_root/vendor/app/views/passwords/edit.html.erb +21 -0
  44. data/spec/rails_root/vendor/app/views/passwords/new.html.erb +15 -0
  45. data/spec/rails_root/vendor/app/views/sessions/new.html.erb +21 -0
  46. data/spec/rails_root/vendor/app/views/users/_inputs.html.erb +6 -0
  47. data/spec/rails_root/vendor/app/views/users/new.html.erb +10 -0
  48. data/spec/rails_root/vendor/config.ru +4 -0
  49. data/spec/rails_root/vendor/config/application.rb +46 -0
  50. data/spec/rails_root/vendor/config/boot.rb +6 -0
  51. data/spec/rails_root/vendor/config/cucumber.yml +8 -0
  52. data/spec/rails_root/vendor/config/database.yml +25 -0
  53. data/spec/rails_root/vendor/config/environment.rb +7 -0
  54. data/spec/rails_root/vendor/config/environments/development.rb +21 -0
  55. data/spec/rails_root/vendor/config/environments/production.rb +42 -0
  56. data/spec/rails_root/vendor/config/environments/test.rb +34 -0
  57. data/spec/rails_root/vendor/config/initializers/backtrace_silencers.rb +7 -0
  58. data/spec/rails_root/vendor/config/initializers/clearance.rb +3 -0
  59. data/spec/rails_root/vendor/config/initializers/inflections.rb +10 -0
  60. data/spec/rails_root/vendor/config/initializers/mime_types.rb +5 -0
  61. data/spec/rails_root/vendor/config/initializers/secret_token.rb +7 -0
  62. data/spec/rails_root/vendor/config/initializers/session_store.rb +8 -0
  63. data/spec/rails_root/vendor/config/locales/en.yml +5 -0
  64. data/spec/rails_root/vendor/config/routes.rb +61 -0
  65. data/spec/rails_root/vendor/db/development.sqlite3 +0 -0
  66. data/spec/rails_root/vendor/db/migrate/20101220184900_clearance_create_users.rb +20 -0
  67. data/spec/rails_root/vendor/db/schema.rb +29 -0
  68. data/spec/rails_root/vendor/db/test.sqlite3 +0 -0
  69. data/spec/rails_root/vendor/doc/README_FOR_APP +2 -0
  70. data/spec/rails_root/vendor/features/password_reset.feature +33 -0
  71. data/spec/rails_root/vendor/features/sign_in.feature +35 -0
  72. data/spec/rails_root/vendor/features/sign_out.feature +15 -0
  73. data/spec/rails_root/vendor/features/sign_up.feature +45 -0
  74. data/spec/rails_root/vendor/features/step_definitions/clearance_steps.rb +138 -0
  75. data/spec/rails_root/vendor/features/step_definitions/web_steps.rb +219 -0
  76. data/spec/rails_root/vendor/features/support/env.rb +57 -0
  77. data/spec/rails_root/vendor/features/support/paths.rb +45 -0
  78. data/spec/rails_root/vendor/lib/tasks/cucumber.rake +53 -0
  79. data/spec/rails_root/vendor/log/development.log +663 -0
  80. data/spec/rails_root/vendor/log/test.log +22745 -0
  81. data/spec/rails_root/vendor/public/404.html +26 -0
  82. data/spec/rails_root/vendor/public/422.html +26 -0
  83. data/spec/rails_root/vendor/public/500.html +26 -0
  84. data/spec/rails_root/vendor/public/favicon.ico +0 -0
  85. data/spec/rails_root/vendor/public/images/rails.png +0 -0
  86. data/spec/rails_root/vendor/public/javascripts/application.js +2 -0
  87. data/spec/rails_root/vendor/public/javascripts/controls.js +965 -0
  88. data/spec/rails_root/vendor/public/javascripts/dragdrop.js +974 -0
  89. data/spec/rails_root/vendor/public/javascripts/effects.js +1123 -0
  90. data/spec/rails_root/vendor/public/javascripts/prototype.js +4874 -0
  91. data/spec/rails_root/vendor/public/javascripts/rails.js +118 -0
  92. data/spec/rails_root/vendor/public/robots.txt +5 -0
  93. data/spec/rails_root/vendor/script/cucumber +10 -0
  94. data/spec/rails_root/vendor/script/rails +9 -0
  95. data/spec/rails_root/vendor/test/factories/clearance.rb +13 -0
  96. data/spec/rails_root/vendor/test/functional/accounts_controller_test.rb +22 -0
  97. data/spec/rails_root/vendor/test/performance/browsing_test.rb +9 -0
  98. data/spec/rails_root/vendor/test/test_helper.rb +13 -0
  99. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/MIT-LICENSE +20 -0
  100. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/README +13 -0
  101. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/Rakefile +10 -0
  102. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/init.rb +5 -0
  103. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb +300 -0
  104. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml +8 -0
  105. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb +42 -0
  106. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/test/dynamic_form_test.rb +370 -0
  107. data/spec/rails_root/vendor/vendor/plugins/dynamic_form/test/test_helper.rb +9 -0
  108. data/test/controllers/passwords_controller_test.rb +19 -0
  109. data/test/models/clearance_mailer_test.rb +1 -1
  110. data/test/rails_root/Gemfile.lock +145 -0
  111. data/test/rails_root/app/views/passwords/edit.html.erb +21 -0
  112. data/test/rails_root/app/views/passwords/new.html.erb +15 -0
  113. data/test/rails_root/app/views/sessions/new.html.erb +21 -0
  114. data/test/rails_root/app/views/users/_inputs.html.erb +6 -0
  115. data/test/rails_root/app/views/users/new.html.erb +10 -0
  116. data/test/rails_root/db/development.sqlite3 +0 -0
  117. data/test/rails_root/db/migrate/20110209234101_clearance_create_users.rb +19 -0
  118. data/test/rails_root/db/schema.rb +28 -0
  119. data/test/rails_root/db/test.sqlite3 +0 -0
  120. data/test/rails_root/features/password_reset.feature +40 -0
  121. data/test/rails_root/features/sign_in.feature +28 -0
  122. data/test/rails_root/features/sign_out.feature +16 -0
  123. data/test/rails_root/features/sign_up.feature +21 -0
  124. data/test/rails_root/features/step_definitions/clearance_steps.rb +109 -0
  125. data/test/rails_root/log/development.log +938 -0
  126. data/test/rails_root/log/test.log +20303 -0
  127. data/test/test_helper.rb +1 -0
  128. metadata +263 -42
  129. data/clearance.gemspec +0 -198
  130. data/cucumber.yml +0 -4
  131. data/init.rb +0 -1
  132. data/lib/clearance/extensions/errors.rb +0 -6
  133. data/lib/clearance/extensions/rescue.rb +0 -5
@@ -0,0 +1,938 @@
1
+ SQL (5.2ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.1ms) SELECT name
6
+ FROM sqlite_master
7
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
8
+ SQL (0.6ms)  SELECT name
9
+ FROM sqlite_master
10
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
11
+ 
12
+ SQL (0.1ms) select sqlite_version(*)
13
+ SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
14
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
15
+ SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16
+ SQL (0.1ms) SELECT name
17
+ FROM sqlite_master
18
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
19
+ SQL (0.4ms)  SELECT name
20
+ FROM sqlite_master
21
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
22
+ 
23
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
24
+ Migrating to ClearanceCreateUsers (20101219025442)
25
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
26
+ SQL (0.0ms) PRAGMA index_list("users")
27
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
28
+ SQL (0.1ms) PRAGMA index_list("users")
29
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
30
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
31
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101219025442')
32
+ SQL (0.2ms) SELECT name
33
+ FROM sqlite_master
34
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
35
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
36
+ SQL (0.1ms) SELECT name
37
+ FROM sqlite_master
38
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
39
+ SQL (0.1ms) PRAGMA index_list("users")
40
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
41
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
42
+ SQL (0.1ms) SELECT name
43
+ FROM sqlite_master
44
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
45
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
46
+ SQL (0.1ms) select sqlite_version(*)
47
+ SQL (0.2ms)  SELECT name
48
+ FROM sqlite_master
49
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
50
+ 
51
+ SQL (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime)
52
+ SQL (0.1ms) PRAGMA index_list("users")
53
+ SQL (1.0ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
54
+ SQL (0.1ms) PRAGMA index_list("users")
55
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
56
+ SQL (1.3ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
57
+ SQL (0.2ms) SELECT name
58
+ FROM sqlite_master
59
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
60
+ SQL (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
61
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
62
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63
+ SQL (0.2ms) SELECT name
64
+ FROM sqlite_master
65
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
66
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
67
+ SQL (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20101219025442')
68
+ SQL (4.9ms)  SELECT name
69
+ FROM sqlite_master
70
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
71
+ 
72
+ SQL (0.2ms) SELECT name
73
+ FROM sqlite_master
74
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
75
+ SQL (0.7ms)  SELECT name
76
+ FROM sqlite_master
77
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
78
+ 
79
+ SQL (0.1ms) select sqlite_version(*)
80
+ SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
81
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
82
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
+ SQL (0.2ms) SELECT name
84
+ FROM sqlite_master
85
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
86
+ SQL (0.2ms)  SELECT name
87
+ FROM sqlite_master
88
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
89
+ 
90
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
91
+ Migrating to ClearanceCreateUsers (20110116211519)
92
+ SQL (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
93
+ SQL (0.0ms) PRAGMA index_list("users")
94
+ SQL (0.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
95
+ SQL (0.1ms) PRAGMA index_list("users")
96
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
97
+ SQL (0.2ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
98
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110116211519')
99
+ SQL (0.2ms) SELECT name
100
+ FROM sqlite_master
101
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
102
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
103
+ SQL (0.1ms) SELECT name
104
+ FROM sqlite_master
105
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
106
+ SQL (0.1ms) PRAGMA index_list("users")
107
+ SQL (0.0ms) PRAGMA index_info('index_users_on_remember_token')
108
+ SQL (0.0ms) PRAGMA index_info('index_users_on_email')
109
+ SQL (0.2ms) SELECT name
110
+ FROM sqlite_master
111
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
112
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
113
+ SQL (0.3ms) select sqlite_version(*)
114
+ SQL (0.1ms)  SELECT name
115
+ FROM sqlite_master
116
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
117
+ 
118
+ SQL (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
119
+ SQL (0.0ms) PRAGMA index_list("users")
120
+ SQL (1.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
121
+ SQL (0.1ms) PRAGMA index_list("users")
122
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
123
+ SQL (1.3ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
124
+ SQL (0.2ms) SELECT name
125
+ FROM sqlite_master
126
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
127
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
128
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
129
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
130
+ SQL (0.2ms) SELECT name
131
+ FROM sqlite_master
132
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
133
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
134
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110116211519')
135
+ SQL (0.6ms)  SELECT name
136
+ FROM sqlite_master
137
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
138
+ 
139
+ SQL (0.1ms) SELECT name
140
+ FROM sqlite_master
141
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
142
+ SQL (0.6ms)  SELECT name
143
+ FROM sqlite_master
144
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
145
+ 
146
+ SQL (0.1ms) select sqlite_version(*)
147
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
148
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
149
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
150
+ SQL (0.2ms) SELECT name
151
+ FROM sqlite_master
152
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
153
+ SQL (0.2ms)  SELECT name
154
+ FROM sqlite_master
155
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
156
+ 
157
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
158
+ Migrating to ClearanceCreateUsers (20110116211724)
159
+ SQL (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
160
+ SQL (0.1ms) PRAGMA index_list("users")
161
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
162
+ SQL (0.1ms) PRAGMA index_list("users")
163
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
164
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
165
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110116211724')
166
+ SQL (0.2ms) SELECT name
167
+ FROM sqlite_master
168
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
169
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
170
+ SQL (0.3ms) SELECT name
171
+ FROM sqlite_master
172
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
173
+ SQL (0.1ms) PRAGMA index_list("users")
174
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
175
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
176
+ SQL (0.1ms) SELECT name
177
+ FROM sqlite_master
178
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
179
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
180
+ SQL (0.1ms) select sqlite_version(*)
181
+ SQL (0.2ms)  SELECT name
182
+ FROM sqlite_master
183
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
184
+ 
185
+ SQL (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
186
+ SQL (0.1ms) PRAGMA index_list("users")
187
+ SQL (1.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
188
+ SQL (0.1ms) PRAGMA index_list("users")
189
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
190
+ SQL (1.3ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
191
+ SQL (0.2ms) SELECT name
192
+ FROM sqlite_master
193
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
194
+ SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
195
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
196
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
197
+ SQL (0.2ms) SELECT name
198
+ FROM sqlite_master
199
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
200
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
201
+ SQL (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110116211724')
202
+ SQL (0.6ms)  SELECT name
203
+ FROM sqlite_master
204
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
205
+ 
206
+ SQL (0.1ms) SELECT name
207
+ FROM sqlite_master
208
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
209
+ SQL (0.6ms)  SELECT name
210
+ FROM sqlite_master
211
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
212
+ 
213
+ SQL (0.1ms) select sqlite_version(*)
214
+ SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
215
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
216
+ SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
217
+ SQL (0.1ms) SELECT name
218
+ FROM sqlite_master
219
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
220
+ SQL (0.2ms)  SELECT name
221
+ FROM sqlite_master
222
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
223
+ 
224
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
225
+ Migrating to ClearanceCreateUsers (20110116212039)
226
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
227
+ SQL (0.0ms) PRAGMA index_list("users")
228
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
229
+ SQL (0.1ms) PRAGMA index_list("users")
230
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
231
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
232
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110116212039')
233
+ SQL (0.2ms) SELECT name
234
+ FROM sqlite_master
235
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
236
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
237
+ SQL (0.1ms) SELECT name
238
+ FROM sqlite_master
239
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
240
+ SQL (0.1ms) PRAGMA index_list("users")
241
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
242
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
243
+ SQL (0.1ms) SELECT name
244
+ FROM sqlite_master
245
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
246
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
247
+ SQL (0.1ms) select sqlite_version(*)
248
+ SQL (0.2ms)  SELECT name
249
+ FROM sqlite_master
250
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
251
+ 
252
+ SQL (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
253
+ SQL (0.1ms) PRAGMA index_list("users")
254
+ SQL (1.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
255
+ SQL (0.1ms) PRAGMA index_list("users")
256
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
257
+ SQL (1.3ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
258
+ SQL (0.2ms) SELECT name
259
+ FROM sqlite_master
260
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
261
+ SQL (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
262
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
263
+ SQL (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
264
+ SQL (0.2ms) SELECT name
265
+ FROM sqlite_master
266
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
267
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
268
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110116212039')
269
+ SQL (0.7ms)  SELECT name
270
+ FROM sqlite_master
271
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
272
+ 
273
+ SQL (0.1ms) SELECT name
274
+ FROM sqlite_master
275
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
276
+ SQL (0.6ms)  SELECT name
277
+ FROM sqlite_master
278
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
279
+ 
280
+ SQL (0.1ms) select sqlite_version(*)
281
+ SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
282
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
283
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
284
+ SQL (0.2ms) SELECT name
285
+ FROM sqlite_master
286
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
287
+ SQL (0.2ms)  SELECT name
288
+ FROM sqlite_master
289
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
290
+ 
291
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
292
+ Migrating to ClearanceCreateUsers (20110116213053)
293
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
294
+ SQL (0.3ms) PRAGMA index_list("users")
295
+ SQL (0.4ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
296
+ SQL (0.1ms) PRAGMA index_list("users")
297
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
298
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
299
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110116213053')
300
+ SQL (0.2ms) SELECT name
301
+ FROM sqlite_master
302
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
303
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
304
+ SQL (0.1ms) SELECT name
305
+ FROM sqlite_master
306
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
307
+ SQL (0.1ms) PRAGMA index_list("users")
308
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
309
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
310
+ SQL (0.1ms) SELECT name
311
+ FROM sqlite_master
312
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
313
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
314
+ SQL (0.1ms) select sqlite_version(*)
315
+ SQL (0.2ms)  SELECT name
316
+ FROM sqlite_master
317
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
318
+ 
319
+ SQL (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
320
+ SQL (0.1ms) PRAGMA index_list("users")
321
+ SQL (1.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
322
+ SQL (0.1ms) PRAGMA index_list("users")
323
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
324
+ SQL (1.2ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
325
+ SQL (0.2ms) SELECT name
326
+ FROM sqlite_master
327
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
328
+ SQL (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
329
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
330
+ SQL (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
331
+ SQL (0.2ms) SELECT name
332
+ FROM sqlite_master
333
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
334
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
335
+ SQL (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110116213053')
336
+ SQL (2.5ms)  SELECT name
337
+ FROM sqlite_master
338
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
339
+ 
340
+ SQL (0.1ms) SELECT name
341
+ FROM sqlite_master
342
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
343
+ SQL (0.6ms)  SELECT name
344
+ FROM sqlite_master
345
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
346
+ 
347
+ SQL (0.1ms) select sqlite_version(*)
348
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
349
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
350
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
351
+ SQL (0.2ms) SELECT name
352
+ FROM sqlite_master
353
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
+ SQL (0.2ms)  SELECT name
355
+ FROM sqlite_master
356
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
357
+ 
358
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
359
+ Migrating to ClearanceCreateUsers (20110119235156)
360
+ SQL (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
361
+ SQL (0.1ms) PRAGMA index_list("users")
362
+ SQL (0.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
363
+ SQL (0.1ms) PRAGMA index_list("users")
364
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
365
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
366
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110119235156')
367
+ SQL (0.2ms) SELECT name
368
+ FROM sqlite_master
369
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
370
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
371
+ SQL (0.1ms) SELECT name
372
+ FROM sqlite_master
373
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
374
+ SQL (0.1ms) PRAGMA index_list("users")
375
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
376
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
377
+ SQL (0.1ms) SELECT name
378
+ FROM sqlite_master
379
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
380
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
381
+ SQL (0.1ms) select sqlite_version(*)
382
+ SQL (0.2ms)  SELECT name
383
+ FROM sqlite_master
384
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
385
+ 
386
+ SQL (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
387
+ SQL (0.1ms) PRAGMA index_list("users")
388
+ SQL (1.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
389
+ SQL (0.1ms) PRAGMA index_list("users")
390
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
391
+ SQL (1.0ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
392
+ SQL (0.1ms) SELECT name
393
+ FROM sqlite_master
394
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
395
+ SQL (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
396
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
397
+ SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
398
+ SQL (0.2ms) SELECT name
399
+ FROM sqlite_master
400
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
401
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
402
+ SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110119235156')
403
+ SQL (0.6ms)  SELECT name
404
+ FROM sqlite_master
405
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
406
+ 
407
+ SQL (0.1ms) SELECT name
408
+ FROM sqlite_master
409
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
+ SQL (0.6ms)  SELECT name
411
+ FROM sqlite_master
412
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
413
+ 
414
+ SQL (0.1ms) select sqlite_version(*)
415
+ SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
416
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
417
+ SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
418
+ SQL (0.1ms) SELECT name
419
+ FROM sqlite_master
420
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
421
+ SQL (0.2ms)  SELECT name
422
+ FROM sqlite_master
423
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
424
+ 
425
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
426
+ Migrating to ClearanceCreateUsers (20110119235615)
427
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
428
+ SQL (0.0ms) PRAGMA index_list("users")
429
+ SQL (0.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
430
+ SQL (0.1ms) PRAGMA index_list("users")
431
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
432
+ SQL (0.3ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
433
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110119235615')
434
+ SQL (0.2ms) SELECT name
435
+ FROM sqlite_master
436
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
437
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
438
+ SQL (0.1ms) SELECT name
439
+ FROM sqlite_master
440
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
441
+ SQL (0.1ms) PRAGMA index_list("users")
442
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
443
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
444
+ SQL (0.2ms) SELECT name
445
+ FROM sqlite_master
446
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
447
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
448
+ SQL (0.1ms) select sqlite_version(*)
449
+ SQL (0.2ms)  SELECT name
450
+ FROM sqlite_master
451
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
452
+ 
453
+ SQL (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
454
+ SQL (0.1ms) PRAGMA index_list("users")
455
+ SQL (1.3ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
456
+ SQL (0.1ms) PRAGMA index_list("users")
457
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
458
+ SQL (1.0ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
459
+ SQL (0.1ms) SELECT name
460
+ FROM sqlite_master
461
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
462
+ SQL (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
463
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
464
+ SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
465
+ SQL (0.2ms) SELECT name
466
+ FROM sqlite_master
467
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
468
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
469
+ SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110119235615')
470
+ SQL (0.6ms)  SELECT name
471
+ FROM sqlite_master
472
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
473
+ 
474
+ SQL (0.1ms) SELECT name
475
+ FROM sqlite_master
476
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
477
+ SQL (0.6ms)  SELECT name
478
+ FROM sqlite_master
479
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
480
+ 
481
+ SQL (0.1ms) select sqlite_version(*)
482
+ SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
483
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
484
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
485
+ SQL (0.2ms) SELECT name
486
+ FROM sqlite_master
487
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
488
+ SQL (0.2ms)  SELECT name
489
+ FROM sqlite_master
490
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
491
+ 
492
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
493
+ Migrating to ClearanceCreateUsers (20110119235647)
494
+ SQL (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
495
+ SQL (0.1ms) PRAGMA index_list("users")
496
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
497
+ SQL (0.1ms) PRAGMA index_list("users")
498
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
499
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
500
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110119235647')
501
+ SQL (0.2ms) SELECT name
502
+ FROM sqlite_master
503
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
504
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
505
+ SQL (0.1ms) SELECT name
506
+ FROM sqlite_master
507
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
508
+ SQL (0.1ms) PRAGMA index_list("users")
509
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
510
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
511
+ SQL (0.1ms) SELECT name
512
+ FROM sqlite_master
513
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
514
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
515
+ SQL (0.2ms) select sqlite_version(*)
516
+ SQL (0.2ms)  SELECT name
517
+ FROM sqlite_master
518
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
519
+ 
520
+ SQL (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
521
+ SQL (0.1ms) PRAGMA index_list("users")
522
+ SQL (1.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
523
+ SQL (0.1ms) PRAGMA index_list("users")
524
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
525
+ SQL (1.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
526
+ SQL (0.1ms) SELECT name
527
+ FROM sqlite_master
528
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
529
+ SQL (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
530
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
531
+ SQL (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
532
+ SQL (0.2ms) SELECT name
533
+ FROM sqlite_master
534
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
535
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
536
+ SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110119235647')
537
+ SQL (4.9ms)  SELECT name
538
+ FROM sqlite_master
539
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
540
+ 
541
+ SQL (0.1ms) SELECT name
542
+ FROM sqlite_master
543
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
544
+ SQL (0.6ms)  SELECT name
545
+ FROM sqlite_master
546
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
547
+ 
548
+ SQL (0.1ms) select sqlite_version(*)
549
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
550
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
551
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
552
+ SQL (0.2ms) SELECT name
553
+ FROM sqlite_master
554
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
555
+ SQL (0.2ms)  SELECT name
556
+ FROM sqlite_master
557
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
558
+ 
559
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
560
+ Migrating to ClearanceCreateUsers (20110122232325)
561
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
562
+ SQL (0.0ms) PRAGMA index_list("users")
563
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
564
+ SQL (0.1ms) PRAGMA index_list("users")
565
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
566
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
567
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110122232325')
568
+ SQL (0.2ms) SELECT name
569
+ FROM sqlite_master
570
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
571
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
572
+ SQL (0.1ms) SELECT name
573
+ FROM sqlite_master
574
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
575
+ SQL (0.1ms) PRAGMA index_list("users")
576
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
577
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
578
+ SQL (0.2ms) SELECT name
579
+ FROM sqlite_master
580
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
581
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
582
+ SQL (0.1ms) select sqlite_version(*)
583
+ SQL (0.2ms)  SELECT name
584
+ FROM sqlite_master
585
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
586
+ 
587
+ SQL (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
588
+ SQL (0.0ms) PRAGMA index_list("users")
589
+ SQL (1.0ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
590
+ SQL (0.5ms) PRAGMA index_list("users")
591
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
592
+ SQL (1.0ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
593
+ SQL (0.2ms) SELECT name
594
+ FROM sqlite_master
595
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
596
+ SQL (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
597
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
598
+ SQL (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
599
+ SQL (0.2ms) SELECT name
600
+ FROM sqlite_master
601
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
602
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
603
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110122232325')
604
+ SQL (0.6ms)  SELECT name
605
+ FROM sqlite_master
606
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
607
+ 
608
+ SQL (0.1ms) SELECT name
609
+ FROM sqlite_master
610
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
611
+ SQL (0.6ms)  SELECT name
612
+ FROM sqlite_master
613
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
614
+ 
615
+ SQL (0.1ms) select sqlite_version(*)
616
+ SQL (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
617
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
618
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
619
+ SQL (0.2ms) SELECT name
620
+ FROM sqlite_master
621
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
622
+ SQL (0.2ms)  SELECT name
623
+ FROM sqlite_master
624
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
625
+ 
626
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
627
+ Migrating to ClearanceCreateUsers (20110122232701)
628
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
629
+ SQL (0.0ms) PRAGMA index_list("users")
630
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
631
+ SQL (0.2ms) PRAGMA index_list("users")
632
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
633
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
634
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110122232701')
635
+ SQL (0.2ms) SELECT name
636
+ FROM sqlite_master
637
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
638
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
639
+ SQL (0.1ms) SELECT name
640
+ FROM sqlite_master
641
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
642
+ SQL (0.1ms) PRAGMA index_list("users")
643
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
644
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
645
+ SQL (0.1ms) SELECT name
646
+ FROM sqlite_master
647
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
648
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
649
+ SQL (0.1ms) select sqlite_version(*)
650
+ SQL (0.2ms)  SELECT name
651
+ FROM sqlite_master
652
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
653
+ 
654
+ SQL (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
655
+ SQL (0.1ms) PRAGMA index_list("users")
656
+ SQL (1.6ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
657
+ SQL (0.5ms) PRAGMA index_list("users")
658
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
659
+ SQL (1.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
660
+ SQL (0.3ms) SELECT name
661
+ FROM sqlite_master
662
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
663
+ SQL (10.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
664
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
665
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
666
+ SQL (0.2ms) SELECT name
667
+ FROM sqlite_master
668
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
669
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
670
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110122232701')
671
+ SQL (0.7ms)  SELECT name
672
+ FROM sqlite_master
673
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
674
+ 
675
+ SQL (0.1ms) SELECT name
676
+ FROM sqlite_master
677
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
678
+ SQL (0.6ms)  SELECT name
679
+ FROM sqlite_master
680
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
681
+ 
682
+ SQL (0.1ms) select sqlite_version(*)
683
+ SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
684
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
685
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
686
+ SQL (0.2ms) SELECT name
687
+ FROM sqlite_master
688
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
689
+ SQL (0.2ms)  SELECT name
690
+ FROM sqlite_master
691
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
692
+ 
693
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
694
+ Migrating to ClearanceCreateUsers (20110123010751)
695
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
696
+ SQL (0.1ms) PRAGMA index_list("users")
697
+ SQL (0.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
698
+ SQL (0.2ms) PRAGMA index_list("users")
699
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
700
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
701
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110123010751')
702
+ SQL (0.2ms) SELECT name
703
+ FROM sqlite_master
704
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
705
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
706
+ SQL (0.1ms) SELECT name
707
+ FROM sqlite_master
708
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
709
+ SQL (0.1ms) PRAGMA index_list("users")
710
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
711
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
712
+ SQL (0.1ms) SELECT name
713
+ FROM sqlite_master
714
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
715
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
716
+ SQL (0.1ms) select sqlite_version(*)
717
+ SQL (0.2ms)  SELECT name
718
+ FROM sqlite_master
719
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
720
+ 
721
+ SQL (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
722
+ SQL (0.1ms) PRAGMA index_list("users")
723
+ SQL (1.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
724
+ SQL (0.5ms) PRAGMA index_list("users")
725
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
726
+ SQL (1.0ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
727
+ SQL (0.2ms) SELECT name
728
+ FROM sqlite_master
729
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
730
+ SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
731
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
732
+ SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
733
+ SQL (0.2ms) SELECT name
734
+ FROM sqlite_master
735
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
736
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
737
+ SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110123010751')
738
+ SQL (0.6ms)  SELECT name
739
+ FROM sqlite_master
740
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
741
+ 
742
+ SQL (0.1ms) SELECT name
743
+ FROM sqlite_master
744
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
745
+ SQL (0.6ms)  SELECT name
746
+ FROM sqlite_master
747
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
748
+ 
749
+ SQL (0.1ms) select sqlite_version(*)
750
+ SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
751
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
752
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
753
+ SQL (0.2ms) SELECT name
754
+ FROM sqlite_master
755
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
756
+ SQL (0.2ms)  SELECT name
757
+ FROM sqlite_master
758
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
759
+ 
760
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
761
+ Migrating to ClearanceCreateUsers (20110123013331)
762
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
763
+ SQL (0.1ms) PRAGMA index_list("users")
764
+ SQL (0.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
765
+ SQL (0.1ms) PRAGMA index_list("users")
766
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
767
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
768
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110123013331')
769
+ SQL (0.3ms) SELECT name
770
+ FROM sqlite_master
771
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
772
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
773
+ SQL (0.1ms) SELECT name
774
+ FROM sqlite_master
775
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
776
+ SQL (0.1ms) PRAGMA index_list("users")
777
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
778
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
779
+ SQL (0.2ms) SELECT name
780
+ FROM sqlite_master
781
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
782
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
783
+ SQL (0.1ms) select sqlite_version(*)
784
+ SQL (0.2ms)  SELECT name
785
+ FROM sqlite_master
786
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
787
+ 
788
+ SQL (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
789
+ SQL (0.0ms) PRAGMA index_list("users")
790
+ SQL (1.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
791
+ SQL (0.5ms) PRAGMA index_list("users")
792
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
793
+ SQL (6.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
794
+ SQL (0.3ms) SELECT name
795
+ FROM sqlite_master
796
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
797
+ SQL (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
798
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
799
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
800
+ SQL (0.2ms) SELECT name
801
+ FROM sqlite_master
802
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
803
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
804
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110123013331')
805
+ SQL (4.6ms)  SELECT name
806
+ FROM sqlite_master
807
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
808
+ 
809
+ SQL (0.1ms) SELECT name
810
+ FROM sqlite_master
811
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
812
+ SQL (0.6ms)  SELECT name
813
+ FROM sqlite_master
814
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
815
+ 
816
+ SQL (0.1ms) select sqlite_version(*)
817
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
818
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
819
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
820
+ SQL (0.2ms) SELECT name
821
+ FROM sqlite_master
822
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
823
+ SQL (0.2ms)  SELECT name
824
+ FROM sqlite_master
825
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
826
+ 
827
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
828
+ Migrating to ClearanceCreateUsers (20110127145459)
829
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
830
+ SQL (0.0ms) PRAGMA index_list("users")
831
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
832
+ SQL (0.1ms) PRAGMA index_list("users")
833
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
834
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
835
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110127145459')
836
+ SQL (0.2ms) SELECT name
837
+ FROM sqlite_master
838
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
839
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
840
+ SQL (0.1ms) SELECT name
841
+ FROM sqlite_master
842
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
843
+ SQL (0.1ms) PRAGMA index_list("users")
844
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
845
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
846
+ SQL (0.2ms) SELECT name
847
+ FROM sqlite_master
848
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
849
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
850
+ SQL (0.1ms) select sqlite_version(*)
851
+ SQL (0.2ms)  SELECT name
852
+ FROM sqlite_master
853
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
854
+ 
855
+ SQL (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
856
+ SQL (0.1ms) PRAGMA index_list("users")
857
+ SQL (1.2ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
858
+ SQL (0.5ms) PRAGMA index_list("users")
859
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
860
+ SQL (1.5ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
861
+ SQL (0.3ms) SELECT name
862
+ FROM sqlite_master
863
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
864
+ SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
865
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
866
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
867
+ SQL (0.2ms) SELECT name
868
+ FROM sqlite_master
869
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
870
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
871
+ SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110127145459')
872
+ SQL (4.5ms)  SELECT name
873
+ FROM sqlite_master
874
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
875
+ 
876
+ SQL (0.1ms) SELECT name
877
+ FROM sqlite_master
878
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
879
+ SQL (0.6ms)  SELECT name
880
+ FROM sqlite_master
881
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
882
+ 
883
+ SQL (0.1ms) select sqlite_version(*)
884
+ SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
885
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
886
+ SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
887
+ SQL (0.2ms) SELECT name
888
+ FROM sqlite_master
889
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
890
+ SQL (0.2ms)  SELECT name
891
+ FROM sqlite_master
892
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
893
+ 
894
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
895
+ Migrating to ClearanceCreateUsers (20110209234101)
896
+ SQL (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime) 
897
+ SQL (0.1ms) PRAGMA index_list("users")
898
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
899
+ SQL (0.1ms) PRAGMA index_list("users")
900
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
901
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
902
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110209234101')
903
+ SQL (0.2ms) SELECT name
904
+ FROM sqlite_master
905
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
906
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
907
+ SQL (0.1ms) SELECT name
908
+ FROM sqlite_master
909
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
910
+ SQL (0.1ms) PRAGMA index_list("users")
911
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
912
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
913
+ SQL (0.1ms) SELECT name
914
+ FROM sqlite_master
915
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
916
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
917
+ SQL (0.1ms) select sqlite_version(*)
918
+ SQL (0.4ms)  SELECT name
919
+ FROM sqlite_master
920
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
921
+ 
922
+ SQL (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "created_at" datetime, "updated_at" datetime)
923
+ SQL (0.1ms) PRAGMA index_list("users")
924
+ SQL (1.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
925
+ SQL (0.1ms) PRAGMA index_list("users")
926
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
927
+ SQL (2.5ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
928
+ SQL (0.2ms) SELECT name
929
+ FROM sqlite_master
930
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
931
+ SQL (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
932
+ SQL (0.7ms) PRAGMA index_list("schema_migrations")
933
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
934
+ SQL (0.2ms) SELECT name
935
+ FROM sqlite_master
936
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
937
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
938
+ SQL (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110209234101')