notify_with 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +30 -0
  4. data/app/controllers/concerns/notify_with/notifications_api.rb +38 -0
  5. data/app/mailers/notify_with/notifications_mailer.rb +29 -0
  6. data/app/models/concerns/notify_with/notification.rb +47 -0
  7. data/app/models/concerns/notify_with/notification_receiver.rb +9 -0
  8. data/app/models/concerns/notify_with/notification_type.rb +23 -0
  9. data/config/routes.rb +2 -0
  10. data/lib/generators/notify_with/install/USAGE +15 -0
  11. data/lib/generators/notify_with/install/install_generator.rb +62 -0
  12. data/lib/generators/notify_with/install/templates/create_notification.rb +13 -0
  13. data/lib/generators/notify_with/install/templates/index.json.jbuilder +9 -0
  14. data/lib/generators/notify_with/install/templates/notification.rb +3 -0
  15. data/lib/generators/notify_with/install/templates/notification_type.rb +6 -0
  16. data/lib/generators/notify_with/install/templates/notifications_controller.rb +3 -0
  17. data/lib/generators/notify_with/install/templates/notifications_mailer.rb +4 -0
  18. data/lib/generators/notify_with/install/templates/notify_with.rb +1 -0
  19. data/lib/generators/notify_with/install/templates/show.json.jbuilder +5 -0
  20. data/lib/generators/notify_with/notification/USAGE +11 -0
  21. data/lib/generators/notify_with/notification/notification_generator.rb +33 -0
  22. data/lib/notify_with/engine.rb +12 -0
  23. data/lib/notify_with/version.rb +3 -0
  24. data/lib/notify_with.rb +5 -0
  25. data/lib/tasks/notify_with_tasks.rake +4 -0
  26. data/spec/controllers/notifications_controller_spec.rb +57 -0
  27. data/spec/dummy/README.rdoc +28 -0
  28. data/spec/dummy/Rakefile +6 -0
  29. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  30. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  31. data/spec/dummy/app/controllers/api/notifications_controller.rb +6 -0
  32. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  33. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  34. data/spec/dummy/app/mailers/notifications_mailer.rb +4 -0
  35. data/spec/dummy/app/models/message.rb +2 -0
  36. data/spec/dummy/app/models/notification.rb +3 -0
  37. data/spec/dummy/app/models/notification_type.rb +7 -0
  38. data/spec/dummy/app/models/user.rb +3 -0
  39. data/spec/dummy/app/views/api/notifications/_notify_new_message.json.jbuilder +3 -0
  40. data/spec/dummy/app/views/api/notifications/index.json.jbuilder +9 -0
  41. data/spec/dummy/app/views/api/notifications/show.json.jbuilder +5 -0
  42. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  43. data/spec/dummy/app/views/notifications_mailer/notify_new_message.html.erb +2 -0
  44. data/spec/dummy/bin/bundle +3 -0
  45. data/spec/dummy/bin/rails +4 -0
  46. data/spec/dummy/bin/rake +4 -0
  47. data/spec/dummy/bin/setup +29 -0
  48. data/spec/dummy/config/application.rb +34 -0
  49. data/spec/dummy/config/boot.rb +5 -0
  50. data/spec/dummy/config/database.yml +25 -0
  51. data/spec/dummy/config/environment.rb +5 -0
  52. data/spec/dummy/config/environments/development.rb +41 -0
  53. data/spec/dummy/config/environments/production.rb +79 -0
  54. data/spec/dummy/config/environments/test.rb +42 -0
  55. data/spec/dummy/config/initializers/assets.rb +11 -0
  56. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  57. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  58. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  59. data/spec/dummy/config/initializers/inflections.rb +16 -0
  60. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  61. data/spec/dummy/config/initializers/notify_with.rb +1 -0
  62. data/spec/dummy/config/initializers/session_store.rb +3 -0
  63. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  64. data/spec/dummy/config/locales/en.yml +4 -0
  65. data/spec/dummy/config/routes.rb +10 -0
  66. data/spec/dummy/config/secrets.yml +22 -0
  67. data/spec/dummy/config.ru +4 -0
  68. data/spec/dummy/db/development.sqlite3 +0 -0
  69. data/spec/dummy/db/migrate/20150213150625_create_users.rb +10 -0
  70. data/spec/dummy/db/migrate/20150213152846_create_messages.rb +9 -0
  71. data/spec/dummy/db/migrate/20150216115438_create_notification.rb +13 -0
  72. data/spec/dummy/db/schema.rb +41 -0
  73. data/spec/dummy/db/test.sqlite3 +0 -0
  74. data/spec/dummy/log/development.log +2402 -0
  75. data/spec/dummy/log/test.log +37779 -0
  76. data/spec/dummy/public/404.html +67 -0
  77. data/spec/dummy/public/422.html +67 -0
  78. data/spec/dummy/public/500.html +66 -0
  79. data/spec/dummy/public/favicon.ico +0 -0
  80. data/spec/factories/message.rb +5 -0
  81. data/spec/factories/notification.rb +7 -0
  82. data/spec/factories/user.rb +9 -0
  83. data/spec/mailers/notifications_mailer_spec.rb +32 -0
  84. data/spec/models/notification_spec.rb +69 -0
  85. data/spec/notify_with_spec.rb +11 -0
  86. data/spec/rails_helper.rb +52 -0
  87. data/spec/spec_helper.rb +87 -0
  88. data/spec/support/factory_girl.rb +3 -0
  89. metadata +278 -0
