fancygrid 1.1.0 → 2.0.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 (95) hide show
  1. data/CHANGELOG +9 -2
  2. data/Gemfile +6 -9
  3. data/Gemfile.lock +88 -103
  4. data/README.md +226 -0
  5. data/ROADMAP +0 -1
  6. data/Rakefile +2 -2
  7. data/VERSION +1 -1
  8. data/app/views/fancygrid/controls.html.haml +34 -0
  9. data/app/views/fancygrid/fancygrid.html.haml +18 -0
  10. data/app/views/fancygrid/search.html.haml +24 -0
  11. data/app/views/fancygrid/sort.html.haml +8 -0
  12. data/app/views/fancygrid/table.html.haml +25 -0
  13. data/config/locales/fancygrid.de.yml +17 -19
  14. data/config/locales/fancygrid.en.yml +14 -17
  15. data/fancygrid.gemspec +48 -88
  16. data/lib/assets/javascripts/fancygrid.js +425 -0
  17. data/lib/assets/javascripts/fancygrid.min.js +15 -0
  18. data/lib/assets/stylesheets/fancygrid.css +177 -0
  19. data/lib/fancygrid.rb +63 -44
  20. data/lib/fancygrid/column.rb +165 -0
  21. data/lib/fancygrid/controller/helper.rb +46 -0
  22. data/lib/fancygrid/grid.rb +171 -317
  23. data/lib/fancygrid/node.rb +85 -490
  24. data/lib/fancygrid/object_wrapper.rb +24 -0
  25. data/lib/fancygrid/orm/active_record.rb +39 -0
  26. data/lib/fancygrid/orm/sql_generator.rb +127 -0
  27. data/lib/fancygrid/view/helper.rb +44 -0
  28. data/lib/fancygrid/view_state.rb +161 -0
  29. data/spec/column_spec.rb +29 -0
  30. data/spec/dummy/app/controllers/application_controller.rb +48 -0
  31. data/spec/dummy/app/views/application/index.html.haml +11 -0
  32. data/spec/dummy/app/views/layouts/application.html.erb +1 -1
  33. data/spec/dummy/config/application.rb +1 -1
  34. data/spec/dummy/config/environments/development.rb +2 -2
  35. data/spec/dummy/config/environments/test.rb +2 -2
  36. data/spec/dummy/config/routes.rb +3 -2
  37. data/spec/dummy/db/development.sqlite3 +0 -0
  38. data/spec/dummy/db/schema.rb +26 -0
  39. data/spec/dummy/public/javascripts/jquery-1.4.2.js +6240 -0
  40. data/spec/dummy/public/javascripts/jquery-fancygrid.js +425 -0
  41. data/spec/dummy/public/javascripts/jquery-ui.js +41 -0
  42. data/spec/dummy/public/stylesheets/fancygrid.css +183 -0
  43. data/spec/node_spec.rb +79 -301
  44. data/spec/spec_helper.rb +0 -29
  45. data/spec/view_state_spec.rb +91 -0
  46. metadata +124 -137
  47. data/.bundle/config +0 -2
  48. data/README.rdoc +0 -299
  49. data/app/views/fancygrid/_cells.html.haml +0 -13
  50. data/app/views/fancygrid/base/controls.html.haml +0 -40
  51. data/app/views/fancygrid/base/list_frame.html.haml +0 -37
  52. data/app/views/fancygrid/base/search.html.haml +0 -33
  53. data/app/views/fancygrid/base/sort.html.haml +0 -20
  54. data/app/views/fancygrid/base/table_frame.html.haml +0 -45
  55. data/config/initializers/fancygrid.rb +0 -67
  56. data/lib/fancygrid/helper.rb +0 -129
  57. data/lib/fancygrid/query_generator.rb +0 -340
  58. data/lib/fancygrid/view.rb +0 -148
  59. data/lib/generators/install_generator.rb +0 -61
  60. data/lib/generators/views_generator.rb +0 -25
  61. data/lib/version.rb +0 -0
  62. data/public/images/fancygrid/add.png +0 -0
  63. data/public/images/fancygrid/clear.png +0 -0
  64. data/public/images/fancygrid/ddn.png +0 -0
  65. data/public/images/fancygrid/dn.png +0 -0
  66. data/public/images/fancygrid/dots.png +0 -0
  67. data/public/images/fancygrid/loading.gif +0 -0
  68. data/public/images/fancygrid/magnifier.png +0 -0
  69. data/public/images/fancygrid/next.png +0 -0
  70. data/public/images/fancygrid/order.png +0 -0
  71. data/public/images/fancygrid/prev.png +0 -0
  72. data/public/images/fancygrid/reload.png +0 -0
  73. data/public/images/fancygrid/remove.png +0 -0
  74. data/public/images/fancygrid/spacer.gif +0 -0
  75. data/public/images/fancygrid/submit.png +0 -0
  76. data/public/images/fancygrid/th_bg.png +0 -0
  77. data/public/images/fancygrid/up.png +0 -0
  78. data/public/images/fancygrid/uup.png +0 -0
  79. data/public/javascripts/fancygrid.js +0 -477
  80. data/public/javascripts/fancygrid.min.js +0 -17
  81. data/public/stylesheets/fancygrid.css +0 -289
  82. data/public/stylesheets/fancygrid.scss +0 -302
  83. data/spec/dummy/log/development.log +0 -0
  84. data/spec/dummy/log/production.log +0 -0
  85. data/spec/dummy/log/server.log +0 -0
  86. data/spec/dummy/log/test.log +0 -1026
  87. data/spec/dummy/public/javascripts/application.js +0 -2
  88. data/spec/dummy/public/javascripts/controls.js +0 -965
  89. data/spec/dummy/public/javascripts/dragdrop.js +0 -974
  90. data/spec/dummy/public/javascripts/effects.js +0 -1123
  91. data/spec/dummy/public/javascripts/prototype.js +0 -6001
  92. data/spec/dummy/public/javascripts/rails.js +0 -175
  93. data/spec/grid_spec.rb +0 -15
  94. data/spec/integration/navigation_spec.rb +0 -9
  95. data/spec/query_generator_spec.rb +0 -358
