has_moderated 0.0.9 → 0.0.10

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.
@@ -1,1276 +1,653 @@
1
1
   (0.1ms) select sqlite_version(*)
2
-  (92.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
3
   (0.1ms) PRAGMA index_list("schema_migrations")
4
-  (57.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
-  (0.1ms) select sqlite_version(*)
7
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
5
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
9
-  (0.1ms) select sqlite_version(*)
10
-  (92.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11
-  (0.1ms) PRAGMA index_list("schema_migrations")
12
-  (51.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
-  (0.2ms) SELECT version FROM "schema_migrations"
14
-  (56.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
15
6
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16
7
  Migrating to CreateTasks (20110901013205)
17
-  (0.1ms) select sqlite_version(*)
18
-  (0.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
19
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901013205')
8
+  (0.0ms) select sqlite_version(*)
9
+  (0.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
10
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901013205')
20
11
  Migrating to CreateSubtasks (20110901013228)
21
-  (0.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
22
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901013228')
23
-  (0.2ms) select sqlite_version(*)
24
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
25
-  (0.1ms) PRAGMA index_list("subtasks")
26
-  (0.1ms) PRAGMA index_list("tasks")
27
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
28
-  (0.1ms) select sqlite_version(*)
29
-  (143.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
30
-  (71.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
31
-  (92.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
32
-  (0.1ms) PRAGMA index_list("schema_migrations")
33
-  (79.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
34
-  (0.2ms) SELECT version FROM "schema_migrations"
35
-  (81.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
36
-  (82.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
37
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
38
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
12
+  (0.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
13
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901013228')
14
+ Migrating to CreateModerations (20110901013618)
15
+  (0.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
16
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901013618')
17
+ Migrating to CreateTaskAlls (20110908025410)
18
+  (0.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
19
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110908025410')
20
+ Migrating to AddTaskAllIdToSubtasks (20110908025606)
21
+  (0.9ms) ALTER TABLE "subtasks" ADD "task_all_id" integer
22
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110908025606')
23
+  (0.1ms) select sqlite_version(*)
24
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
25
+  (0.0ms) PRAGMA index_list("moderations")
26
+  (0.0ms) PRAGMA index_list("subtasks")
27
+  (0.0ms) PRAGMA index_list("task_alls")
28
+  (0.0ms) PRAGMA index_list("tasks")
29
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
30
+  (0.1ms) select sqlite_version(*)
31
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
32
+  (1.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
33
+  (1.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
34
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
35
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
36
+  (0.0ms) PRAGMA index_list("schema_migrations")
37
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+  (0.1ms) SELECT version FROM "schema_migrations"
39
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
40
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
41
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
42
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
43
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
44
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
45
+  (0.1ms) select sqlite_version(*)
46
+  (2.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
47
+  (1.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
48
+  (1.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
49
+  (1.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
50
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
51
+  (0.1ms) PRAGMA index_list("schema_migrations")
52
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
53
+  (0.1ms) SELECT version FROM "schema_migrations"
54
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
55
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
56
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
57
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
58
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
59
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
60
+  (0.1ms) select sqlite_version(*)
61
+  (1.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
62
+  (3.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
63
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
64
+  (1.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
65
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
66
+  (0.0ms) PRAGMA index_list("schema_migrations")
67
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
68
+  (0.1ms) SELECT version FROM "schema_migrations"
69
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
70
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
71
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
72
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
73
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
74
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
75
+  (0.1ms) select sqlite_version(*)
76
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
77
+  (1.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
78
+  (1.5ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
79
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
80
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
81
+  (0.0ms) PRAGMA index_list("schema_migrations")
82
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
+  (0.1ms) SELECT version FROM "schema_migrations"
84
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
85
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
86
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
87
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
88
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
89
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
90
+  (0.1ms) select sqlite_version(*)
91
+  (2.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
92
+  (2.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
93
+  (1.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
94
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
95
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
96
+  (0.0ms) PRAGMA index_list("schema_migrations")
97
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
98
+  (0.1ms) SELECT version FROM "schema_migrations"
99
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
100
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
101
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
102
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
103
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
104
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
105
+  (0.1ms) select sqlite_version(*)
106
+  (2.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
107
+  (1.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
108
+  (1.8ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
109
+  (1.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
110
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
111
+  (0.0ms) PRAGMA index_list("schema_migrations")
112
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
113
+  (0.1ms) SELECT version FROM "schema_migrations"
114
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
115
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
116
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
117
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
118
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
119
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
120
+  (0.1ms) select sqlite_version(*)
121
+  (3.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
122
+  (2.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
123
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
124
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
125
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
126
+  (0.1ms) PRAGMA index_list("schema_migrations")
127
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
128
+  (0.1ms) SELECT version FROM "schema_migrations"
129
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
130
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
131
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
132
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
133
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
134
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
135
+  (0.1ms) select sqlite_version(*)
136
+  (2.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
137
+  (3.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
138
+  (1.8ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
139
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
140
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
141
+  (0.1ms) PRAGMA index_list("schema_migrations")
142
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
143
+  (0.1ms) SELECT version FROM "schema_migrations"
144
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
145
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
146
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
147
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
148
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
149
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
150
+  (0.1ms) select sqlite_version(*)
151
+  (2.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
152
+  (2.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
153
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
154
+  (2.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
155
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
156
+  (0.0ms) PRAGMA index_list("schema_migrations")
157
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
158
+  (0.1ms) SELECT version FROM "schema_migrations"
159
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
160
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
161
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
162
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
163
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
164
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
165
+  (0.1ms) select sqlite_version(*)
166
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
167
+  (2.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
168
+  (1.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
169
+  (1.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
170
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
171
+  (0.0ms) PRAGMA index_list("schema_migrations")
172
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
173
+  (0.1ms) SELECT version FROM "schema_migrations"
174
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
175
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
176
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
177
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
178
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
39
179
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
40
180
  Migrating to CreateTasks (20110901013205)
41
181
  Migrating to CreateSubtasks (20110901013228)
42
182
  Migrating to CreateModerations (20110901013618)
43
-  (0.1ms) select sqlite_version(*)
44
-  (0.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
45
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110901013618')
46
-  (0.4ms) select sqlite_version(*)
47
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
48
-  (0.1ms) PRAGMA index_list("moderations")
49
-  (0.1ms) PRAGMA index_list("subtasks")
50
-  (0.1ms) PRAGMA index_list("tasks")
51
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
52
-  (0.1ms) select sqlite_version(*)
53
-  (97.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
54
-  (62.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
55
-  (82.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
56
-  (54.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
57
-  (0.1ms) PRAGMA index_list("schema_migrations")
58
-  (86.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
59
-  (0.2ms) SELECT version FROM "schema_migrations"
60
-  (68.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
61
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
62
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
63
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
64
-  (0.1ms) select sqlite_version(*)
65
-  (94.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
66
-  (54.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
67
-  (84.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
68
-  (61.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
69
-  (0.1ms) PRAGMA index_list("schema_migrations")
70
-  (79.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
71
-  (0.2ms) SELECT version FROM "schema_migrations"
72
-  (50.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
73
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
74
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
75
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
76
-  (0.1ms) select sqlite_version(*)
77
-  (100.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
78
-  (53.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
79
-  (84.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
80
-  (43.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
81
-  (0.1ms) PRAGMA index_list("schema_migrations")
82
-  (80.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
-  (0.2ms) SELECT version FROM "schema_migrations"
84
-  (49.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
85
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
86
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
87
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
88
-  (0.1ms) select sqlite_version(*)
89
-  (94.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
90
-  (53.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
91
-  (76.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
92
-  (60.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
93
-  (0.1ms) PRAGMA index_list("schema_migrations")
94
-  (80.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
-  (0.2ms) SELECT version FROM "schema_migrations"
96
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
97
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
98
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
99
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
100
-  (0.1ms) select sqlite_version(*)
101
-  (83.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
102
-  (54.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
103
-  (84.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
104
-  (52.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
105
-  (0.1ms) PRAGMA index_list("schema_migrations")
106
-  (79.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
107
-  (0.2ms) SELECT version FROM "schema_migrations"
108
-  (42.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
109
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
110
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
111
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
112
-  (0.1ms) select sqlite_version(*)
113
-  (93.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
114
-  (44.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
115
-  (79.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
116
-  (51.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
117
-  (0.1ms) PRAGMA index_list("schema_migrations")
118
-  (73.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
119
-  (0.2ms) SELECT version FROM "schema_migrations"
120
-  (56.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
121
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
122
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
123
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
124
-  (0.1ms) select sqlite_version(*)
125
-  (107.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
126
-  (50.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
127
-  (79.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
128
-  (57.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
129
-  (0.1ms) PRAGMA index_list("schema_migrations")
130
-  (66.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
131
-  (0.2ms) SELECT version FROM "schema_migrations"
132
-  (55.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
133
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
134
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
135
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
136
-  (0.1ms) select sqlite_version(*)
137
-  (98.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
138
-  (62.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
139
-  (85.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
140
-  (51.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
141
-  (0.1ms) PRAGMA index_list("schema_migrations")
142
-  (80.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
143
-  (0.2ms) SELECT version FROM "schema_migrations"
144
-  (57.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
145
-  (49.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
146
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
147
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
148
-  (0.1ms) select sqlite_version(*)
149
-  (103.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
150
-  (61.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
151
-  (86.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
152
-  (51.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
153
-  (0.1ms) PRAGMA index_list("schema_migrations")
154
-  (81.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
-  (0.2ms) SELECT version FROM "schema_migrations"
156
-  (56.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
157
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
158
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
159
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
160
-  (0.1ms) select sqlite_version(*)
161
-  (91.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
162
-  (63.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
163
-  (73.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
164
-  (64.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
165
-  (0.1ms) PRAGMA index_list("schema_migrations")
166
-  (84.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
167
-  (0.2ms) SELECT version FROM "schema_migrations"
168
-  (53.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
169
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
170
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
171
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
172
-  (0.1ms) select sqlite_version(*)
173
-  (93.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
174
-  (65.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
175
-  (82.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
176
-  (63.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
177
-  (0.1ms) PRAGMA index_list("schema_migrations")
178
-  (77.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
179
-  (0.2ms) SELECT version FROM "schema_migrations"
180
-  (52.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
181
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
182
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
183
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
184
-  (0.1ms) select sqlite_version(*)
185
-  (86.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
186
-  (64.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
187
-  (75.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
188
-  (62.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
189
-  (0.1ms) PRAGMA index_list("schema_migrations")
190
-  (78.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
191
-  (0.2ms) SELECT version FROM "schema_migrations"
192
-  (51.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
193
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
194
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
195
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
196
-  (0.1ms) select sqlite_version(*)
197
-  (125.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
198
-  (67.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
199
-  (86.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
200
-  (67.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
201
-  (0.1ms) PRAGMA index_list("schema_migrations")
202
-  (82.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
203
-  (0.2ms) SELECT version FROM "schema_migrations"
204
-  (64.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
205
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
206
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
207
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
208
-  (0.1ms) select sqlite_version(*)
209
-  (107.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
210
-  (73.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
211
-  (79.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
212
-  (65.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
213
-  (0.1ms) PRAGMA index_list("schema_migrations")
214
-  (75.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
215
-  (0.2ms) SELECT version FROM "schema_migrations"
216
-  (63.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
217
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
218
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
219
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
220
-  (0.1ms) select sqlite_version(*)
221
-  (114.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
222
-  (57.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
223
-  (72.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
224
-  (64.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
225
-  (0.1ms) PRAGMA index_list("schema_migrations")
226
-  (76.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
-  (0.2ms) SELECT version FROM "schema_migrations"
228
-  (53.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
229
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
230
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
231
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
232
-  (0.1ms) select sqlite_version(*)
233
-  (142.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
234
-  (56.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
235
-  (82.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
236
-  (54.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
237
-  (0.1ms) PRAGMA index_list("schema_migrations")
238
-  (86.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
239
-  (0.2ms) SELECT version FROM "schema_migrations"
240
-  (52.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
241
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
242
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
243
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
244
-  (0.1ms) select sqlite_version(*)
245
-  (126.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
246
-  (65.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
247
-  (90.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
248
-  (71.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
249
-  (0.1ms) PRAGMA index_list("schema_migrations")
250
-  (86.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
251
-  (0.2ms) SELECT version FROM "schema_migrations"
252
-  (60.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
253
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
254
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
255
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
256
-  (0.1ms) select sqlite_version(*)
257
-  (121.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
258
-  (68.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
259
-  (94.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
260
-  (67.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
261
-  (0.1ms) PRAGMA index_list("schema_migrations")
262
-  (106.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
263
-  (0.2ms) SELECT version FROM "schema_migrations"
264
-  (65.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
265
-  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
266
-  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
267
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
268
-  (0.1ms) select sqlite_version(*)
269
-  (122.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
270
-  (64.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
271
-  (99.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
272
-  (63.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
273
-  (0.1ms) PRAGMA index_list("schema_migrations")
274
-  (94.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
275
-  (0.2ms) SELECT version FROM "schema_migrations"
276
-  (68.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
277
-  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
278
-  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
279
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
280
-  (0.1ms) select sqlite_version(*)
281
-  (139.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
282
-  (63.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
283
-  (90.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
284
-  (63.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
285
-  (0.1ms) PRAGMA index_list("schema_migrations")
286
-  (77.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
287
-  (0.2ms) SELECT version FROM "schema_migrations"
288
-  (69.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
289
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
290
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
291
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
292
-  (0.1ms) select sqlite_version(*)
293
-  (115.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
294
-  (78.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
295
-  (94.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
296
-  (67.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
297
-  (0.1ms) PRAGMA index_list("schema_migrations")
298
-  (98.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
299
-  (0.2ms) SELECT version FROM "schema_migrations"
300
-  (64.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
301
-  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
302
-  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
303
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
304
-  (0.1ms) select sqlite_version(*)
305
-  (114.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
306
-  (63.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
307
-  (100.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
308
-  (70.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
309
-  (0.1ms) PRAGMA index_list("schema_migrations")
310
-  (95.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
311
-  (0.2ms) SELECT version FROM "schema_migrations"
312
-  (67.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
313
-  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
314
-  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
315
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
316
-  (0.1ms) select sqlite_version(*)
317
-  (109.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
318
-  (64.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
319
-  (97.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
320
-  (64.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
321
-  (0.1ms) PRAGMA index_list("schema_migrations")
322
-  (92.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
323
-  (0.2ms) SELECT version FROM "schema_migrations"
324
-  (70.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
325
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
326
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
327
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
328
-  (0.1ms) select sqlite_version(*)
329
-  (115.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
330
-  (64.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
331
-  (99.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
332
-  (71.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
333
-  (0.1ms) PRAGMA index_list("schema_migrations")
334
-  (86.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
335
-  (0.2ms) SELECT version FROM "schema_migrations"
336
-  (68.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
337
-  (91.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
338
-  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
339
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
340
-  (0.1ms) select sqlite_version(*)
341
-  (101.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
342
-  (67.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
343
-  (97.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
344
-  (73.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
345
-  (0.1ms) PRAGMA index_list("schema_migrations")
346
-  (101.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
347
-  (0.2ms) SELECT version FROM "schema_migrations"
348
-  (70.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
349
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
350
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
351
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
352
-  (0.1ms) select sqlite_version(*)
353
-  (131.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
354
-  (71.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
355
-  (84.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
356
-  (77.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
357
-  (0.1ms) PRAGMA index_list("schema_migrations")
358
-  (96.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
359
-  (0.2ms) SELECT version FROM "schema_migrations"
360
-  (75.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
361
-  (82.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
362
-  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
363
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
364
-  (0.1ms) select sqlite_version(*)
365
-  (141.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
366
-  (74.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
367
-  (104.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
368
-  (74.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
369
-  (0.1ms) PRAGMA index_list("schema_migrations")
370
-  (108.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
371
-  (0.2ms) SELECT version FROM "schema_migrations"
372
-  (80.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
373
-  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
374
-  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
375
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
376
-  (0.1ms) select sqlite_version(*)
377
-  (109.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
378
-  (78.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
379
-  (94.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
380
-  (75.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
381
-  (0.1ms) PRAGMA index_list("schema_migrations")
382
-  (90.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
383
-  (0.2ms) SELECT version FROM "schema_migrations"
384
-  (73.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
385
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
386
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
387
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
388
-  (0.1ms) select sqlite_version(*)
389
-  (98.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
390
-  (76.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
391
-  (95.9ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
392
-  (74.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
393
-  (0.1ms) PRAGMA index_list("schema_migrations")
394
-  (91.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
395
-  (0.2ms) SELECT version FROM "schema_migrations"
396
-  (63.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
397
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
398
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
399
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
400
-  (0.1ms) select sqlite_version(*)
401
-  (120.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
402
-  (63.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
403
-  (98.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
404
-  (79.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
405
-  (0.1ms) PRAGMA index_list("schema_migrations")
406
-  (94.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
407
-  (0.2ms) SELECT version FROM "schema_migrations"
408
-  (77.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
409
-  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
410
-  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
411
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
412
-  (0.1ms) select sqlite_version(*)
413
-  (126.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
414
-  (74.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
415
-  (88.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
416
-  (65.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
417
-  (0.1ms) PRAGMA index_list("schema_migrations")
418
-  (91.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
419
-  (0.2ms) SELECT version FROM "schema_migrations"
420
-  (71.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
421
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
422
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
423
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
424
-  (0.1ms) select sqlite_version(*)
425
-  (89.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
426
-  (67.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
427
-  (78.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
428
-  (58.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
429
-  (0.1ms) PRAGMA index_list("schema_migrations")
430
-  (74.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
431
-  (0.2ms) SELECT version FROM "schema_migrations"
432
-  (72.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
433
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
434
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
435
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
436
-  (0.1ms) select sqlite_version(*)
437
-  (98.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
438
-  (71.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
439
-  (76.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
440
-  (69.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
441
-  (0.1ms) PRAGMA index_list("schema_migrations")
442
-  (79.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
443
-  (0.2ms) SELECT version FROM "schema_migrations"
444
-  (58.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
445
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
446
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
447
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
448
-  (0.1ms) select sqlite_version(*)
449
-  (96.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
450
-  (54.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
451
-  (84.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
452
-  (69.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
453
-  (0.1ms) PRAGMA index_list("schema_migrations")
454
-  (79.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
455
-  (0.2ms) SELECT version FROM "schema_migrations"
456
-  (58.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
457
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
458
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
459
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
460
-  (0.1ms) select sqlite_version(*)
461
-  (96.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
462
-  (51.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
463
-  (80.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
464
-  (58.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
465
-  (0.1ms) PRAGMA index_list("schema_migrations")
466
-  (75.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
467
-  (0.2ms) SELECT version FROM "schema_migrations"
468
-  (63.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
469
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
470
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
471
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
472
-  (0.1ms) select sqlite_version(*)
473
-  (92.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
474
-  (65.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
475
-  (82.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
476
-  (54.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
477
-  (0.1ms) PRAGMA index_list("schema_migrations")
478
-  (78.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
479
-  (0.2ms) SELECT version FROM "schema_migrations"
480
-  (59.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
481
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
482
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
483
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
484
-  (0.1ms) select sqlite_version(*)
485
-  (104.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
486
-  (52.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
487
-  (76.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
488
-  (52.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
489
-  (0.1ms) PRAGMA index_list("schema_migrations")
490
-  (80.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
491
-  (0.2ms) SELECT version FROM "schema_migrations"
492
-  (57.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
493
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
494
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
495
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
496
-  (0.1ms) select sqlite_version(*)
497
-  (97.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
498
-  (82.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
499
-  (73.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
500
-  (55.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
501
-  (0.1ms) PRAGMA index_list("schema_migrations")
502
-  (77.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
503
-  (0.2ms) SELECT version FROM "schema_migrations"
504
-  (61.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
505
-  (58.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
506
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
507
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
508
-  (0.1ms) select sqlite_version(*)
509
-  (98.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
510
-  (53.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
511
-  (77.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
512
-  (51.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
513
-  (0.1ms) PRAGMA index_list("schema_migrations")
514
-  (74.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
515
-  (0.2ms) SELECT version FROM "schema_migrations"
516
-  (55.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
517
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
518
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
519
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
520
-  (0.1ms) select sqlite_version(*)
521
-  (94.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
522
-  (54.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
523
-  (74.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
524
-  (54.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
525
-  (0.1ms) PRAGMA index_list("schema_migrations")
526
-  (86.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
527
-  (0.3ms) SELECT version FROM "schema_migrations"
528
-  (51.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
529
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
530
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
531
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
532
-  (0.1ms) select sqlite_version(*)
533
-  (106.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
534
-  (51.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
535
-  (86.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
536
-  (59.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
537
-  (0.1ms) PRAGMA index_list("schema_migrations")
538
-  (81.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
539
-  (0.2ms) SELECT version FROM "schema_migrations"
540
-  (56.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
541
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
542
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
543
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
544
-  (0.1ms) select sqlite_version(*)
545
-  (95.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
546
-  (56.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
547
-  (82.9ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
548
-  (62.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
549
-  (0.1ms) PRAGMA index_list("schema_migrations")
550
-  (78.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
551
-  (0.2ms) SELECT version FROM "schema_migrations"
552
-  (51.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
553
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
554
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
555
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
556
-  (0.1ms) select sqlite_version(*)
557
-  (105.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
558
-  (60.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
559
-  (86.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
560
-  (59.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
561
-  (0.1ms) PRAGMA index_list("schema_migrations")
562
-  (81.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
563
-  (0.2ms) SELECT version FROM "schema_migrations"
564
-  (56.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
565
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
566
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
183
+ Migrating to CreateTaskAlls (20110908025410)
184
+ Migrating to AddTaskAllIdToSubtasks (20110908025606)
185
+ Migrating to CreatePhotos (20111003205633)
186
+  (0.0ms) select sqlite_version(*)
187
+  (0.4ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime) 
188
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111003205633')
189
+  (0.1ms) select sqlite_version(*)
190
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
191
+  (0.0ms) PRAGMA index_list("moderations")
192
+  (0.0ms) PRAGMA index_list("photos")
193
+  (0.0ms) PRAGMA index_list("subtasks")
194
+  (0.0ms) PRAGMA index_list("task_alls")
195
+  (0.0ms) PRAGMA index_list("tasks")
196
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
197
+  (0.1ms) select sqlite_version(*)
198
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
199
+  (1.5ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
200
+  (1.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
201
+  (1.9ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
202
+  (1.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
203
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
204
+  (0.0ms) PRAGMA index_list("schema_migrations")
205
+  (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
206
+  (0.1ms) SELECT version FROM "schema_migrations"
207
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
208
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
209
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
210
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
211
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
212
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
213
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
214
+  (0.1ms) select sqlite_version(*)
215
+  (3.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
216
+  (1.6ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
217
+  (1.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
218
+  (2.1ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
219
+  (1.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
220
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
221
+  (0.0ms) PRAGMA index_list("schema_migrations")
222
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
223
+  (0.1ms) SELECT version FROM "schema_migrations"
224
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
225
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
226
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
227
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
228
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
229
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
230
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
231
+  (0.1ms) select sqlite_version(*)
232
+  (2.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
233
+  (2.3ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
234
+  (1.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
235
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
236
+  (1.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
237
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
238
+  (0.1ms) PRAGMA index_list("schema_migrations")
239
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
240
+  (0.1ms) SELECT version FROM "schema_migrations"
241
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
242
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
243
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
244
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
245
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
246
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
247
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
248
+  (0.1ms) select sqlite_version(*)
249
+  (2.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
250
+  (1.9ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
251
+  (1.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
252
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
253
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
254
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
255
+  (0.1ms) PRAGMA index_list("schema_migrations")
256
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
257
+  (0.1ms) SELECT version FROM "schema_migrations"
258
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
259
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
260
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
261
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
262
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
263
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
264
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
265
+  (0.1ms) select sqlite_version(*)
266
+  (3.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
267
+  (1.5ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
268
+  (1.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
269
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
270
+  (1.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
271
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
272
+  (0.0ms) PRAGMA index_list("schema_migrations")
273
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
274
+  (0.1ms) SELECT version FROM "schema_migrations"
275
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
276
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
277
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
278
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
279
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
280
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
281
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
282
+  (0.1ms) select sqlite_version(*)
283
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
284
+  (2.2ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
285
+  (1.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
286
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
287
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
288
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
289
+  (0.1ms) PRAGMA index_list("schema_migrations")
290
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
291
+  (0.1ms) SELECT version FROM "schema_migrations"
292
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
293
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
294
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
295
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
296
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
297
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
298
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
299
+  (0.1ms) select sqlite_version(*)
300
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
301
+  (1.3ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
302
+  (1.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
303
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
304
+  (1.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
305
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
306
+  (0.0ms) PRAGMA index_list("schema_migrations")
307
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
308
+  (0.1ms) SELECT version FROM "schema_migrations"
309
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
310
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
311
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
312
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
313
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
314
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
315
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
316
+  (0.1ms) select sqlite_version(*)
317
+  (2.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
318
+  (1.7ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
319
+  (1.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
320
+  (1.5ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
321
+  (1.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
322
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
323
+  (0.0ms) PRAGMA index_list("schema_migrations")
324
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
325
+  (0.1ms) SELECT version FROM "schema_migrations"
326
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
327
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
328
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
329
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
330
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
331
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
332
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
333
+  (0.1ms) select sqlite_version(*)
334
+  (1.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
335
+  (1.1ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
336
+  (2.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
337
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
338
+  (1.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
339
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
340
+  (0.0ms) PRAGMA index_list("schema_migrations")
341
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
342
+  (0.1ms) SELECT version FROM "schema_migrations"
343
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
344
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
345
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
346
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
347
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
348
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
349
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
350
+  (0.1ms) select sqlite_version(*)
351
+  (2.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
352
+  (1.5ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
353
+  (1.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
354
+  (1.5ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
355
+  (1.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
356
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
357
+  (0.0ms) PRAGMA index_list("schema_migrations")
358
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
359
+  (0.1ms) SELECT version FROM "schema_migrations"
360
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
361
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
362
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
363
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
364
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
365
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
366
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
367
+  (0.1ms) select sqlite_version(*)
368
+  (2.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
369
+  (1.2ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
370
+  (1.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
371
+  (1.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
372
+  (1.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
373
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
374
+  (0.0ms) PRAGMA index_list("schema_migrations")
375
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
376
+  (0.1ms) SELECT version FROM "schema_migrations"
377
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
378
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
379
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
380
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
381
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
382
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
383
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
384
+  (0.1ms) select sqlite_version(*)
385
+  (2.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
386
+  (2.0ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
387
+  (1.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
388
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
389
+  (1.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
390
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
391
+  (0.0ms) PRAGMA index_list("schema_migrations")
392
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
393
+  (0.1ms) SELECT version FROM "schema_migrations"
394
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
395
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
396
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
397
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
398
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
399
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
400
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
401
+  (0.1ms) select sqlite_version(*)
402
+  (2.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
403
+  (2.0ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
404
+  (1.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
405
+  (1.7ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
406
+  (1.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
407
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
408
+  (0.0ms) PRAGMA index_list("schema_migrations")
409
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
410
+  (0.1ms) SELECT version FROM "schema_migrations"
411
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
412
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
413
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
414
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
415
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
416
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
417
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
418
+  (0.1ms) select sqlite_version(*)
419
+  (2.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
420
+  (2.5ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
421
+  (1.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
422
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
423
+  (1.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
424
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
425
+  (0.0ms) PRAGMA index_list("schema_migrations")
426
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
427
+  (0.1ms) SELECT version FROM "schema_migrations"
428
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
429
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
430
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
431
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
432
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
433
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
434
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
435
+  (0.1ms) select sqlite_version(*)
436
+  (1.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
437
+  (1.4ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
438
+  (1.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
439
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
440
+  (1.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
441
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
442
+  (0.0ms) PRAGMA index_list("schema_migrations")
443
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
444
+  (0.7ms) SELECT version FROM "schema_migrations"
445
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
446
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
447
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
448
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
449
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
450
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
567
451
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
568
452
  Migrating to CreateTasks (20110901013205)
569
453
  Migrating to CreateSubtasks (20110901013228)
570
454
  Migrating to CreateModerations (20110901013618)
571
455
  Migrating to CreateTaskAlls (20110908025410)
572
-  (0.1ms) select sqlite_version(*)
573
-  (0.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
574
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110908025410')
575
456
  Migrating to AddTaskAllIdToSubtasks (20110908025606)
576
-  (0.5ms) ALTER TABLE "subtasks" ADD "task_all_id" integer
577
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110908025606')
578
-  (0.2ms) select sqlite_version(*)
579
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
580
-  (0.1ms) PRAGMA index_list("moderations")
581
-  (0.1ms) PRAGMA index_list("subtasks")
582
-  (0.1ms) PRAGMA index_list("task_alls")
583
-  (0.1ms) PRAGMA index_list("tasks")
584
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
585
-  (0.1ms) select sqlite_version(*)
586
-  (92.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
587
-  (56.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
588
-  (83.7ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
589
-  (53.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
590
-  (85.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
591
-  (0.1ms) PRAGMA index_list("schema_migrations")
592
-  (61.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
593
-  (0.2ms) SELECT version FROM "schema_migrations"
594
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
595
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
596
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
597
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
598
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
457
+ Migrating to CreatePhotos (20111003205633)
458
+ Migrating to CreateTaskPhotos (20111003234101)
459
+  (0.0ms) select sqlite_version(*)
460
+  (0.5ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime) 
461
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111003234101')
462
+  (0.1ms) select sqlite_version(*)
463
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
464
+  (0.0ms) PRAGMA index_list("moderations")
465
+  (0.0ms) PRAGMA index_list("photos")
466
+  (0.0ms) PRAGMA index_list("subtasks")
467
+  (0.0ms) PRAGMA index_list("task_alls")
468
+  (0.0ms) PRAGMA index_list("task_photos")
469
+  (0.0ms) PRAGMA index_list("tasks")
470
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
471
+  (0.1ms) select sqlite_version(*)
472
+  (2.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
473
+  (1.7ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
474
+  (1.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
475
+  (1.5ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
476
+  (1.4ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime) 
477
+  (1.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
478
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
479
+  (0.1ms) PRAGMA index_list("schema_migrations")
480
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
481
+  (0.1ms) SELECT version FROM "schema_migrations"
482
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
483
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
484
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
485
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
486
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
487
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
488
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
489
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
490
+  (0.1ms) select sqlite_version(*)
491
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
492
+  (2.0ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
493
+  (1.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
494
+  (1.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
495
+  (2.4ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime) 
496
+  (1.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
497
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
498
+  (0.0ms) PRAGMA index_list("schema_migrations")
499
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
500
+  (0.1ms) SELECT version FROM "schema_migrations"
501
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
502
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
503
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
504
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
505
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
506
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
507
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
508
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
509
+  (0.1ms) select sqlite_version(*)
510
+  (2.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
511
+  (1.6ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
512
+  (1.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
513
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
514
+  (2.2ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime) 
515
+  (1.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
516
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
517
+  (0.1ms) PRAGMA index_list("schema_migrations")
518
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
519
+  (0.1ms) SELECT version FROM "schema_migrations"
520
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
521
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
522
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
523
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
524
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
525
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
526
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
599
527
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
528
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
529
+ Migrating to CreateTaskPhotos (20111003234101)
530
+  (0.0ms) select sqlite_version(*)
531
+  (0.6ms) DROP TABLE "task_photos"
532
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111003234101'
600
533
   (0.1ms) select sqlite_version(*)
601
-  (114.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
602
-  (58.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
603
-  (72.7ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
604
-  (54.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
605
-  (84.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
606
-  (0.1ms) PRAGMA index_list("schema_migrations")
607
-  (63.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
608
-  (0.2ms) SELECT version FROM "schema_migrations"
609
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
610
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
611
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
612
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
613
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
614
534
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
615
-  (0.1ms) select sqlite_version(*)
616
-  (95.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
617
-  (58.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
618
-  (72.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
619
-  (55.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
620
-  (83.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
621
-  (0.1ms) PRAGMA index_list("schema_migrations")
622
-  (63.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
623
-  (0.2ms) SELECT version FROM "schema_migrations"
624
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
625
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
626
-  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
627
-  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
628
-  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
535
+  (0.0ms) PRAGMA index_list("moderations")
536
+  (0.0ms) PRAGMA index_list("photos")
537
+  (0.0ms) PRAGMA index_list("subtasks")
538
+  (0.0ms) PRAGMA index_list("task_alls")
539
+  (0.0ms) PRAGMA index_list("tasks")
629
540
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
630
541
  Migrating to CreateTasks (20110901013205)
631
542
  Migrating to CreateSubtasks (20110901013228)
632
543
  Migrating to CreateModerations (20110901013618)
633
544
  Migrating to CreateTaskAlls (20110908025410)
634
545
  Migrating to AddTaskAllIdToSubtasks (20110908025606)
635
- Migrating to Testmig (20110908032414)
636
-  (0.1ms) select sqlite_version(*)
637
- Moderation Load (0.2ms) SELECT "moderations".* FROM "moderations" 
638
-  (0.5ms) DROP TABLE "moderations"
639
-  (0.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
640
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110908032414')
641
-  (0.2ms) select sqlite_version(*)
642
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
643
-  (0.1ms) PRAGMA index_list("moderations")
644
-  (0.1ms) PRAGMA index_list("subtasks")
645
-  (0.1ms) PRAGMA index_list("task_alls")
646
-  (0.1ms) PRAGMA index_list("tasks")
647
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
648
-  (0.1ms) select sqlite_version(*)
649
-  (97.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
650
-  (61.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
651
-  (84.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
652
-  (50.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
653
-  (79.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
654
-  (0.1ms) PRAGMA index_list("schema_migrations")
655
-  (59.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
656
-  (0.2ms) SELECT version FROM "schema_migrations"
657
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
658
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
659
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
660
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
661
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
662
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
663
-  (0.1ms) select sqlite_version(*)
664
-  (102.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
665
-  (65.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
666
-  (73.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
667
-  (70.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
668
-  (77.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
669
-  (0.1ms) PRAGMA index_list("schema_migrations")
670
-  (53.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
671
-  (0.2ms) SELECT version FROM "schema_migrations"
672
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
673
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
674
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
675
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
676
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
677
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
678
-  (0.1ms) select sqlite_version(*)
679
-  (95.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
680
-  (65.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
681
-  (79.5ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
682
-  (64.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
683
-  (82.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
684
-  (0.1ms) PRAGMA index_list("schema_migrations")
685
-  (64.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
686
-  (0.2ms) SELECT version FROM "schema_migrations"
687
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
688
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
689
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
690
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
691
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
692
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
693
-  (0.1ms) select sqlite_version(*)
694
-  (103.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
695
-  (62.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
696
-  (82.7ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
697
-  (52.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
698
-  (86.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
699
-  (0.1ms) PRAGMA index_list("schema_migrations")
700
-  (61.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
701
-  (0.2ms) SELECT version FROM "schema_migrations"
702
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
703
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
704
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
705
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
706
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
707
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
708
-  (0.1ms) select sqlite_version(*)
709
-  (149.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
710
-  (66.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
711
-  (87.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
712
-  (56.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
713
-  (73.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
714
-  (0.1ms) PRAGMA index_list("schema_migrations")
715
-  (65.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
716
-  (0.2ms) SELECT version FROM "schema_migrations"
717
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
718
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
719
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
720
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
721
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
722
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
723
-  (0.1ms) select sqlite_version(*)
724
-  (101.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
725
-  (69.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
726
-  (85.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
727
-  (58.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
728
-  (73.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
729
-  (0.1ms) PRAGMA index_list("schema_migrations")
730
-  (65.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
731
-  (0.2ms) SELECT version FROM "schema_migrations"
732
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
733
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
734
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
735
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
736
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
737
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
738
-  (0.1ms) select sqlite_version(*)
739
-  (97.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
740
-  (68.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
741
-  (84.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
742
-  (67.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
743
-  (88.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
744
-  (0.1ms) PRAGMA index_list("schema_migrations")
745
-  (67.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
746
-  (0.2ms) SELECT version FROM "schema_migrations"
747
-  (64.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
748
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
749
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
750
-  (66.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
751
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
752
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
753
-  (0.1ms) select sqlite_version(*)
754
-  (93.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
755
-  (55.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
756
-  (83.1ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
757
-  (60.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
758
-  (78.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
759
-  (0.1ms) PRAGMA index_list("schema_migrations")
760
-  (60.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
761
-  (0.2ms) SELECT version FROM "schema_migrations"
762
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
763
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
764
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
765
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
766
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
767
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
768
-  (0.1ms) select sqlite_version(*)
769
-  (84.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
770
-  (65.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
771
-  (81.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
772
-  (70.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
773
-  (93.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
774
-  (0.1ms) PRAGMA index_list("schema_migrations")
775
-  (70.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
776
-  (0.2ms) SELECT version FROM "schema_migrations"
777
-  (64.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
778
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
779
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
780
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
781
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
782
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
783
-  (0.1ms) select sqlite_version(*)
784
-  (133.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
785
-  (205.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
786
-  (86.9ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
787
-  (73.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
788
-  (81.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
789
-  (0.1ms) PRAGMA index_list("schema_migrations")
790
-  (57.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
791
-  (0.2ms) SELECT version FROM "schema_migrations"
792
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
793
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
794
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
795
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
796
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
797
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
798
-  (0.1ms) select sqlite_version(*)
799
-  (80.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
800
-  (64.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
801
-  (84.0ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
802
-  (69.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
803
-  (78.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
804
-  (0.1ms) PRAGMA index_list("schema_migrations")
805
-  (60.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
806
-  (0.2ms) SELECT version FROM "schema_migrations"
807
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
808
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
809
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
810
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
811
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
812
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
813
-  (0.1ms) select sqlite_version(*)
814
-  (102.9ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
815
-  (66.9ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
816
-  (80.0ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
817
-  (72.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
818
-  (83.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
819
-  (0.1ms) PRAGMA index_list("schema_migrations")
820
-  (72.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
821
-  (0.2ms) SELECT version FROM "schema_migrations"
822
-  (64.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
823
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
824
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
825
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
826
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
827
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
828
-  (0.1ms) select sqlite_version(*)
829
-  (98.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
830
-  (70.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
831
-  (84.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
832
-  (76.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
833
-  (88.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
834
-  (0.1ms) PRAGMA index_list("schema_migrations")
835
-  (67.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
836
-  (0.2ms) SELECT version FROM "schema_migrations"
837
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
838
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
839
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
840
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
841
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
842
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
843
-  (0.1ms) select sqlite_version(*)
844
-  (96.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
845
-  (73.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
846
-  (73.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
847
-  (70.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
848
-  (85.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
849
-  (0.1ms) PRAGMA index_list("schema_migrations")
850
-  (70.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
851
-  (0.2ms) SELECT version FROM "schema_migrations"
852
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
853
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
854
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
855
-  (220.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
856
-  (62.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
857
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
858
-  (0.1ms) select sqlite_version(*)
859
-  (152.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
860
-  (67.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
861
-  (79.8ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
862
-  (80.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
863
-  (83.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
864
-  (0.1ms) PRAGMA index_list("schema_migrations")
865
-  (72.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
866
-  (0.2ms) SELECT version FROM "schema_migrations"
867
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
868
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
869
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
870
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
871
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
872
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
873
-  (0.1ms) select sqlite_version(*)
874
-  (100.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
875
-  (61.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
876
-  (85.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
877
-  (58.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
878
-  (88.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
879
-  (0.1ms) PRAGMA index_list("schema_migrations")
880
-  (75.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
881
-  (0.2ms) SELECT version FROM "schema_migrations"
882
-  (55.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
883
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
884
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
885
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
886
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
887
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
888
-  (0.1ms) select sqlite_version(*)
889
-  (98.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
890
-  (65.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
891
-  (82.8ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
892
-  (69.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
893
-  (86.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
894
-  (0.1ms) PRAGMA index_list("schema_migrations")
895
-  (61.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
896
-  (0.2ms) SELECT version FROM "schema_migrations"
897
-  (64.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
898
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
899
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
900
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
901
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
902
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
903
-  (0.1ms) select sqlite_version(*)
904
-  (103.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
905
-  (60.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
906
-  (86.9ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
907
-  (73.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
908
-  (73.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
909
-  (0.1ms) PRAGMA index_list("schema_migrations")
910
-  (65.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
911
-  (0.3ms) SELECT version FROM "schema_migrations"
912
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
913
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
914
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
915
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
916
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
917
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
918
-  (0.1ms) select sqlite_version(*)
919
-  (107.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
920
-  (60.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
921
-  (78.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
922
-  (65.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
923
-  (81.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
924
-  (0.1ms) PRAGMA index_list("schema_migrations")
925
-  (57.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
926
-  (0.3ms) SELECT version FROM "schema_migrations"
927
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
928
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
929
-  (99.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
930
-  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
931
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
932
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
933
-  (0.1ms) select sqlite_version(*)
934
-  (85.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
935
-  (63.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
936
-  (84.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
937
-  (59.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
938
-  (87.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
939
-  (0.1ms) PRAGMA index_list("schema_migrations")
940
-  (68.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
941
-  (0.2ms) SELECT version FROM "schema_migrations"
942
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
943
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
944
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
945
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
946
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
947
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
948
-  (0.1ms) select sqlite_version(*)
949
-  (128.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
950
-  (126.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
951
-  (120.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
952
-  (64.9ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
953
-  (91.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
954
-  (0.1ms) PRAGMA index_list("schema_migrations")
955
-  (63.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
956
-  (0.2ms) SELECT version FROM "schema_migrations"
957
-  (76.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
958
-  (62.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
959
-  (53.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
960
-  (58.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
961
-  (57.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
962
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
963
-  (0.1ms) select sqlite_version(*)
964
-  (90.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
965
-  (64.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
966
-  (83.7ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
967
-  (69.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
968
-  (85.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
969
-  (0.1ms) PRAGMA index_list("schema_migrations")
970
-  (61.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
971
-  (0.3ms) SELECT version FROM "schema_migrations"
972
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
973
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
974
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
975
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
976
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
977
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
978
-  (0.1ms) select sqlite_version(*)
979
-  (103.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
980
-  (66.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
981
-  (71.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
982
-  (64.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
983
-  (74.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
984
-  (0.1ms) PRAGMA index_list("schema_migrations")
985
-  (56.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
986
-  (0.3ms) SELECT version FROM "schema_migrations"
987
-  (64.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
988
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
989
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
990
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
991
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
992
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
993
-  (0.1ms) select sqlite_version(*)
994
-  (102.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
995
-  (62.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
996
-  (84.8ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
997
-  (67.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
998
-  (79.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
999
-  (0.1ms) PRAGMA index_list("schema_migrations")
1000
-  (67.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1001
-  (0.2ms) SELECT version FROM "schema_migrations"
1002
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1003
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1004
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1005
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1006
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1007
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1008
-  (0.1ms) select sqlite_version(*)
1009
-  (98.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1010
-  (64.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1011
-  (90.5ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1012
-  (61.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1013
-  (85.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1014
-  (0.1ms) PRAGMA index_list("schema_migrations")
1015
-  (70.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1016
-  (0.3ms) SELECT version FROM "schema_migrations"
1017
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1018
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1019
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1020
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1021
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1022
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1023
-  (0.1ms) select sqlite_version(*)
1024
-  (90.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1025
-  (60.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1026
-  (85.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1027
-  (58.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1028
-  (80.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1029
-  (0.1ms) PRAGMA index_list("schema_migrations")
1030
-  (66.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1031
-  (0.2ms) SELECT version FROM "schema_migrations"
1032
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1033
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1034
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1035
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1036
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1037
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1038
-  (0.1ms) select sqlite_version(*)
1039
-  (101.5ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1040
-  (70.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1041
-  (86.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1042
-  (67.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1043
-  (88.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1044
-  (0.1ms) PRAGMA index_list("schema_migrations")
1045
-  (67.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1046
-  (0.3ms) SELECT version FROM "schema_migrations"
1047
-  (64.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1048
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1049
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1050
-  (66.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1051
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1052
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1053
-  (0.1ms) select sqlite_version(*)
1054
-  (102.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1055
-  (66.2ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1056
-  (80.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1057
-  (63.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1058
-  (84.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1059
-  (0.2ms) PRAGMA index_list("schema_migrations")
1060
-  (71.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1061
-  (0.3ms) SELECT version FROM "schema_migrations"
1062
-  (64.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1063
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1064
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1065
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1066
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1067
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1068
-  (0.1ms) select sqlite_version(*)
1069
-  (95.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1070
-  (53.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1071
-  (84.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1072
-  (67.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1073
-  (87.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1074
-  (0.1ms) PRAGMA index_list("schema_migrations")
1075
-  (68.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1076
-  (0.2ms) SELECT version FROM "schema_migrations"
1077
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1078
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1079
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1080
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1081
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1082
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1083
-  (0.1ms) select sqlite_version(*)
1084
-  (98.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1085
-  (58.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1086
-  (72.8ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1087
-  (55.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1088
-  (74.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1089
-  (0.1ms) PRAGMA index_list("schema_migrations")
1090
-  (64.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1091
-  (0.2ms) SELECT version FROM "schema_migrations"
1092
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1093
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1094
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1095
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1096
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1097
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1098
-  (0.1ms) select sqlite_version(*)
1099
-  (104.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1100
-  (62.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1101
-  (86.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1102
-  (65.6ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1103
-  (81.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1104
-  (0.1ms) PRAGMA index_list("schema_migrations")
1105
-  (57.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1106
-  (0.3ms) SELECT version FROM "schema_migrations"
1107
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1108
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1109
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1110
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1111
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1112
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1113
-  (0.1ms) select sqlite_version(*)
1114
-  (123.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1115
-  (55.1ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1116
-  (73.1ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1117
-  (62.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1118
-  (84.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1119
-  (0.1ms) PRAGMA index_list("schema_migrations")
1120
-  (62.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1121
-  (0.2ms) SELECT version FROM "schema_migrations"
1122
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1123
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1124
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1125
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1126
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1127
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1128
-  (0.1ms) select sqlite_version(*)
1129
-  (88.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1130
-  (68.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1131
-  (76.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1132
-  (67.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1133
-  (79.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1134
-  (0.1ms) PRAGMA index_list("schema_migrations")
1135
-  (59.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1136
-  (0.2ms) SELECT version FROM "schema_migrations"
1137
-  (55.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1138
-  (49.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1139
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1140
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1141
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1142
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1143
-  (0.1ms) select sqlite_version(*)
1144
-  (88.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1145
-  (62.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1146
-  (82.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1147
-  (69.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1148
-  (77.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1149
-  (0.1ms) PRAGMA index_list("schema_migrations")
1150
-  (61.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1151
-  (0.2ms) SELECT version FROM "schema_migrations"
1152
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1153
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1154
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1155
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1156
-  (49.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1157
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1158
-  (0.1ms) select sqlite_version(*)
1159
-  (103.2ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1160
-  (58.0ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1161
-  (71.8ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1162
-  (71.9ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1163
-  (84.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1164
-  (0.1ms) PRAGMA index_list("schema_migrations")
1165
-  (71.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1166
-  (0.2ms) SELECT version FROM "schema_migrations"
1167
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1168
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1169
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1170
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1171
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1172
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1173
-  (0.1ms) select sqlite_version(*)
1174
-  (125.3ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1175
-  (58.8ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1176
-  (71.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1177
-  (72.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1178
-  (74.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1179
-  (0.1ms) PRAGMA index_list("schema_migrations")
1180
-  (64.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1181
-  (0.2ms) SELECT version FROM "schema_migrations"
1182
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1183
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1184
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1185
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1186
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1187
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1188
-  (0.1ms) select sqlite_version(*)
1189
-  (98.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1190
-  (71.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1191
-  (90.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1192
-  (70.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1193
-  (93.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1194
-  (0.1ms) PRAGMA index_list("schema_migrations")
1195
-  (70.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1196
-  (0.2ms) SELECT version FROM "schema_migrations"
1197
-  (64.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1198
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1199
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1200
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1201
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1202
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1203
-  (0.1ms) select sqlite_version(*)
1204
-  (105.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1205
-  (52.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1206
-  (87.0ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1207
-  (65.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1208
-  (82.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1209
-  (0.1ms) PRAGMA index_list("schema_migrations")
1210
-  (65.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1211
-  (0.2ms) SELECT version FROM "schema_migrations"
1212
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1213
-  (57.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1214
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1215
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1216
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1217
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1218
-  (0.1ms) select sqlite_version(*)
1219
-  (90.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1220
-  (62.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1221
-  (77.1ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1222
-  (51.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1223
-  (87.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1224
-  (0.1ms) PRAGMA index_list("schema_migrations")
1225
-  (60.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1226
-  (0.2ms) SELECT version FROM "schema_migrations"
1227
-  (55.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1228
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1229
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1230
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1231
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1232
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1233
-  (0.1ms) select sqlite_version(*)
1234
-  (107.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1235
-  (65.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1236
-  (88.6ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1237
-  (63.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1238
-  (91.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1239
-  (0.1ms) PRAGMA index_list("schema_migrations")
1240
-  (69.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1241
-  (0.3ms) SELECT version FROM "schema_migrations"
1242
-  (58.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1243
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1244
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1245
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1246
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1247
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1248
-  (0.1ms) select sqlite_version(*)
1249
-  (106.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1250
-  (58.6ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1251
-  (80.1ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1252
-  (71.9ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1253
-  (91.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1254
-  (0.1ms) PRAGMA index_list("schema_migrations")
1255
-  (72.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1256
-  (0.2ms) SELECT version FROM "schema_migrations"
1257
-  (72.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1258
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1259
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1260
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1261
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
1262
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1263
-  (0.1ms) select sqlite_version(*)
1264
-  (107.1ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
1265
-  (64.5ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
1266
-  (72.1ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
1267
-  (54.8ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
1268
-  (83.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1269
-  (0.1ms) PRAGMA index_list("schema_migrations")
1270
-  (71.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1271
-  (0.3ms) SELECT version FROM "schema_migrations"
1272
-  (64.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
1273
-  (66.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
1274
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
1275
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
1276
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
546
+ Migrating to CreatePhotos (20111003205633)
547
+ Migrating to CreateTaskPhotos (20111003234101)
548
+  (0.0ms) select sqlite_version(*)
549
+  (0.5ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime) 
550
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111003234101')
551
+  (0.1ms) select sqlite_version(*)
552
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
553
+  (0.0ms) PRAGMA index_list("moderations")
554
+  (0.0ms) PRAGMA index_list("photos")
555
+  (0.0ms) PRAGMA index_list("subtasks")
556
+  (0.0ms) PRAGMA index_list("task_alls")
557
+  (0.0ms) PRAGMA index_list("task_photos")
558
+  (0.0ms) PRAGMA index_list("tasks")
559
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
560
+  (0.1ms) select sqlite_version(*)
561
+  (6.8ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
562
+  (1.5ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
563
+  (1.3ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
564
+  (3.5ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
565
+  (2.0ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime) 
566
+  (1.5ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
567
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
568
+  (0.1ms) PRAGMA index_list("schema_migrations")
569
+  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
570
+  (0.1ms) SELECT version FROM "schema_migrations"
571
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
572
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
573
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
574
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
575
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
576
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
577
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
578
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
579
+  (0.1ms) select sqlite_version(*)
580
+  (2.6ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
581
+  (1.3ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
582
+  (1.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
583
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
584
+  (2.3ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime) 
585
+  (1.9ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
586
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
587
+  (0.0ms) PRAGMA index_list("schema_migrations")
588
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
589
+  (0.1ms) SELECT version FROM "schema_migrations"
590
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
591
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
592
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
593
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
594
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
595
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
596
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
597
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
598
+  (0.1ms) select sqlite_version(*)
599
+  (2.4ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
600
+  (1.6ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
601
+  (1.7ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
602
+  (1.3ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
603
+  (1.6ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime) 
604
+  (2.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
605
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
606
+  (0.0ms) PRAGMA index_list("schema_migrations")
607
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
608
+  (0.1ms) SELECT version FROM "schema_migrations"
609
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
610
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
611
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
612
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
613
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
614
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
615
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
616
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
617
+  (0.1ms) select sqlite_version(*)
618
+  (3.0ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
619
+  (1.2ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
620
+  (1.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
621
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
622
+  (1.4ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime) 
623
+  (2.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
624
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
625
+  (0.1ms) PRAGMA index_list("schema_migrations")
626
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
627
+  (0.1ms) SELECT version FROM "schema_migrations"
628
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
629
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
630
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
631
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
632
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
633
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
634
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
635
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
636
+  (0.1ms) select sqlite_version(*)
637
+  (2.7ms) CREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
638
+  (2.4ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime)
639
+  (1.4ms) CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer) 
640
+  (1.4ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
641
+  (1.5ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime) 
642
+  (1.7ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime)
643
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
644
+  (0.0ms) PRAGMA index_list("schema_migrations")
645
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
646
+  (0.1ms) SELECT version FROM "schema_migrations"
647
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
648
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
649
+  (4.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
650
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
651
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
652
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
653
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')