@@ -0,0 +1,2402 @@
1
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.4ms) select sqlite_version(*)
3
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateNotifyWithNotifications (20150213142644)
6
+  (0.1ms) begin transaction
7
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+  (0.8ms) rollback transaction
9
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+ Migrating to CreateNotifyWithNotifications (20150213142644)
11
+  (0.1ms) begin transaction
12
+  (0.4ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
13
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150213142644"]]
14
+  (0.8ms) commit transaction
15
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
17
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
18
+  (0.1ms) select sqlite_version(*)
19
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+  (0.1ms) SELECT version FROM "schema_migrations"
21
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
22
+  (9.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
23
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
24
+  (0.1ms) select sqlite_version(*)
25
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26
+  (0.1ms) SELECT version FROM "schema_migrations"
27
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
28
+  (9.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
29
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
30
+  (0.1ms) select sqlite_version(*)
31
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
32
+  (0.1ms) SELECT version FROM "schema_migrations"
33
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
34
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
35
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
36
+  (0.1ms) select sqlite_version(*)
37
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+  (0.1ms) SELECT version FROM "schema_migrations"
39
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
40
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
41
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
42
+  (0.1ms) select sqlite_version(*)
43
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
44
+  (0.1ms) SELECT version FROM "schema_migrations"
45
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
46
+  (1.5ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
47
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
48
+  (0.1ms) select sqlite_version(*)
49
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
50
+  (0.1ms) SELECT version FROM "schema_migrations"
51
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
52
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
53
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
54
+  (0.1ms) select sqlite_version(*)
55
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
56
+  (0.1ms) SELECT version FROM "schema_migrations"
57
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
58
+  (1.4ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
59
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
60
+  (0.1ms) select sqlite_version(*)
61
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
+  (0.1ms) SELECT version FROM "schema_migrations"
63
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
64
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
65
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
66
+  (0.1ms) select sqlite_version(*)
67
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
68
+  (0.1ms) SELECT version FROM "schema_migrations"
69
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
70
+  (1.4ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
71
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
72
+  (0.1ms) select sqlite_version(*)
73
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
74
+  (0.1ms) SELECT version FROM "schema_migrations"
75
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
76
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
77
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
78
+  (0.1ms) select sqlite_version(*)
79
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
80
+  (0.1ms) SELECT version FROM "schema_migrations"
81
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
82
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
83
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
84
+  (0.1ms) select sqlite_version(*)
85
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
86
+  (0.1ms) SELECT version FROM "schema_migrations"
87
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
88
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
89
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
90
+  (0.1ms) select sqlite_version(*)
91
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
92
+  (0.1ms) SELECT version FROM "schema_migrations"
93
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
94
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
95
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
96
+  (0.1ms) select sqlite_version(*)
97
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
98
+  (0.1ms) SELECT version FROM "schema_migrations"
99
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
100
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
101
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
102
+  (0.1ms) select sqlite_version(*)
103
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
104
+  (0.3ms) SELECT version FROM "schema_migrations"
105
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
106
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
107
+ Migrating to CreateUsers (20150213150625)
108
+  (0.1ms) begin transaction
109
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
110
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150213150625"]]
111
+  (0.9ms) commit transaction
112
+ Migrating to CreateMessages (20150213152846)
113
+  (0.1ms) begin transaction
114
+  (0.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
115
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150213152846"]]
116
+  (0.8ms) commit transaction
117
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
118
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
119
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
120
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
121
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
122
+  (0.1ms) select sqlite_version(*)
123
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
124
+  (0.1ms) SELECT version FROM "schema_migrations"
125
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
126
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
127
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
128
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
129
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
130
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
131
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
132
+  (0.1ms) select sqlite_version(*)
133
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
134
+  (0.1ms) SELECT version FROM "schema_migrations"
135
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
136
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
137
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
138
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
139
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
140
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
141
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
142
+  (0.1ms) select sqlite_version(*)
143
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
144
+  (0.1ms) SELECT version FROM "schema_migrations"
145
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
146
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
147
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
148
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
149
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
150
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
151
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
152
+  (0.1ms) select sqlite_version(*)
153
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
154
+  (0.1ms) SELECT version FROM "schema_migrations"
155
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
156
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
157
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
158
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
159
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
160
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
161
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
162
+  (0.1ms) select sqlite_version(*)
163
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
164
+  (0.1ms) SELECT version FROM "schema_migrations"
165
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
166
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
167
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
168
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
169
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
170
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
171
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
172
+  (0.1ms) select sqlite_version(*)
173
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
+  (0.1ms) SELECT version FROM "schema_migrations"
175
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
176
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
177
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
178
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
179
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
180
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
181
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
182
+  (0.1ms) select sqlite_version(*)
183
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
184
+  (0.1ms) SELECT version FROM "schema_migrations"
185
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
186
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
187
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
188
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
189
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
191
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
192
+  (0.1ms) select sqlite_version(*)
193
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
194
+  (0.1ms) SELECT version FROM "schema_migrations"
195
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
196
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
197
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
198
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
199
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
200
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
201
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
202
+  (0.1ms) select sqlite_version(*)
203
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
204
+  (0.1ms) SELECT version FROM "schema_migrations"
205
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
206
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
207
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
208
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
209
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
210
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
211
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
212
+  (0.1ms) select sqlite_version(*)
213
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
214
+  (0.1ms) SELECT version FROM "schema_migrations"
215
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
216
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
217
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
218
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
219
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
220
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
221
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
222
+  (0.1ms) select sqlite_version(*)
223
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
224
+  (0.1ms) SELECT version FROM "schema_migrations"
225
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
226
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
227
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
228
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
229
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
230
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
231
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
232
+  (0.1ms) select sqlite_version(*)
233
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
234
+  (0.1ms) SELECT version FROM "schema_migrations"
235
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
236
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
237
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
238
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
239
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
240
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
241
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
242
+  (0.1ms) select sqlite_version(*)
243
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
244
+  (0.1ms) SELECT version FROM "schema_migrations"
245
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
246
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
247
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
248
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
249
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
250
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
251
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
252
+  (0.1ms) select sqlite_version(*)
253
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
254
+  (0.1ms) SELECT version FROM "schema_migrations"
255
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
256
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
257
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
258
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
259
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
260
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
261
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
262
+  (0.1ms) select sqlite_version(*)
263
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
264
+  (0.1ms) SELECT version FROM "schema_migrations"
265
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
266
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
267
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
268
+ Notification Load (8.5ms) SELECT "notify_with_notifications".* FROM "notify_with_notifications"
269
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
270
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
271
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
272
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
273
+  (0.1ms) select sqlite_version(*)
274
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
275
+  (0.1ms) SELECT version FROM "schema_migrations"
276
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
277
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
278
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
279
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
280
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
281
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
282
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
283
+  (0.1ms) select sqlite_version(*)
284
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
285
+  (0.1ms) SELECT version FROM "schema_migrations"
286
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
287
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
288
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
289
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
290
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
291
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
292
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
293
+  (0.1ms) select sqlite_version(*)
294
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
295
+  (0.1ms) SELECT version FROM "schema_migrations"
296
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
297
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
298
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
299
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
300
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
301
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
302
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
303
+  (0.1ms) select sqlite_version(*)
304
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
305
+  (0.1ms) SELECT version FROM "schema_migrations"
306
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
307
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
308
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
309
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
310
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
311
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
312
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
313
+  (0.1ms) select sqlite_version(*)
314
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
315
+  (0.1ms) SELECT version FROM "schema_migrations"
316
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
317
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
318
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
319
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
320
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
321
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
322
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
323
+  (0.1ms) select sqlite_version(*)
324
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
325
+  (0.1ms) SELECT version FROM "schema_migrations"
326
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
327
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
328
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
329
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
330
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
331
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
332
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
333
+  (0.1ms) select sqlite_version(*)
334
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
335
+  (0.1ms) SELECT version FROM "schema_migrations"
336
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
337
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
338
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
339
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
340
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
341
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
342
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
343
+  (0.1ms) select sqlite_version(*)
344
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
345
+  (0.1ms) SELECT version FROM "schema_migrations"
346
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
347
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
348
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
349
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
350
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
351
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
352
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
353
+  (0.1ms) select sqlite_version(*)
354
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
355
+  (0.1ms) SELECT version FROM "schema_migrations"
356
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
357
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
358
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
359
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
360
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
361
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
362
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
363
+  (0.1ms) select sqlite_version(*)
364
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
365
+  (0.1ms) SELECT version FROM "schema_migrations"
366
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
367
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
368
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
369
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
370
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
371
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
372
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
373
+  (0.1ms) select sqlite_version(*)
374
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
375
+  (0.1ms) SELECT version FROM "schema_migrations"
376
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
377
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
378
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
379
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
380
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
381
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
382
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
383
+  (0.1ms) select sqlite_version(*)
384
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
385
+  (0.1ms) SELECT version FROM "schema_migrations"
386
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
387
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
388
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
389
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
390
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
391
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
392
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
393
+  (0.1ms) select sqlite_version(*)
394
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
395
+  (0.1ms) SELECT version FROM "schema_migrations"
396
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
397
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
398
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
399
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
400
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
401
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
402
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
403
+  (0.1ms) select sqlite_version(*)
404
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
405
+  (0.1ms) SELECT version FROM "schema_migrations"
406
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
407
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
408
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
409
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
410
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
411
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
412
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
413
+  (0.1ms) select sqlite_version(*)
414
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
415
+  (0.1ms) SELECT version FROM "schema_migrations"
416
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
417
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
418
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
419
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
420
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
421
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
422
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
423
+  (0.1ms) select sqlite_version(*)
424
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
425
+  (0.1ms) SELECT version FROM "schema_migrations"
426
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
427
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
428
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
429
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
430
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
431
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
432
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
433
+  (0.1ms) select sqlite_version(*)
434
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
435
+  (0.1ms) SELECT version FROM "schema_migrations"
436
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
437
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
438
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
439
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
440
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
441
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
442
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
443
+  (0.1ms) select sqlite_version(*)
444
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
445
+  (0.2ms) SELECT version FROM "schema_migrations"
446
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
447
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
448
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
449
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
450
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
451
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
452
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
453
+  (0.1ms) select sqlite_version(*)
454
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
455
+  (0.1ms) SELECT version FROM "schema_migrations"
456
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
457
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
458
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
459
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
460
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
461
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
462
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
463
+  (0.1ms) select sqlite_version(*)
464
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
465
+  (0.1ms) SELECT version FROM "schema_migrations"
466
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
467
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
468
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
469
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
470
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
471
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
472
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
473
+  (0.1ms) select sqlite_version(*)
474
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
475
+  (0.1ms) SELECT version FROM "schema_migrations"
476
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
477
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
478
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
479
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
480
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
481
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
482
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
483
+  (0.1ms) select sqlite_version(*)
484
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
485
+  (0.1ms) SELECT version FROM "schema_migrations"
486
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
487
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
488
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
489
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
490
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
491
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
492
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
493
+  (0.1ms) select sqlite_version(*)
494
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
495
+  (0.1ms) SELECT version FROM "schema_migrations"
496
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
497
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
498
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
499
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
500
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
501
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
502
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
503
+  (0.1ms) select sqlite_version(*)
504
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
505
+  (0.1ms) SELECT version FROM "schema_migrations"
506
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
507
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
508
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
509
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
510
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
511
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
512
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
513
+  (0.1ms) select sqlite_version(*)
514
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
515
+  (0.1ms) SELECT version FROM "schema_migrations"
516
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
517
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
518
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
519
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
520
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
521
+  (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
522
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
523
+  (0.1ms) select sqlite_version(*)
524
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
525
+  (0.2ms) SELECT version FROM "schema_migrations"
526
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
527
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
528
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
529
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
530
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
531
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
532
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
533
+  (0.1ms) select sqlite_version(*)
534
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
535
+  (0.1ms) SELECT version FROM "schema_migrations"
536
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
537
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
538
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
539
+  (8.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
540
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
541
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
542
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
543
+  (0.1ms) select sqlite_version(*)
544
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
545
+  (0.1ms) SELECT version FROM "schema_migrations"
546
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
547
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
548
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
549
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
550
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
551
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
552
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
553
+  (0.1ms) select sqlite_version(*)
554
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
555
+  (0.1ms) SELECT version FROM "schema_migrations"
556
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
557
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
558
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
559
+  (0.9ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
560
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
561
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
562
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
563
+  (0.1ms) select sqlite_version(*)
564
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
565
+  (0.1ms) SELECT version FROM "schema_migrations"
566
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
567
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
568
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
569
+  (10.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
570
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
571
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
572
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
573
+  (0.1ms) select sqlite_version(*)
574
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
575
+  (0.1ms) SELECT version FROM "schema_migrations"
576
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
577
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
578
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
579
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
580
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
581
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
582
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
583
+  (0.1ms) select sqlite_version(*)
584
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
585
+  (0.1ms) SELECT version FROM "schema_migrations"
586
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
587
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
588
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
589
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
590
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
591
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
592
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
593
+  (0.1ms) select sqlite_version(*)
594
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
595
+  (0.1ms) SELECT version FROM "schema_migrations"
596
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
597
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
598
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
599
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
600
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
601
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
602
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
603
+  (0.1ms) select sqlite_version(*)
604
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
605
+  (0.1ms) SELECT version FROM "schema_migrations"
606
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
607
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
608
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
609
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
610
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
611
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
612
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
613
+  (0.4ms) select sqlite_version(*)
614
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
615
+  (0.1ms) SELECT version FROM "schema_migrations"
616
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
617
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
618
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
619
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
620
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
621
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
622
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
623
+  (0.1ms) select sqlite_version(*)
624
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
625
+  (0.1ms) SELECT version FROM "schema_migrations"
626
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
627
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
628
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
629
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
630
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
631
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
632
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
633
+  (0.1ms) select sqlite_version(*)
634
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
635
+  (0.1ms) SELECT version FROM "schema_migrations"
636
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
637
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
638
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
639
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
640
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
641
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
642
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
643
+  (0.1ms) select sqlite_version(*)
644
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
645
+  (0.1ms) SELECT version FROM "schema_migrations"
646
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
647
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
648
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
649
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
650
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
651
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
652
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
653
+  (0.1ms) select sqlite_version(*)
654
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
655
+  (0.1ms) SELECT version FROM "schema_migrations"
656
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
657
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
658
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
659
+  (1.6ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
660
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
661
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
662
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
663
+  (0.1ms) select sqlite_version(*)
664
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
665
+  (0.1ms) SELECT version FROM "schema_migrations"
666
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
667
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
668
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
669
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
670
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
671
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
672
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
673
+  (0.1ms) select sqlite_version(*)
674
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
675
+  (0.1ms) SELECT version FROM "schema_migrations"
676
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
677
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
678
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
679
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
680
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
681
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
682
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
683
+  (0.1ms) select sqlite_version(*)
684
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
685
+  (0.1ms) SELECT version FROM "schema_migrations"
686
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
687
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
688
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
689
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
690
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
691
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
692
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
693
+  (0.1ms) select sqlite_version(*)
694
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
695
+  (0.1ms) SELECT version FROM "schema_migrations"
696
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
697
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
698
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
699
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
700
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
701
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
702
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
703
+  (0.1ms) select sqlite_version(*)
704
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
705
+  (0.1ms) SELECT version FROM "schema_migrations"
706
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
707
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
708
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
709
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
710
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
711
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
712
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
713
+  (0.1ms) select sqlite_version(*)
714
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
715
+  (0.1ms) SELECT version FROM "schema_migrations"
716
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
717
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
718
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
719
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
720
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
721
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
722
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
723
+  (0.1ms) select sqlite_version(*)
724
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
725
+  (0.1ms) SELECT version FROM "schema_migrations"
726
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
727
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
728
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
729
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
730
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
731
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
732
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
733
+  (0.1ms) select sqlite_version(*)
734
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
735
+  (0.1ms) SELECT version FROM "schema_migrations"
736
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
737
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
738
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
739
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
740
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
741
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
742
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
743
+  (0.1ms) select sqlite_version(*)
744
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
745
+  (0.1ms) SELECT version FROM "schema_migrations"
746
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
747
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
748
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
749
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
750
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
751
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
752
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
753
+  (0.1ms) select sqlite_version(*)
754
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
755
+  (0.1ms) SELECT version FROM "schema_migrations"
756
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
757
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
758
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
759
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
760
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
761
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
762
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
763
+  (0.1ms) select sqlite_version(*)
764
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
765
+  (0.1ms) SELECT version FROM "schema_migrations"
766
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
767
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
768
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
769
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
770
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
771
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
772
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
773
+  (0.1ms) select sqlite_version(*)
774
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
775
+  (0.1ms) SELECT version FROM "schema_migrations"
776
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
777
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
778
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
779
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
780
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
781
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
782
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
783
+  (0.1ms) select sqlite_version(*)
784
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
785
+  (0.1ms) SELECT version FROM "schema_migrations"
786
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
787
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
788
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
789
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
790
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
791
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
792
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
793
+  (0.1ms) select sqlite_version(*)
794
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
795
+  (0.1ms) SELECT version FROM "schema_migrations"
796
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
797
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
798
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
799
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
800
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
801
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
802
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
803
+  (0.1ms) select sqlite_version(*)
804
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
805
+  (0.1ms) SELECT version FROM "schema_migrations"
806
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
807
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
808
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
809
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
810
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
811
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
812
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
813
+  (0.1ms) select sqlite_version(*)
814
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
815
+  (0.1ms) SELECT version FROM "schema_migrations"
816
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
817
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
818
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
819
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
820
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
821
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
822
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
823
+  (0.1ms) select sqlite_version(*)
824
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
825
+  (0.1ms) SELECT version FROM "schema_migrations"
826
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
827
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
828
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
829
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
830
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
831
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
832
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
833
+  (0.1ms) select sqlite_version(*)
834
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
835
+  (0.1ms) SELECT version FROM "schema_migrations"
836
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
837
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
838
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
839
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
840
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
841
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
842
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
843
+  (0.1ms) select sqlite_version(*)
844
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
845
+  (0.1ms) SELECT version FROM "schema_migrations"
846
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
847
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
848
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
849
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
850
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
851
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
852
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
853
+  (0.1ms) select sqlite_version(*)
854
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
855
+  (0.1ms) SELECT version FROM "schema_migrations"
856
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
857
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
858
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
859
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
860
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
861
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
862
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
863
+  (0.1ms) select sqlite_version(*)
864
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
865
+  (0.1ms) SELECT version FROM "schema_migrations"
866
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
867
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
868
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
869
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
870
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
871
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
872
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
873
+  (0.1ms) select sqlite_version(*)
874
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
875
+  (0.1ms) SELECT version FROM "schema_migrations"
876
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
877
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
878
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
879
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
880
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
881
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
882
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
883
+  (0.1ms) select sqlite_version(*)
884
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
885
+  (0.1ms) SELECT version FROM "schema_migrations"
886
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
887
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
888
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
889
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
890
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
891
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
892
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
893
+  (0.1ms) select sqlite_version(*)
894
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
895
+  (0.1ms) SELECT version FROM "schema_migrations"
896
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
897
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
898
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
899
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
900
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
901
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
902
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
903
+  (0.1ms) select sqlite_version(*)
904
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
905
+  (0.1ms) SELECT version FROM "schema_migrations"
906
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
907
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
908
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
909
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
910
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
911
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
912
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
913
+  (0.1ms) select sqlite_version(*)
914
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
915
+  (0.1ms) SELECT version FROM "schema_migrations"
916
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
917
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
918
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
919
+  (0.9ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
920
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
921
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
922
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
923
+  (0.1ms) select sqlite_version(*)
924
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
925
+  (0.1ms) SELECT version FROM "schema_migrations"
926
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
927
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
928
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
929
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
930
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
931
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
932
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
933
+  (0.1ms) select sqlite_version(*)
934
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
935
+  (0.1ms) SELECT version FROM "schema_migrations"
936
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
937
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
938
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
939
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
940
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
941
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
942
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
943
+  (0.1ms) select sqlite_version(*)
944
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
945
+  (0.1ms) SELECT version FROM "schema_migrations"
946
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
947
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
948
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
949
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
950
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
951
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
952
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
953
+  (0.1ms) select sqlite_version(*)
954
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
955
+  (0.2ms) SELECT version FROM "schema_migrations"
956
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
957
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
958
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
959
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
960
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
961
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
962
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
963
+  (0.1ms) select sqlite_version(*)
964
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
965
+  (0.1ms) SELECT version FROM "schema_migrations"
966
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
967
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
968
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
969
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
970
+  (1.4ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
971
+  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
972
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
973
+  (0.1ms) select sqlite_version(*)
974
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
975
+  (0.1ms) SELECT version FROM "schema_migrations"
976
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
977
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
978
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
979
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
980
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
981
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
982
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
983
+  (0.1ms) select sqlite_version(*)
984
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
985
+  (0.1ms) SELECT version FROM "schema_migrations"
986
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
987
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
988
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
989
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
990
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
991
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
992
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
993
+  (0.1ms) select sqlite_version(*)
994
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
995
+  (0.1ms) SELECT version FROM "schema_migrations"
996
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
997
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
998
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
999
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1000
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1001
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1002
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1003
+  (0.1ms) select sqlite_version(*)
1004
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1005
+  (0.1ms) SELECT version FROM "schema_migrations"
1006
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1007
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1008
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1009
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1010
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1011
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1012
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1013
+  (0.1ms) select sqlite_version(*)
1014
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1015
+  (0.1ms) SELECT version FROM "schema_migrations"
1016
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1017
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1018
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1019
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1020
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1021
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1022
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1023
+  (0.1ms) select sqlite_version(*)
1024
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1025
+  (0.1ms) SELECT version FROM "schema_migrations"
1026
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1027
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1028
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1029
+  (8.8ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1030
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1031
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1032
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1033
+  (0.1ms) select sqlite_version(*)
1034
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1035
+  (0.1ms) SELECT version FROM "schema_migrations"
1036
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1037
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1038
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1039
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1040
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1041
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1042
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1043
+  (0.1ms) select sqlite_version(*)
1044
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1045
+  (0.1ms) SELECT version FROM "schema_migrations"
1046
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1047
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1048
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1049
+  (8.7ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1050
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1051
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1052
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1053
+  (0.1ms) select sqlite_version(*)
1054
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1055
+  (0.1ms) SELECT version FROM "schema_migrations"
1056
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1057
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1058
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1059
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1060
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1061
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1062
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1063
+  (0.1ms) select sqlite_version(*)
1064
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1065
+  (0.1ms) SELECT version FROM "schema_migrations"
1066
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1067
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1068
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1069
+  (8.7ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1070
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1071
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1072
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1073
+  (0.1ms) select sqlite_version(*)
1074
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1075
+  (0.1ms) SELECT version FROM "schema_migrations"
1076
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1077
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1078
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1079
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1080
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1081
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1082
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1083
+  (0.1ms) select sqlite_version(*)
1084
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1085
+  (0.1ms) SELECT version FROM "schema_migrations"
1086
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1087
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1088
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1089
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1090
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1091
+  (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1092
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1093
+  (0.1ms) select sqlite_version(*)
1094
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1095
+  (0.1ms) SELECT version FROM "schema_migrations"
1096
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1097
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1098
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1099
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1100
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1101
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1102
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1103
+  (0.1ms) select sqlite_version(*)
1104
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1105
+  (0.1ms) SELECT version FROM "schema_migrations"
1106
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1107
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1108
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1109
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1110
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1111
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1112
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1113
+  (0.1ms) select sqlite_version(*)
1114
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1115
+  (0.1ms) SELECT version FROM "schema_migrations"
1116
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1117
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1118
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1119
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1120
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1121
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1122
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1123
+  (0.1ms) select sqlite_version(*)
1124
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1125
+  (0.1ms) SELECT version FROM "schema_migrations"
1126
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1127
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1128
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1129
+  (9.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1130
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1131
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1132
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1133
+  (0.1ms) select sqlite_version(*)
1134
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1135
+  (0.1ms) SELECT version FROM "schema_migrations"
1136
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1137
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1138
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1139
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1140
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1141
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1142
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1143
+  (0.1ms) select sqlite_version(*)
1144
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1145
+  (0.1ms) SELECT version FROM "schema_migrations"
1146
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1147
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1148
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1149
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1150
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1151
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1152
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1153
+  (0.1ms) select sqlite_version(*)
1154
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1155
+  (0.1ms) SELECT version FROM "schema_migrations"
1156
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1157
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1158
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1159
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1160
+  (6.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1161
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1162
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1163
+  (0.1ms) select sqlite_version(*)
1164
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1165
+  (0.1ms) SELECT version FROM "schema_migrations"
1166
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1167
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1168
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1169
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1170
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1171
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1172
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1173
+  (0.1ms) select sqlite_version(*)
1174
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1175
+  (0.1ms) SELECT version FROM "schema_migrations"
1176
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1177
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1178
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1179
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1180
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1181
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1182
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1183
+  (0.1ms) select sqlite_version(*)
1184
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1185
+  (0.1ms) SELECT version FROM "schema_migrations"
1186
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1187
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1188
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1189
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1190
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1191
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1192
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1193
+  (0.1ms) select sqlite_version(*)
1194
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1195
+  (0.1ms) SELECT version FROM "schema_migrations"
1196
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1197
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1198
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1199
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1200
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1201
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1202
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1203
+  (0.1ms) select sqlite_version(*)
1204
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1205
+  (0.1ms) SELECT version FROM "schema_migrations"
1206
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1207
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1208
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1209
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1210
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1211
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1212
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1213
+  (0.1ms) select sqlite_version(*)
1214
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1215
+  (0.1ms) SELECT version FROM "schema_migrations"
1216
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1217
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1218
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1219
+  (8.6ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1220
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1221
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1222
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1223
+  (0.1ms) select sqlite_version(*)
1224
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1225
+  (0.1ms) SELECT version FROM "schema_migrations"
1226
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1227
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1228
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1229
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1230
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1231
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1232
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1233
+  (0.1ms) select sqlite_version(*)
1234
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1235
+  (0.1ms) SELECT version FROM "schema_migrations"
1236
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1237
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1238
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1239
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1240
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1241
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1242
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1243
+  (0.1ms) select sqlite_version(*)
1244
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1245
+  (0.1ms) SELECT version FROM "schema_migrations"
1246
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1247
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1248
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1249
+  (9.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1250
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1251
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1252
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1253
+  (0.1ms) select sqlite_version(*)
1254
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1255
+  (0.1ms) SELECT version FROM "schema_migrations"
1256
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1257
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1258
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1259
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1260
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1261
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1262
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1263
+  (0.1ms) select sqlite_version(*)
1264
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1265
+  (0.1ms) SELECT version FROM "schema_migrations"
1266
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1267
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1268
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1269
+  (9.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1270
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1271
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1272
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1273
+  (0.2ms) select sqlite_version(*)
1274
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1275
+  (0.1ms) SELECT version FROM "schema_migrations"
1276
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1277
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1278
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1279
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1280
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1281
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1282
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1283
+  (0.1ms) select sqlite_version(*)
1284
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1285
+  (0.1ms) SELECT version FROM "schema_migrations"
1286
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1287
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1288
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1289
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1290
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1291
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1292
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1293
+  (0.2ms) select sqlite_version(*)
1294
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1295
+  (0.1ms) SELECT version FROM "schema_migrations"
1296
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1297
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1298
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1299
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1300
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1301
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1302
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1303
+  (0.1ms) select sqlite_version(*)
1304
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1305
+  (0.1ms) SELECT version FROM "schema_migrations"
1306
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1307
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1308
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1309
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1310
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1311
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1312
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1313
+  (0.1ms) select sqlite_version(*)
1314
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1315
+  (0.1ms) SELECT version FROM "schema_migrations"
1316
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1317
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1318
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1319
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1320
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1321
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1322
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1323
+  (0.1ms) select sqlite_version(*)
1324
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1325
+  (0.1ms) SELECT version FROM "schema_migrations"
1326
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1327
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1328
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1329
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1330
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1331
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1332
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1333
+  (0.1ms) select sqlite_version(*)
1334
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1335
+  (0.1ms) SELECT version FROM "schema_migrations"
1336
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1337
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1338
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1339
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1340
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1341
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1342
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1343
+  (0.1ms) select sqlite_version(*)
1344
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1345
+  (0.1ms) SELECT version FROM "schema_migrations"
1346
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1347
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1348
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1349
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1350
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1351
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1352
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1353
+  (0.1ms) select sqlite_version(*)
1354
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1355
+  (0.1ms) SELECT version FROM "schema_migrations"
1356
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1357
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1358
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1359
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1360
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1361
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1362
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1363
+  (0.1ms) select sqlite_version(*)
1364
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1365
+  (0.1ms) SELECT version FROM "schema_migrations"
1366
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1367
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1368
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1369
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1370
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1371
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1372
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1373
+  (0.1ms) select sqlite_version(*)
1374
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1375
+  (0.1ms) SELECT version FROM "schema_migrations"
1376
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1377
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1378
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1379
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1380
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1381
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1382
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1383
+  (0.1ms) select sqlite_version(*)
1384
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1385
+  (0.1ms) SELECT version FROM "schema_migrations"
1386
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1387
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1388
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1389
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1390
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1391
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1392
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1393
+  (0.1ms) select sqlite_version(*)
1394
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1395
+  (0.1ms) SELECT version FROM "schema_migrations"
1396
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1397
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1398
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1399
+  (9.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1400
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1401
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1402
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1403
+  (0.1ms) select sqlite_version(*)
1404
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1405
+  (0.1ms) SELECT version FROM "schema_migrations"
1406
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1407
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1408
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1409
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1410
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1411
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1412
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1413
+  (0.1ms) select sqlite_version(*)
1414
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1415
+  (0.1ms) SELECT version FROM "schema_migrations"
1416
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1417
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1418
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1419
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1420
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1421
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1422
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1423
+  (0.1ms) select sqlite_version(*)
1424
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1425
+  (0.1ms) SELECT version FROM "schema_migrations"
1426
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1427
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1428
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1429
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1430
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1431
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1432
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1433
+  (0.1ms) select sqlite_version(*)
1434
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1435
+  (0.1ms) SELECT version FROM "schema_migrations"
1436
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1437
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1438
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1439
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1440
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1441
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1442
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1443
+  (0.1ms) select sqlite_version(*)
1444
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1445
+  (0.1ms) SELECT version FROM "schema_migrations"
1446
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1447
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1448
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1449
+  (8.7ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1450
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1451
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1452
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1453
+  (0.1ms) select sqlite_version(*)
1454
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1455
+  (0.1ms) SELECT version FROM "schema_migrations"
1456
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1457
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1458
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1459
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1460
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1461
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1462
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1463
+  (0.1ms) select sqlite_version(*)
1464
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1465
+  (0.1ms) SELECT version FROM "schema_migrations"
1466
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1467
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1468
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1469
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1470
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1471
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1472
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1473
+  (0.1ms) select sqlite_version(*)
1474
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1475
+  (0.1ms) SELECT version FROM "schema_migrations"
1476
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1477
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1478
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1479
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1480
+  (0.9ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1481
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1482
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1483
+  (0.1ms) select sqlite_version(*)
1484
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1485
+  (0.1ms) SELECT version FROM "schema_migrations"
1486
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1487
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1488
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1489
+  (9.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1490
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1491
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1492
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1493
+  (0.1ms) select sqlite_version(*)
1494
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1495
+  (0.1ms) SELECT version FROM "schema_migrations"
1496
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1497
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1498
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1499
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1500
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1501
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1502
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1503
+  (0.1ms) select sqlite_version(*)
1504
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1505
+  (0.1ms) SELECT version FROM "schema_migrations"
1506
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1507
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1508
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1509
+  (1.6ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1510
+  (1.5ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1511
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1512
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1513
+  (0.1ms) select sqlite_version(*)
1514
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1515
+  (0.1ms) SELECT version FROM "schema_migrations"
1516
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1517
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1518
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1519
+  (9.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1520
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1521
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1522
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1523
+  (0.1ms) select sqlite_version(*)
1524
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1525
+  (0.1ms) SELECT version FROM "schema_migrations"
1526
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1527
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1528
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1529
+  (9.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1530
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1531
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1532
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1533
+  (0.1ms) select sqlite_version(*)
1534
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1535
+  (0.1ms) SELECT version FROM "schema_migrations"
1536
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1537
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1538
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1539
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1540
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1541
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1542
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1543
+  (0.1ms) select sqlite_version(*)
1544
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1545
+  (0.1ms) SELECT version FROM "schema_migrations"
1546
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1547
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1548
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1549
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1550
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1551
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1552
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1553
+  (0.1ms) select sqlite_version(*)
1554
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1555
+  (0.1ms) SELECT version FROM "schema_migrations"
1556
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1557
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1558
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1559
+  (8.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1560
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1561
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1562
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1563
+  (0.1ms) select sqlite_version(*)
1564
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1565
+  (0.1ms) SELECT version FROM "schema_migrations"
1566
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1567
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1568
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1569
+  (9.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1570
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1571
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1572
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1573
+  (0.1ms) select sqlite_version(*)
1574
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1575
+  (0.1ms) SELECT version FROM "schema_migrations"
1576
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1577
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1578
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1579
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1580
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1581
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1582
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1583
+  (0.1ms) select sqlite_version(*)
1584
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1585
+  (0.1ms) SELECT version FROM "schema_migrations"
1586
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1587
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1588
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1589
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1590
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1591
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1592
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1593
+  (0.1ms) select sqlite_version(*)
1594
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1595
+  (0.1ms) SELECT version FROM "schema_migrations"
1596
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1597
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1598
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1599
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1600
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1601
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1602
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1603
+  (0.1ms) select sqlite_version(*)
1604
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1605
+  (0.1ms) SELECT version FROM "schema_migrations"
1606
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1607
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1608
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1609
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1610
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1611
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1612
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1613
+  (0.1ms) select sqlite_version(*)
1614
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1615
+  (0.1ms) SELECT version FROM "schema_migrations"
1616
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1617
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1618
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1619
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1620
+  (1.3ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1621
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1622
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1623
+  (0.1ms) select sqlite_version(*)
1624
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1625
+  (0.1ms) SELECT version FROM "schema_migrations"
1626
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1627
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1628
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1629
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1630
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1631
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1632
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1633
+  (0.1ms) select sqlite_version(*)
1634
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1635
+  (0.1ms) SELECT version FROM "schema_migrations"
1636
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1637
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1638
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1639
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1640
+  (1.0ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1641
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1642
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1643
+  (0.1ms) select sqlite_version(*)
1644
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1645
+  (0.1ms) SELECT version FROM "schema_migrations"
1646
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1647
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1648
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1649
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1650
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1651
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1652
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1653
+  (0.1ms) select sqlite_version(*)
1654
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1655
+  (0.1ms) SELECT version FROM "schema_migrations"
1656
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1657
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1658
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1659
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1660
+  (1.2ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1661
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1662
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1663
+  (0.1ms) select sqlite_version(*)
1664
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1665
+  (0.1ms) SELECT version FROM "schema_migrations"
1666
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1667
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1668
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1669
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1670
+  (1.1ms) CREATE TABLE "notify_with_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1671
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1672
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1673
+  (0.1ms) select sqlite_version(*)
1674
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1675
+  (0.1ms) SELECT version FROM "schema_migrations"
1676
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1677
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1678
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1679
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1680
+  (0.1ms) select sqlite_version(*)
1681
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1682
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1683
+ Migrating to CreateUsers (20150213150625)
1684
+  (0.1ms) begin transaction
1685
+  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1686
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150213150625"]]
1687
+  (0.8ms) commit transaction
1688
+ Migrating to CreateMessages (20150213152846)
1689
+  (0.1ms) begin transaction
1690
+  (0.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1691
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150213152846"]]
1692
+  (0.8ms) commit transaction
1693
+ Migrating to CreateNotification (20150216115438)
1694
+  (0.1ms) begin transaction
1695
+  (0.3ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1696
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150216115438"]]
1697
+  (0.8ms) commit transaction
1698
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1699
+  (1.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1700
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1701
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1702
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1703
+  (0.1ms) select sqlite_version(*)
1704
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1705
+  (0.1ms) SELECT version FROM "schema_migrations"
1706
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1707
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1708
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1709
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1710
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1711
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1712
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1713
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1714
+  (0.1ms) select sqlite_version(*)
1715
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1716
+  (0.1ms) SELECT version FROM "schema_migrations"
1717
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1718
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1719
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1720
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1721
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1722
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1723
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1724
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1725
+  (0.1ms) select sqlite_version(*)
1726
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1727
+  (0.1ms) SELECT version FROM "schema_migrations"
1728
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1729
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1730
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1731
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1732
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1733
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1734
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1735
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1736
+  (0.1ms) select sqlite_version(*)
1737
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1738
+  (0.1ms) SELECT version FROM "schema_migrations"
1739
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1740
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1741
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1742
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213142644')
1743
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1744
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1745
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1746
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1747
+  (0.1ms) select sqlite_version(*)
1748
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1749
+  (0.1ms) SELECT version FROM "schema_migrations"
1750
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1751
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1752
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1753
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1754
+  (0.9ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1755
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1756
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1757
+  (0.1ms) select sqlite_version(*)
1758
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1759
+  (0.1ms) SELECT version FROM "schema_migrations"
1760
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1761
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1762
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1763
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1764
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1765
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1766
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1767
+  (0.1ms) select sqlite_version(*)
1768
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1769
+  (0.1ms) SELECT version FROM "schema_migrations"
1770
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1771
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1772
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1773
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1774
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1775
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1776
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1777
+  (0.1ms) select sqlite_version(*)
1778
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1779
+  (0.1ms) SELECT version FROM "schema_migrations"
1780
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1781
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1782
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1783
+  (8.8ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1784
+  (1.4ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1785
+  (5.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1786
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1787
+  (0.1ms) select sqlite_version(*)
1788
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1789
+  (0.1ms) SELECT version FROM "schema_migrations"
1790
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1791
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1792
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1793
+  (9.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1794
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1795
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1796
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1797
+  (0.1ms) select sqlite_version(*)
1798
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1799
+  (0.1ms) SELECT version FROM "schema_migrations"
1800
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1801
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1802
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1803
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1804
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1805
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1806
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1807
+  (0.1ms) select sqlite_version(*)
1808
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1809
+  (0.1ms) SELECT version FROM "schema_migrations"
1810
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1811
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1812
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1813
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1814
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1815
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1816
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1817
+  (0.1ms) select sqlite_version(*)
1818
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1819
+  (0.1ms) SELECT version FROM "schema_migrations"
1820
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1821
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1822
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1823
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1824
+  (1.4ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1825
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1826
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1827
+  (0.1ms) select sqlite_version(*)
1828
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1829
+  (0.1ms) SELECT version FROM "schema_migrations"
1830
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1831
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1832
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1833
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1834
+  (1.4ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1835
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1836
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1837
+  (0.1ms) select sqlite_version(*)
1838
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1839
+  (0.1ms) SELECT version FROM "schema_migrations"
1840
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1841
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1842
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1843
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1844
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1845
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1846
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1847
+  (0.1ms) select sqlite_version(*)
1848
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1849
+  (0.1ms) SELECT version FROM "schema_migrations"
1850
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1851
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1852
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1853
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1854
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1855
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1856
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1857
+  (0.1ms) select sqlite_version(*)
1858
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1859
+  (0.1ms) SELECT version FROM "schema_migrations"
1860
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1861
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1862
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1863
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1864
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1865
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1866
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1867
+  (0.1ms) select sqlite_version(*)
1868
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1869
+  (0.1ms) SELECT version FROM "schema_migrations"
1870
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1871
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1872
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1873
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1874
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1875
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1876
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1877
+  (0.1ms) select sqlite_version(*)
1878
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1879
+  (0.1ms) SELECT version FROM "schema_migrations"
1880
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1881
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1882
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1883
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1884
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1885
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1886
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1887
+  (0.1ms) select sqlite_version(*)
1888
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1889
+  (0.1ms) SELECT version FROM "schema_migrations"
1890
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1891
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1892
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1893
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1894
+  (0.9ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1895
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1896
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1897
+  (0.1ms) select sqlite_version(*)
1898
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1899
+  (0.1ms) SELECT version FROM "schema_migrations"
1900
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1901
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1902
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1903
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1904
+  (0.9ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1905
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1906
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1907
+  (0.1ms) select sqlite_version(*)
1908
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1909
+  (0.1ms) SELECT version FROM "schema_migrations"
1910
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1911
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1912
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1913
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1914
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1915
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1916
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1917
+  (0.1ms) select sqlite_version(*)
1918
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1919
+  (0.1ms) SELECT version FROM "schema_migrations"
1920
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1921
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1922
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1923
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1924
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1925
+  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1926
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1927
+  (0.1ms) select sqlite_version(*)
1928
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1929
+  (0.1ms) SELECT version FROM "schema_migrations"
1930
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1931
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1932
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1933
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1934
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1935
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1936
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1937
+  (0.1ms) select sqlite_version(*)
1938
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1939
+  (0.1ms) SELECT version FROM "schema_migrations"
1940
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1941
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1942
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1943
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1944
+  (0.9ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1945
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1946
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1947
+  (0.1ms) select sqlite_version(*)
1948
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1949
+  (0.1ms) SELECT version FROM "schema_migrations"
1950
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1951
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1952
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1953
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1954
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1955
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1956
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1957
+  (0.1ms) select sqlite_version(*)
1958
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1959
+  (0.1ms) SELECT version FROM "schema_migrations"
1960
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1961
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1962
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1963
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1964
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1965
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1966
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1967
+  (0.1ms) select sqlite_version(*)
1968
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1969
+  (0.1ms) SELECT version FROM "schema_migrations"
1970
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1971
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1972
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1973
+  (1.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1974
+  (1.4ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1975
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1976
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1977
+  (0.1ms) select sqlite_version(*)
1978
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1979
+  (0.1ms) SELECT version FROM "schema_migrations"
1980
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1981
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1982
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1983
+  (8.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1984
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1985
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1986
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1987
+  (0.1ms) select sqlite_version(*)
1988
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1989
+  (0.1ms) SELECT version FROM "schema_migrations"
1990
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
1991
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
1992
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
1993
+  (1.7ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1994
+  (2.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1995
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1996
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1997
+  (0.1ms) select sqlite_version(*)
1998
+  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1999
+  (0.2ms) SELECT version FROM "schema_migrations"
2000
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2001
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2002
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2003
+  (8.7ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2004
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2005
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2006
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2007
+  (0.1ms) select sqlite_version(*)
2008
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2009
+  (0.1ms) SELECT version FROM "schema_migrations"
2010
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2011
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2012
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2013
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2014
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2015
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2016
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2017
+  (0.1ms) select sqlite_version(*)
2018
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2019
+  (0.1ms) SELECT version FROM "schema_migrations"
2020
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2021
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2022
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2023
+  (9.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2024
+  (0.9ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2025
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2026
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2027
+  (0.1ms) select sqlite_version(*)
2028
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2029
+  (0.1ms) SELECT version FROM "schema_migrations"
2030
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2031
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2032
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2033
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2034
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2035
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2036
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2037
+  (0.1ms) select sqlite_version(*)
2038
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2039
+  (0.1ms) SELECT version FROM "schema_migrations"
2040
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2041
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2042
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2043
+  (9.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2044
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2045
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2046
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2047
+  (0.1ms) select sqlite_version(*)
2048
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2049
+  (0.1ms) SELECT version FROM "schema_migrations"
2050
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2051
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2052
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2053
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2054
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2055
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2056
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2057
+  (0.1ms) select sqlite_version(*)
2058
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2059
+  (0.1ms) SELECT version FROM "schema_migrations"
2060
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2061
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2062
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2063
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2064
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2065
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2066
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2067
+  (0.1ms) select sqlite_version(*)
2068
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2069
+  (0.1ms) SELECT version FROM "schema_migrations"
2070
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2071
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2072
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2073
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2074
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2075
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2076
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2077
+  (0.1ms) select sqlite_version(*)
2078
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2079
+  (0.1ms) SELECT version FROM "schema_migrations"
2080
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2081
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2082
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2083
+  (8.6ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2084
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2085
+  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2086
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2087
+  (0.1ms) select sqlite_version(*)
2088
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2089
+  (0.1ms) SELECT version FROM "schema_migrations"
2090
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2091
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2092
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2093
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2094
+  (0.8ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2095
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2096
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2097
+  (0.1ms) select sqlite_version(*)
2098
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2099
+  (0.1ms) SELECT version FROM "schema_migrations"
2100
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2101
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2102
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2103
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2104
+  (1.3ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2105
+  (2.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2106
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2107
+  (0.1ms) select sqlite_version(*)
2108
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2109
+  (0.1ms) SELECT version FROM "schema_migrations"
2110
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2111
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2112
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2113
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2114
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2115
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2116
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2117
+  (0.1ms) select sqlite_version(*)
2118
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2119
+  (0.1ms) SELECT version FROM "schema_migrations"
2120
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2121
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2122
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2123
+  (9.7ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2124
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2125
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2126
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2127
+  (0.1ms) select sqlite_version(*)
2128
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2129
+  (0.1ms) SELECT version FROM "schema_migrations"
2130
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2131
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2132
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2133
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2134
+  (1.3ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2135
+  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2136
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2137
+  (0.1ms) select sqlite_version(*)
2138
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2139
+  (0.1ms) SELECT version FROM "schema_migrations"
2140
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2141
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2142
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2143
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2144
+  (0.9ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2145
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2146
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2147
+  (0.1ms) select sqlite_version(*)
2148
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2149
+  (0.1ms) SELECT version FROM "schema_migrations"
2150
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2151
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2152
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2153
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2154
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2155
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2156
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2157
+  (0.1ms) select sqlite_version(*)
2158
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2159
+  (0.1ms) SELECT version FROM "schema_migrations"
2160
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2161
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2162
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2163
+  (10.9ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2164
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2165
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2166
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2167
+  (0.1ms) select sqlite_version(*)
2168
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2169
+  (0.1ms) SELECT version FROM "schema_migrations"
2170
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2171
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2172
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2173
+  (9.7ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2174
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2175
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2176
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2177
+  (0.1ms) select sqlite_version(*)
2178
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2179
+  (0.1ms) SELECT version FROM "schema_migrations"
2180
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2181
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2182
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2183
+  (1.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2184
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2185
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2186
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2187
+  (0.1ms) select sqlite_version(*)
2188
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2189
+  (0.1ms) SELECT version FROM "schema_migrations"
2190
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2191
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2192
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2193
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2194
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2195
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2196
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2197
+  (0.1ms) select sqlite_version(*)
2198
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2199
+  (0.1ms) SELECT version FROM "schema_migrations"
2200
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2201
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2202
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2203
+  (9.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2204
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2205
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2206
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2207
+  (0.1ms) select sqlite_version(*)
2208
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2209
+  (0.1ms) SELECT version FROM "schema_migrations"
2210
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2211
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2212
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2213
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2214
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2215
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2216
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2217
+  (0.1ms) select sqlite_version(*)
2218
+  (6.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2219
+  (0.1ms) SELECT version FROM "schema_migrations"
2220
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2221
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2222
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2223
+  (9.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2224
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2225
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2226
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2227
+  (0.1ms) select sqlite_version(*)
2228
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2229
+  (0.1ms) SELECT version FROM "schema_migrations"
2230
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2231
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2232
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2233
+  (9.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2234
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2235
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2236
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2237
+  (0.1ms) select sqlite_version(*)
2238
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2239
+  (0.1ms) SELECT version FROM "schema_migrations"
2240
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2241
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2242
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2243
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2244
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2245
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2246
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2247
+  (0.1ms) select sqlite_version(*)
2248
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2249
+  (0.1ms) SELECT version FROM "schema_migrations"
2250
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2251
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2252
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2253
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2254
+  (3.7ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2255
+  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2256
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2257
+  (0.1ms) select sqlite_version(*)
2258
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2259
+  (0.1ms) SELECT version FROM "schema_migrations"
2260
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2261
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2262
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2263
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2264
+  (1.3ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2265
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2266
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2267
+  (0.1ms) select sqlite_version(*)
2268
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2269
+  (0.1ms) SELECT version FROM "schema_migrations"
2270
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2271
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2272
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2273
+  (9.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2274
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2275
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2276
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2277
+  (0.1ms) select sqlite_version(*)
2278
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2279
+  (0.1ms) SELECT version FROM "schema_migrations"
2280
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2281
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2282
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2283
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2284
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2285
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2286
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2287
+  (0.1ms) select sqlite_version(*)
2288
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2289
+  (0.1ms) SELECT version FROM "schema_migrations"
2290
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2291
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2292
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2293
+  (9.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2294
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2295
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2296
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2297
+  (0.1ms) select sqlite_version(*)
2298
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2299
+  (0.1ms) SELECT version FROM "schema_migrations"
2300
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2301
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2302
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2303
+  (9.0ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2304
+  (0.9ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2305
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2306
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2307
+  (0.1ms) select sqlite_version(*)
2308
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2309
+  (0.1ms) SELECT version FROM "schema_migrations"
2310
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2311
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2312
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2313
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2314
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2315
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2316
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2317
+  (0.1ms) select sqlite_version(*)
2318
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2319
+  (0.1ms) SELECT version FROM "schema_migrations"
2320
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2321
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2322
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2323
+  (9.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2324
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2325
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2326
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2327
+  (0.1ms) select sqlite_version(*)
2328
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2329
+  (0.1ms) SELECT version FROM "schema_migrations"
2330
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2331
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2332
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2333
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2334
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2335
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2336
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2337
+  (0.1ms) select sqlite_version(*)
2338
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2339
+  (0.1ms) SELECT version FROM "schema_migrations"
2340
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2341
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2342
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2343
+  (1.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2344
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2345
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2346
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2347
+  (0.1ms) select sqlite_version(*)
2348
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2349
+  (0.1ms) SELECT version FROM "schema_migrations"
2350
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2351
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2352
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2353
+  (1.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2354
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2355
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2356
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2357
+  (0.1ms) select sqlite_version(*)
2358
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2359
+  (0.1ms) SELECT version FROM "schema_migrations"
2360
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2361
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2362
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2363
+  (9.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2364
+  (1.2ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2365
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2366
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2367
+  (0.1ms) select sqlite_version(*)
2368
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2369
+  (0.1ms) SELECT version FROM "schema_migrations"
2370
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2371
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2372
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2373
+  (8.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2374
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2375
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2376
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2377
+  (0.4ms) select sqlite_version(*)
2378
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2379
+  (0.1ms) SELECT version FROM "schema_migrations"
2380
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2381
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2382
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2383
+  (1.4ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2384
+  (1.0ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2385
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2386
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2387
+  (0.1ms) select sqlite_version(*)
2388
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2389
+  (0.1ms) SELECT version FROM "schema_migrations"
2390
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2391
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2392
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')
2393
+  (1.3ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2394
+  (1.1ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar, "attached_object_id" integer, "attached_object_type" varchar, "notification_type_id" integer, "is_read" boolean DEFAULT 'f', "is_send" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2395
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2396
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2397
+  (0.1ms) select sqlite_version(*)
2398
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2399
+  (0.2ms) SELECT version FROM "schema_migrations"
2400
+  (9.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150216115438')
2401
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213150625')
2402
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150213152846')