File without changes
File without changes
File without changes
@@ -1,1026 +0,0 @@
1
- SQL (2.0ms)  SELECT name
2
- FROM sqlite_master
3
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
- 
5
- SQL (0.5ms) select sqlite_version(*)
6
- SQL (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
8
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
- SQL (0.3ms) SELECT name
10
- FROM sqlite_master
11
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
12
- SQL (0.7ms)  SELECT name
13
- FROM sqlite_master
14
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
15
- 
16
- SQL (0.1ms) SELECT name
17
- FROM sqlite_master
18
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
19
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
20
- Migrating to CreateProjects (20110112183948)
21
- SQL (0.1ms) select sqlite_version(*)
22
- SQL (0.7ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
23
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183948')
24
- Migrating to CreateTickets (20110112183956)
25
- SQL (0.5ms) CREATE TABLE "tickets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "description" varchar(255), "status" varchar(255)) 
26
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183956')
27
- SQL (0.8ms)  SELECT name
28
- FROM sqlite_master
29
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
30
- 
31
- SQL (0.2ms) SELECT name
32
- FROM sqlite_master
33
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
34
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
35
- Migrating to CreateProjects (20110112183948)
36
- Migrating to CreateTickets (20110112183956)
37
- SQL (0.6ms)  SELECT name
38
- FROM sqlite_master
39
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
40
- 
41
- SQL (0.1ms) select sqlite_version(*)
42
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
43
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
44
- SQL (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
- SQL (0.2ms) SELECT name
46
- FROM sqlite_master
47
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
48
- SQL (0.2ms)  SELECT name
49
- FROM sqlite_master
50
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
51
- 
52
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
53
- Migrating to CreateProjects (20110112183948)
54
- SQL (0.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255)) 
55
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183948')
56
- Migrating to CreateTickets (20110112183956)
57
- SQL (0.4ms) CREATE TABLE "tickets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "title" varchar(255), "description" varchar(255), "status" varchar(255)) 
58
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110112183956')
59
- SQL (0.8ms)  SELECT name
60
- FROM sqlite_master
61
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
62
- 
63
- SQL (0.2ms) SELECT name
64
- FROM sqlite_master
65
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
66
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
67
- Migrating to CreateProjects (20110112183948)
68
- Migrating to CreateTickets (20110112183956)
69
- SQL (0.3ms) SELECT name
70
- FROM sqlite_master
71
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
72
- SQL (0.8ms)  SELECT name
73
- FROM sqlite_master
74
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
75
- 
76
- SQL (0.2ms) SELECT name
77
- FROM sqlite_master
78
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
79
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
80
- Migrating to CreateProjects (20110112183948)
81
- Migrating to CreateTickets (20110112183956)
82
- SQL (0.8ms)  SELECT name
83
- FROM sqlite_master
84
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
85
- 
86
- SQL (0.2ms) SELECT name
87
- FROM sqlite_master
88
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
89
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
90
- Migrating to CreateProjects (20110112183948)
91
- Migrating to CreateTickets (20110112183956)
92
- SQL (0.8ms)  SELECT name
93
- FROM sqlite_master
94
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
95
- 
96
- SQL (0.2ms) SELECT name
97
- FROM sqlite_master
98
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
99
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
100
- Migrating to CreateProjects (20110112183948)
101
- Migrating to CreateTickets (20110112183956)
102
- SQL (0.8ms)  SELECT name
103
- FROM sqlite_master
104
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
105
- 
106
- SQL (0.2ms) SELECT name
107
- FROM sqlite_master
108
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
109
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
110
- Migrating to CreateProjects (20110112183948)
111
- Migrating to CreateTickets (20110112183956)
112
- SQL (0.8ms)  SELECT name
113
- FROM sqlite_master
114
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
115
- 
116
- SQL (0.2ms) SELECT name
117
- FROM sqlite_master
118
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
119
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
120
- Migrating to CreateProjects (20110112183948)
121
- Migrating to CreateTickets (20110112183956)
122
- SQL (0.8ms)  SELECT name
123
- FROM sqlite_master
124
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
125
- 
126
- SQL (0.2ms) SELECT name
127
- FROM sqlite_master
128
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
129
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
130
- Migrating to CreateProjects (20110112183948)
131
- Migrating to CreateTickets (20110112183956)
132
- SQL (0.8ms)  SELECT name
133
- FROM sqlite_master
134
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
135
- 
136
- SQL (0.2ms) SELECT name
137
- FROM sqlite_master
138
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
139
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
140
- Migrating to CreateProjects (20110112183948)
141
- Migrating to CreateTickets (20110112183956)
142
- SQL (0.3ms) SELECT name
143
- FROM sqlite_master
144
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
145
- SQL (0.2ms)  SELECT name
146
- FROM sqlite_master
147
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
148
- 
149
- SQL (0.2ms) SELECT name
150
- FROM sqlite_master
151
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
152
- SQL (0.2ms)  SELECT name
153
- FROM sqlite_master
154
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
155
- 
156
- SQL (0.2ms) SELECT name
157
- FROM sqlite_master
158
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
159
- SQL (0.2ms)  SELECT name
160
- FROM sqlite_master
161
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
162
- 
163
- SQL (0.2ms) SELECT name
164
- FROM sqlite_master
165
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
166
- SQL (0.2ms)  SELECT name
167
- FROM sqlite_master
168
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
169
- 
170
- SQL (0.2ms) SELECT name
171
- FROM sqlite_master
172
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
173
- SQL (0.2ms)  SELECT name
174
- FROM sqlite_master
175
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
176
- 
177
- SQL (0.8ms)  SELECT name
178
- FROM sqlite_master
179
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
180
- 
181
- SQL (0.2ms) SELECT name
182
- FROM sqlite_master
183
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
184
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
185
- Migrating to CreateProjects (20110112183948)
186
- Migrating to CreateTickets (20110112183956)
187
- SQL (0.8ms)  SELECT name
188
- FROM sqlite_master
189
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
190
- 
191
- SQL (0.2ms) SELECT name
192
- FROM sqlite_master
193
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
194
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
195
- Migrating to CreateProjects (20110112183948)
196
- Migrating to CreateTickets (20110112183956)
197
- SQL (0.8ms)  SELECT name
198
- FROM sqlite_master
199
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
200
- 
201
- SQL (0.2ms) SELECT name
202
- FROM sqlite_master
203
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
204
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
205
- Migrating to CreateProjects (20110112183948)
206
- Migrating to CreateTickets (20110112183956)
207
- SQL (0.8ms)  SELECT name
208
- FROM sqlite_master
209
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
210
- 
211
- SQL (0.2ms) SELECT name
212
- FROM sqlite_master
213
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
214
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
215
- Migrating to CreateProjects (20110112183948)
216
- Migrating to CreateTickets (20110112183956)
217
- SQL (1.1ms)  SELECT name
218
- FROM sqlite_master
219
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
220
- 
221
- SQL (0.2ms) SELECT name
222
- FROM sqlite_master
223
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
224
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
225
- Migrating to CreateProjects (20110112183948)
226
- Migrating to CreateTickets (20110112183956)
227
- SQL (0.9ms)  SELECT name
228
- FROM sqlite_master
229
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
230
- 
231
- SQL (0.2ms) SELECT name
232
- FROM sqlite_master
233
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
234
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
235
- Migrating to CreateProjects (20110112183948)
236
- Migrating to CreateTickets (20110112183956)
237
- SQL (0.8ms)  SELECT name
238
- FROM sqlite_master
239
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
240
- 
241
- SQL (0.3ms) SELECT name
242
- FROM sqlite_master
243
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
244
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
245
- Migrating to CreateProjects (20110112183948)
246
- Migrating to CreateTickets (20110112183956)
247
- SQL (0.8ms)  SELECT name
248
- FROM sqlite_master
249
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
250
- 
251
- SQL (0.2ms) SELECT name
252
- FROM sqlite_master
253
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
254
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
255
- Migrating to CreateProjects (20110112183948)
256
- Migrating to CreateTickets (20110112183956)
257
- SQL (0.8ms)  SELECT name
258
- FROM sqlite_master
259
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
260
- 
261
- SQL (0.2ms) SELECT name
262
- FROM sqlite_master
263
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
264
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
265
- Migrating to CreateProjects (20110112183948)
266
- Migrating to CreateTickets (20110112183956)
267
- SQL (0.8ms)  SELECT name
268
- FROM sqlite_master
269
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
270
- 
271
- SQL (0.2ms) SELECT name
272
- FROM sqlite_master
273
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
274
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
275
- Migrating to CreateProjects (20110112183948)
276
- Migrating to CreateTickets (20110112183956)
277
- SQL (0.8ms)  SELECT name
278
- FROM sqlite_master
279
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
280
- 
281
- SQL (0.2ms) SELECT name
282
- FROM sqlite_master
283
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
284
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
285
- Migrating to CreateProjects (20110112183948)
286
- Migrating to CreateTickets (20110112183956)
287
- SQL (0.8ms)  SELECT name
288
- FROM sqlite_master
289
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
290
- 
291
- SQL (0.2ms) SELECT name
292
- FROM sqlite_master
293
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
294
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
295
- Migrating to CreateProjects (20110112183948)
296
- Migrating to CreateTickets (20110112183956)
297
- SQL (1.1ms)  SELECT name
298
- FROM sqlite_master
299
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
300
- 
301
- SQL (0.2ms) SELECT name
302
- FROM sqlite_master
303
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
304
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
305
- Migrating to CreateProjects (20110112183948)
306
- Migrating to CreateTickets (20110112183956)
307
- SQL (0.9ms)  SELECT name
308
- FROM sqlite_master
309
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
310
- 
311
- SQL (0.2ms) SELECT name
312
- FROM sqlite_master
313
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
314
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
315
- Migrating to CreateProjects (20110112183948)
316
- Migrating to CreateTickets (20110112183956)
317
- SQL (0.8ms)  SELECT name
318
- FROM sqlite_master
319
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
320
- 
321
- SQL (0.2ms) SELECT name
322
- FROM sqlite_master
323
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
324
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
325
- Migrating to CreateProjects (20110112183948)
326
- Migrating to CreateTickets (20110112183956)
327
- SQL (0.8ms)  SELECT name
328
- FROM sqlite_master
329
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
330
- 
331
- SQL (0.2ms) SELECT name
332
- FROM sqlite_master
333
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
334
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
335
- Migrating to CreateProjects (20110112183948)
336
- Migrating to CreateTickets (20110112183956)
337
- SQL (1.0ms)  SELECT name
338
- FROM sqlite_master
339
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
340
- 
341
- SQL (0.3ms) SELECT name
342
- FROM sqlite_master
343
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
344
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
345
- Migrating to CreateProjects (20110112183948)
346
- Migrating to CreateTickets (20110112183956)
347
- SQL (0.8ms)  SELECT name
348
- FROM sqlite_master
349
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
350
- 
351
- SQL (0.2ms) SELECT name
352
- FROM sqlite_master
353
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
355
- Migrating to CreateProjects (20110112183948)
356
- Migrating to CreateTickets (20110112183956)
357
- SQL (0.8ms)  SELECT name
358
- FROM sqlite_master
359
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
360
- 
361
- SQL (0.2ms) SELECT name
362
- FROM sqlite_master
363
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
364
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
365
- Migrating to CreateProjects (20110112183948)
366
- Migrating to CreateTickets (20110112183956)
367
- SQL (0.8ms)  SELECT name
368
- FROM sqlite_master
369
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
370
- 
371
- SQL (0.2ms) SELECT name
372
- FROM sqlite_master
373
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
374
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
375
- Migrating to CreateProjects (20110112183948)
376
- Migrating to CreateTickets (20110112183956)
377
- SQL (0.8ms)  SELECT name
378
- FROM sqlite_master
379
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
380
- 
381
- SQL (0.2ms) SELECT name
382
- FROM sqlite_master
383
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
384
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
385
- Migrating to CreateProjects (20110112183948)
386
- Migrating to CreateTickets (20110112183956)
387
- SQL (0.8ms)  SELECT name
388
- FROM sqlite_master
389
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
390
- 
391
- SQL (0.2ms) SELECT name
392
- FROM sqlite_master
393
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
394
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
395
- Migrating to CreateProjects (20110112183948)
396
- Migrating to CreateTickets (20110112183956)
397
- SQL (0.8ms)  SELECT name
398
- FROM sqlite_master
399
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
400
- 
401
- SQL (0.2ms) SELECT name
402
- FROM sqlite_master
403
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
404
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
405
- Migrating to CreateProjects (20110112183948)
406
- Migrating to CreateTickets (20110112183956)
407
- SQL (0.8ms)  SELECT name
408
- FROM sqlite_master
409
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
- 
411
- SQL (0.2ms) SELECT name
412
- FROM sqlite_master
413
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
414
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
415
- Migrating to CreateProjects (20110112183948)
416
- Migrating to CreateTickets (20110112183956)
417
- SQL (0.8ms)  SELECT name
418
- FROM sqlite_master
419
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
420
- 
421
- SQL (0.2ms) SELECT name
422
- FROM sqlite_master
423
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
424
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
425
- Migrating to CreateProjects (20110112183948)
426
- Migrating to CreateTickets (20110112183956)
427
- SQL (0.8ms)  SELECT name
428
- FROM sqlite_master
429
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
430
- 
431
- SQL (0.2ms) SELECT name
432
- FROM sqlite_master
433
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
434
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
435
- Migrating to CreateProjects (20110112183948)
436
- Migrating to CreateTickets (20110112183956)
437
- SQL (0.8ms)  SELECT name
438
- FROM sqlite_master
439
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
440
- 
441
- SQL (0.2ms) SELECT name
442
- FROM sqlite_master
443
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
444
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
445
- Migrating to CreateProjects (20110112183948)
446
- Migrating to CreateTickets (20110112183956)
447
- SQL (0.8ms)  SELECT name
448
- FROM sqlite_master
449
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
450
- 
451
- SQL (0.2ms) SELECT name
452
- FROM sqlite_master
453
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
454
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
455
- Migrating to CreateProjects (20110112183948)
456
- Migrating to CreateTickets (20110112183956)
457
- SQL (21.3ms)  SELECT name
458
- FROM sqlite_master
459
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
460
- 
461
- SQL (0.3ms) SELECT name
462
- FROM sqlite_master
463
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
464
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
465
- Migrating to CreateProjects (20110112183948)
466
- Migrating to CreateTickets (20110112183956)
467
- SQL (0.7ms)  SELECT name
468
- FROM sqlite_master
469
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
470
- 
471
- SQL (0.2ms) SELECT name
472
- FROM sqlite_master
473
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
474
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
475
- Migrating to CreateProjects (20110112183948)
476
- Migrating to CreateTickets (20110112183956)
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 name
482
- FROM sqlite_master
483
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
484
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
485
- Migrating to CreateProjects (20110112183948)
486
- Migrating to CreateTickets (20110112183956)
487
- SQL (2.6ms)  SELECT name
488
- FROM sqlite_master
489
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
490
- 
491
- SQL (0.2ms) SELECT name
492
- FROM sqlite_master
493
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
494
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
495
- Migrating to CreateProjects (20110112183948)
496
- Migrating to CreateTickets (20110112183956)
497
- SQL (0.8ms)  SELECT name
498
- FROM sqlite_master
499
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
500
- 
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
- Migrating to CreateProjects (20110112183948)
506
- Migrating to CreateTickets (20110112183956)
507
- SQL (0.8ms)  SELECT name
508
- FROM sqlite_master
509
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
510
- 
511
- SQL (0.2ms) 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
- Migrating to CreateProjects (20110112183948)
516
- Migrating to CreateTickets (20110112183956)
517
- SQL (0.8ms)  SELECT name
518
- FROM sqlite_master
519
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
520
- 
521
- SQL (0.2ms) SELECT name
522
- FROM sqlite_master
523
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
524
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
525
- Migrating to CreateProjects (20110112183948)
526
- Migrating to CreateTickets (20110112183956)
527
- SQL (0.8ms)  SELECT name
528
- FROM sqlite_master
529
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
530
- 
531
- SQL (0.2ms) SELECT name
532
- FROM sqlite_master
533
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
534
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
535
- Migrating to CreateProjects (20110112183948)
536
- Migrating to CreateTickets (20110112183956)
537
- SQL (0.8ms)  SELECT name
538
- FROM sqlite_master
539
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
540
- 
541
- SQL (0.2ms) SELECT name
542
- FROM sqlite_master
543
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
544
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
545
- Migrating to CreateProjects (20110112183948)
546
- Migrating to CreateTickets (20110112183956)
547
- SQL (0.8ms)  SELECT name
548
- FROM sqlite_master
549
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
550
- 
551
- SQL (0.2ms) SELECT name
552
- FROM sqlite_master
553
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
554
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
555
- Migrating to CreateProjects (20110112183948)
556
- Migrating to CreateTickets (20110112183956)
557
- SQL (0.8ms)  SELECT name
558
- FROM sqlite_master
559
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
560
- 
561
- SQL (0.2ms) SELECT name
562
- FROM sqlite_master
563
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
564
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
565
- Migrating to CreateProjects (20110112183948)
566
- Migrating to CreateTickets (20110112183956)
567
- SQL (0.8ms)  SELECT name
568
- FROM sqlite_master
569
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
570
- 
571
- SQL (0.2ms) SELECT name
572
- FROM sqlite_master
573
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
574
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
575
- Migrating to CreateProjects (20110112183948)
576
- Migrating to CreateTickets (20110112183956)
577
- SQL (0.8ms)  SELECT name
578
- FROM sqlite_master
579
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
580
- 
581
- SQL (0.2ms) SELECT name
582
- FROM sqlite_master
583
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
584
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
585
- Migrating to CreateProjects (20110112183948)
586
- Migrating to CreateTickets (20110112183956)
587
- SQL (0.8ms)  SELECT name
588
- FROM sqlite_master
589
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
590
- 
591
- SQL (0.2ms) SELECT name
592
- FROM sqlite_master
593
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
594
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
595
- Migrating to CreateProjects (20110112183948)
596
- Migrating to CreateTickets (20110112183956)
597
- SQL (0.8ms)  SELECT name
598
- FROM sqlite_master
599
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
600
- 
601
- SQL (0.2ms) SELECT name
602
- FROM sqlite_master
603
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
604
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
605
- Migrating to CreateProjects (20110112183948)
606
- Migrating to CreateTickets (20110112183956)
607
- SQL (0.8ms)  SELECT name
608
- FROM sqlite_master
609
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
610
- 
611
- SQL (0.2ms) SELECT name
612
- FROM sqlite_master
613
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
614
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
615
- Migrating to CreateProjects (20110112183948)
616
- Migrating to CreateTickets (20110112183956)
617
- SQL (0.8ms)  SELECT name
618
- FROM sqlite_master
619
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
620
- 
621
- SQL (0.2ms) SELECT name
622
- FROM sqlite_master
623
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
624
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
625
- Migrating to CreateProjects (20110112183948)
626
- Migrating to CreateTickets (20110112183956)
627
- SQL (0.8ms)  SELECT name
628
- FROM sqlite_master
629
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
630
- 
631
- SQL (0.2ms) SELECT name
632
- FROM sqlite_master
633
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
634
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
635
- Migrating to CreateProjects (20110112183948)
636
- Migrating to CreateTickets (20110112183956)
637
- SQL (0.8ms)  SELECT name
638
- FROM sqlite_master
639
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
640
- 
641
- SQL (0.2ms) SELECT name
642
- FROM sqlite_master
643
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
644
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
645
- Migrating to CreateProjects (20110112183948)
646
- Migrating to CreateTickets (20110112183956)
647
- SQL (0.8ms)  SELECT name
648
- FROM sqlite_master
649
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
650
- 
651
- SQL (0.2ms) SELECT name
652
- FROM sqlite_master
653
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
654
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
655
- Migrating to CreateProjects (20110112183948)
656
- Migrating to CreateTickets (20110112183956)
657
- SQL (0.8ms)  SELECT name
658
- FROM sqlite_master
659
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
660
- 
661
- SQL (0.2ms) SELECT name
662
- FROM sqlite_master
663
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
664
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
665
- Migrating to CreateProjects (20110112183948)
666
- Migrating to CreateTickets (20110112183956)
667
- SQL (0.8ms)  SELECT name
668
- FROM sqlite_master
669
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
670
- 
671
- SQL (0.2ms) SELECT name
672
- FROM sqlite_master
673
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
674
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
675
- Migrating to CreateProjects (20110112183948)
676
- Migrating to CreateTickets (20110112183956)
677
- SQL (0.8ms)  SELECT name
678
- FROM sqlite_master
679
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
680
- 
681
- SQL (0.2ms) SELECT name
682
- FROM sqlite_master
683
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
684
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
685
- Migrating to CreateProjects (20110112183948)
686
- Migrating to CreateTickets (20110112183956)
687
- SQL (0.8ms)  SELECT name
688
- FROM sqlite_master
689
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
690
- 
691
- SQL (0.2ms) SELECT name
692
- FROM sqlite_master
693
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
694
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
695
- Migrating to CreateProjects (20110112183948)
696
- Migrating to CreateTickets (20110112183956)
697
- SQL (0.8ms)  SELECT name
698
- FROM sqlite_master
699
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
700
- 
701
- SQL (0.2ms) SELECT name
702
- FROM sqlite_master
703
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
704
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
705
- Migrating to CreateProjects (20110112183948)
706
- Migrating to CreateTickets (20110112183956)
707
- SQL (0.8ms)  SELECT name
708
- FROM sqlite_master
709
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
710
- 
711
- SQL (0.2ms) SELECT name
712
- FROM sqlite_master
713
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
714
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
715
- Migrating to CreateProjects (20110112183948)
716
- Migrating to CreateTickets (20110112183956)
717
- SQL (0.9ms)  SELECT name
718
- FROM sqlite_master
719
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
720
- 
721
- SQL (0.2ms) SELECT name
722
- FROM sqlite_master
723
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
724
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
725
- Migrating to CreateProjects (20110112183948)
726
- Migrating to CreateTickets (20110112183956)
727
- SQL (0.8ms)  SELECT name
728
- FROM sqlite_master
729
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
730
- 
731
- SQL (0.2ms) SELECT name
732
- FROM sqlite_master
733
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
734
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
735
- Migrating to CreateProjects (20110112183948)
736
- Migrating to CreateTickets (20110112183956)
737
- SQL (0.8ms)  SELECT name
738
- FROM sqlite_master
739
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
740
- 
741
- SQL (0.2ms) SELECT name
742
- FROM sqlite_master
743
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
744
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
745
- Migrating to CreateProjects (20110112183948)
746
- Migrating to CreateTickets (20110112183956)
747
- SQL (0.8ms)  SELECT name
748
- FROM sqlite_master
749
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
750
- 
751
- SQL (0.2ms) SELECT name
752
- FROM sqlite_master
753
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
754
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
755
- Migrating to CreateProjects (20110112183948)
756
- Migrating to CreateTickets (20110112183956)
757
- SQL (0.8ms)  SELECT name
758
- FROM sqlite_master
759
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
760
- 
761
- SQL (0.2ms) SELECT name
762
- FROM sqlite_master
763
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
764
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
765
- Migrating to CreateProjects (20110112183948)
766
- Migrating to CreateTickets (20110112183956)
767
- SQL (0.8ms)  SELECT name
768
- FROM sqlite_master
769
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
770
- 
771
- SQL (0.2ms) SELECT name
772
- FROM sqlite_master
773
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
774
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
775
- Migrating to CreateProjects (20110112183948)
776
- Migrating to CreateTickets (20110112183956)
777
- SQL (0.8ms)  SELECT name
778
- FROM sqlite_master
779
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
780
- 
781
- SQL (0.2ms) SELECT name
782
- FROM sqlite_master
783
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
784
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
785
- Migrating to CreateProjects (20110112183948)
786
- Migrating to CreateTickets (20110112183956)
787
- SQL (0.8ms)  SELECT name
788
- FROM sqlite_master
789
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
790
- 
791
- SQL (0.2ms) SELECT name
792
- FROM sqlite_master
793
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
794
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
795
- Migrating to CreateProjects (20110112183948)
796
- Migrating to CreateTickets (20110112183956)
797
- SQL (0.8ms)  SELECT name
798
- FROM sqlite_master
799
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
800
- 
801
- SQL (0.2ms) SELECT name
802
- FROM sqlite_master
803
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
804
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
805
- Migrating to CreateProjects (20110112183948)
806
- Migrating to CreateTickets (20110112183956)
807
- SQL (0.8ms)  SELECT name
808
- FROM sqlite_master
809
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
810
- 
811
- SQL (0.2ms) SELECT name
812
- FROM sqlite_master
813
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
814
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
815
- Migrating to CreateProjects (20110112183948)
816
- Migrating to CreateTickets (20110112183956)
817
- SQL (0.8ms)  SELECT name
818
- FROM sqlite_master
819
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
820
- 
821
- SQL (0.2ms) SELECT name
822
- FROM sqlite_master
823
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
824
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
825
- Migrating to CreateProjects (20110112183948)
826
- Migrating to CreateTickets (20110112183956)
827
- SQL (0.8ms)  SELECT name
828
- FROM sqlite_master
829
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
830
- 
831
- SQL (0.2ms) SELECT name
832
- FROM sqlite_master
833
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
834
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
835
- Migrating to CreateProjects (20110112183948)
836
- Migrating to CreateTickets (20110112183956)
837
- SQL (0.8ms)  SELECT name
838
- FROM sqlite_master
839
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
840
- 
841
- SQL (0.2ms) SELECT name
842
- FROM sqlite_master
843
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
844
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
845
- Migrating to CreateProjects (20110112183948)
846
- Migrating to CreateTickets (20110112183956)
847
- SQL (0.8ms)  SELECT name
848
- FROM sqlite_master
849
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
850
- 
851
- SQL (0.2ms) SELECT name
852
- FROM sqlite_master
853
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
854
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
855
- Migrating to CreateProjects (20110112183948)
856
- Migrating to CreateTickets (20110112183956)
857
- SQL (0.8ms)  SELECT name
858
- FROM sqlite_master
859
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
860
- 
861
- SQL (0.2ms) SELECT name
862
- FROM sqlite_master
863
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
864
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
865
- Migrating to CreateProjects (20110112183948)
866
- Migrating to CreateTickets (20110112183956)
867
- SQL (0.9ms)  SELECT name
868
- FROM sqlite_master
869
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
870
- 
871
- SQL (0.2ms) SELECT name
872
- FROM sqlite_master
873
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
874
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
875
- Migrating to CreateProjects (20110112183948)
876
- Migrating to CreateTickets (20110112183956)
877
- SQL (0.8ms)  SELECT name
878
- FROM sqlite_master
879
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
880
- 
881
- SQL (0.2ms) SELECT name
882
- FROM sqlite_master
883
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
884
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
885
- Migrating to CreateProjects (20110112183948)
886
- Migrating to CreateTickets (20110112183956)
887
- SQL (0.8ms)  SELECT name
888
- FROM sqlite_master
889
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
890
- 
891
- SQL (0.2ms) SELECT name
892
- FROM sqlite_master
893
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
894
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
895
- Migrating to CreateProjects (20110112183948)
896
- Migrating to CreateTickets (20110112183956)
897
- SQL (0.7ms)  SELECT name
898
- FROM sqlite_master
899
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
900
- 
901
- SQL (0.1ms) SELECT name
902
- FROM sqlite_master
903
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
904
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
905
- Migrating to CreateProjects (20110112183948)
906
- Migrating to CreateTickets (20110112183956)
907
- SQL (0.6ms)  SELECT name
908
- FROM sqlite_master
909
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
910
- 
911
- SQL (0.1ms) SELECT name
912
- FROM sqlite_master
913
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
914
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
915
- Migrating to CreateProjects (20110112183948)
916
- Migrating to CreateTickets (20110112183956)
917
- SQL (0.6ms)  SELECT name
918
- FROM sqlite_master
919
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
920
- 
921
- SQL (0.1ms) SELECT name
922
- FROM sqlite_master
923
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
924
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
925
- Migrating to CreateProjects (20110112183948)
926
- Migrating to CreateTickets (20110112183956)
927
- SQL (0.6ms)  SELECT name
928
- FROM sqlite_master
929
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
930
- 
931
- SQL (0.1ms) SELECT name
932
- FROM sqlite_master
933
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
934
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
935
- Migrating to CreateProjects (20110112183948)
936
- Migrating to CreateTickets (20110112183956)
937
- SQL (0.6ms)  SELECT name
938
- FROM sqlite_master
939
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
940
- 
941
- SQL (0.1ms) SELECT name
942
- FROM sqlite_master
943
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
944
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
945
- Migrating to CreateProjects (20110112183948)
946
- Migrating to CreateTickets (20110112183956)
947
- SQL (0.6ms)  SELECT name
948
- FROM sqlite_master
949
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
950
- 
951
- SQL (0.1ms) SELECT name
952
- FROM sqlite_master
953
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
954
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
955
- Migrating to CreateProjects (20110112183948)
956
- Migrating to CreateTickets (20110112183956)
957
- SQL (1.0ms)  SELECT name
958
- FROM sqlite_master
959
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
960
- 
961
- SQL (0.2ms) SELECT name
962
- FROM sqlite_master
963
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
964
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
965
- Migrating to CreateProjects (20110112183948)
966
- Migrating to CreateTickets (20110112183956)
967
- SQL (0.8ms)  SELECT name
968
- FROM sqlite_master
969
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
970
- 
971
- SQL (0.2ms) SELECT name
972
- FROM sqlite_master
973
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
974
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
975
- Migrating to CreateProjects (20110112183948)
976
- Migrating to CreateTickets (20110112183956)
977
- SQL (0.8ms)  SELECT name
978
- FROM sqlite_master
979
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
980
- 
981
- SQL (0.2ms) SELECT name
982
- FROM sqlite_master
983
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
984
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
985
- Migrating to CreateProjects (20110112183948)
986
- Migrating to CreateTickets (20110112183956)
987
- SQL (0.8ms)  SELECT name
988
- FROM sqlite_master
989
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
990
- 
991
- SQL (0.2ms) SELECT name
992
- FROM sqlite_master
993
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
994
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
995
- Migrating to CreateProjects (20110112183948)
996
- Migrating to CreateTickets (20110112183956)
997
- SQL (0.9ms)  SELECT name
998
- FROM sqlite_master
999
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1000
- 
1001
- SQL (0.2ms) SELECT name
1002
- FROM sqlite_master
1003
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1004
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1005
- Migrating to CreateProjects (20110112183948)
1006
- Migrating to CreateTickets (20110112183956)
1007
- SQL (0.9ms)  SELECT name
1008
- FROM sqlite_master
1009
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1010
- 
1011
- SQL (0.2ms) SELECT name
1012
- FROM sqlite_master
1013
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1014
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1015
- Migrating to CreateProjects (20110112183948)
1016
- Migrating to CreateTickets (20110112183956)
1017
- SQL (0.8ms)  SELECT name
1018
- FROM sqlite_master
1019
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1020
- 
1021
- SQL (0.2ms) SELECT name
1022
- FROM sqlite_master
1023
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1024
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1025
- Migrating to CreateProjects (20110112183948)
1026
- Migrating to CreateTickets (20110112183956)