meta_notification 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,1192 @@
1
-  (3.5ms) DROP DATABASE IF EXISTS `dummy_test`
2
-  (0.1ms) CREATE DATABASE `dummy_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
3
-  (3.8ms) CREATE TABLE `mn_notification_types` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255), `display_name` varchar(255), `created_by_id` int(11), `updated_by_id` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
4
-  (6.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
5
-  (15.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
6
-  (0.2ms) SELECT version FROM `schema_migrations`
7
-  (0.9ms) INSERT INTO `schema_migrations` (version) VALUES ('20160615074820')
1
+  (28.1ms) DROP DATABASE IF EXISTS `dummy_test`
2
+  (0.2ms) CREATE DATABASE `dummy_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
3
+  (90.1ms) CREATE TABLE `mn_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
4
+  (82.1ms) CREATE TABLE `mn_notification_templates` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `in_app` varchar(255), `mobile` varchar(255), `push` varchar(255), `email` text, `sms` varchar(255), `email_subject` varchar(255), `resource_id` int(11), `resource_type` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
5
+  (140.9ms) CREATE UNIQUE INDEX `unique_type_resource_index` USING btree ON `mn_notification_templates` (`notification_type_id`, `resource_type`, `resource_id`) 
6
+  (157.5ms) CREATE INDEX `resource_index` USING btree ON `mn_notification_templates` (`resource_type`, `resource_id`)
7
+  (82.1ms) CREATE TABLE `mn_notification_types` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `display_name` varchar(255), `created_by_id` int(11) NOT NULL, `updated_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
8
+  (82.3ms) CREATE TABLE `mn_notifications` (`id` int(11) auto_increment PRIMARY KEY, `notification_template_id` int(11) NOT NULL, `in_app` text NOT NULL, `mobile` text NOT NULL, `resource_type` varchar(255), `resource_id` int(11), `created_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
9
+  (166.0ms) CREATE INDEX `index_mn_notifications_on_created_by_id` USING btree ON `mn_notifications` (`created_by_id`) 
10
+  (149.3ms) CREATE INDEX `index_mn_notifications_on_notification_template_id` USING btree ON `mn_notifications` (`notification_template_id`)
11
+  (82.2ms) CREATE TABLE `mn_user_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
12
+  (167.4ms) CREATE INDEX `index_mn_user_notification_settings_on_notification_type_id` USING btree ON `mn_user_notification_settings` (`notification_type_id`)
13
+  (165.8ms) CREATE UNIQUE INDEX `unique_user_notification_type_index` USING btree ON `mn_user_notification_settings` (`user_id`, `notification_type_id`) 
14
+  (82.2ms) CREATE TABLE `mn_user_notifications` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_id` int(11) NOT NULL, `is_read` tinyint(1) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
15
+  (174.2ms) CREATE INDEX `index_mn_user_notifications_on_notification_id` USING btree ON `mn_user_notifications` (`notification_id`) 
16
+  (250.3ms) CREATE INDEX `index_mn_user_notifications_on_user_id` USING btree ON `mn_user_notifications` (`user_id`)
17
+  (86.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
18
+  (216.1ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
19
+  (0.2ms) SELECT version FROM `schema_migrations`
20
+  (49.3ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071725')
21
+  (83.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071720')
22
+  (83.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071721')
23
+  (66.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071722')
24
+  (49.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071724')
25
+  (49.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071723')
26
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8
27
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
28
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
29
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
30
+ ,fk.referenced_column_name as 'primary_key'
31
+ ,fk.column_name as 'column'
32
+ ,fk.constraint_name as 'name'
33
+ FROM information_schema.key_column_usage fk
34
+ WHERE fk.referenced_column_name is not null
35
+ AND fk.table_schema = 'dummy_test'
36
+ AND fk.table_name = 'mn_notification_settings'
37
+ 
38
+  (0.1ms) SHOW CREATE TABLE `mn_notification_settings`
39
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
40
+ ,fk.referenced_column_name as 'primary_key'
41
+ ,fk.column_name as 'column'
42
+ ,fk.constraint_name as 'name'
43
+ FROM information_schema.key_column_usage fk
44
+ WHERE fk.referenced_column_name is not null
45
+ AND fk.table_schema = 'dummy_test'
46
+ AND fk.table_name = 'mn_notification_templates'
47
+ 
48
+  (0.1ms) SHOW CREATE TABLE `mn_notification_templates`
49
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
50
+ ,fk.referenced_column_name as 'primary_key'
51
+ ,fk.column_name as 'column'
52
+ ,fk.constraint_name as 'name'
53
+ FROM information_schema.key_column_usage fk
54
+ WHERE fk.referenced_column_name is not null
55
+ AND fk.table_schema = 'dummy_test'
56
+ AND fk.table_name = 'mn_notification_types'
57
+ 
58
+  (0.1ms) SHOW CREATE TABLE `mn_notification_types`
59
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
60
+ ,fk.referenced_column_name as 'primary_key'
61
+ ,fk.column_name as 'column'
62
+ ,fk.constraint_name as 'name'
63
+ FROM information_schema.key_column_usage fk
64
+ WHERE fk.referenced_column_name is not null
65
+ AND fk.table_schema = 'dummy_test'
66
+ AND fk.table_name = 'mn_notifications'
67
+ 
68
+  (0.1ms) SHOW CREATE TABLE `mn_notifications`
69
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
70
+ ,fk.referenced_column_name as 'primary_key'
71
+ ,fk.column_name as 'column'
72
+ ,fk.constraint_name as 'name'
73
+ FROM information_schema.key_column_usage fk
74
+ WHERE fk.referenced_column_name is not null
75
+ AND fk.table_schema = 'dummy_test'
76
+ AND fk.table_name = 'mn_user_notification_settings'
77
+ 
78
+  (0.1ms) SHOW CREATE TABLE `mn_user_notification_settings`
79
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
80
+ ,fk.referenced_column_name as 'primary_key'
81
+ ,fk.column_name as 'column'
82
+ ,fk.constraint_name as 'name'
83
+ FROM information_schema.key_column_usage fk
84
+ WHERE fk.referenced_column_name is not null
85
+ AND fk.table_schema = 'dummy_test'
86
+ AND fk.table_name = 'mn_user_notifications'
87
+ 
88
+  (0.1ms) SHOW CREATE TABLE `mn_user_notifications`
89
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
90
+  (372.0ms) DROP DATABASE IF EXISTS `dummy_test`
91
+  (0.3ms) CREATE DATABASE `dummy_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
92
+  (85.0ms) CREATE TABLE `mn_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
93
+  (82.1ms) CREATE TABLE `mn_notification_templates` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `in_app` varchar(255), `mobile` varchar(255), `push` varchar(255), `email` text, `sms` varchar(255), `email_subject` varchar(255), `resource_id` int(11), `resource_type` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
94
+  (165.8ms) CREATE UNIQUE INDEX `unique_type_resource_index` USING btree ON `mn_notification_templates` (`notification_type_id`, `resource_type`, `resource_id`) 
95
+  (165.9ms) CREATE INDEX `resource_index` USING btree ON `mn_notification_templates` (`resource_type`, `resource_id`)
96
+  (73.9ms) CREATE TABLE `mn_notification_types` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `display_name` varchar(255), `created_by_id` int(11) NOT NULL, `updated_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
97
+  (83.8ms) CREATE TABLE `mn_notifications` (`id` int(11) auto_increment PRIMARY KEY, `notification_template_id` int(11) NOT NULL, `in_app` text NOT NULL, `mobile` text NOT NULL, `resource_type` varchar(255), `resource_id` int(11), `created_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
98
+  (157.7ms) CREATE INDEX `index_mn_notifications_on_created_by_id` USING btree ON `mn_notifications` (`created_by_id`) 
99
+  (157.5ms) CREATE INDEX `index_mn_notifications_on_notification_template_id` USING btree ON `mn_notifications` (`notification_template_id`)
100
+  (82.1ms) CREATE TABLE `mn_user_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
101
+  (157.8ms) CREATE INDEX `index_mn_user_notification_settings_on_notification_type_id` USING btree ON `mn_user_notification_settings` (`notification_type_id`)
102
+  (165.5ms) CREATE UNIQUE INDEX `unique_user_notification_type_index` USING btree ON `mn_user_notification_settings` (`user_id`, `notification_type_id`) 
103
+  (81.8ms) CREATE TABLE `mn_user_notifications` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_id` int(11) NOT NULL, `is_read` tinyint(1) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
104
+  (165.7ms) CREATE INDEX `index_mn_user_notifications_on_notification_id` USING btree ON `mn_user_notifications` (`notification_id`) 
105
+  (174.1ms) CREATE INDEX `index_mn_user_notifications_on_user_id` USING btree ON `mn_user_notifications` (`user_id`)
106
+  (86.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
107
+  (241.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
108
+  (0.3ms) SELECT version FROM `schema_migrations`
109
+  (40.9ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071725')
110
+  (41.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071720')
111
+  (49.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071721')
112
+  (49.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071722')
113
+  (49.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071724')
114
+  (49.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071723')
115
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
116
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
117
+  (368.6ms) DROP DATABASE IF EXISTS `dummy_test`
118
+  (0.3ms) CREATE DATABASE `dummy_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
119
+  (84.2ms) CREATE TABLE `mn_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
120
+  (82.2ms) CREATE TABLE `mn_notification_templates` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `in_app` varchar(255), `mobile` varchar(255), `push` varchar(255), `email` text, `sms` varchar(255), `email_subject` varchar(255), `resource_id` int(11), `resource_type` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
121
+  (157.6ms) CREATE UNIQUE INDEX `unique_type_resource_index` USING btree ON `mn_notification_templates` (`notification_type_id`, `resource_type`, `resource_id`) 
122
+  (157.2ms) CREATE INDEX `resource_index` USING btree ON `mn_notification_templates` (`resource_type`, `resource_id`)
123
+  (81.7ms) CREATE TABLE `mn_notification_types` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `display_name` varchar(255), `created_by_id` int(11) NOT NULL, `updated_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
124
+  (90.6ms) CREATE TABLE `mn_notifications` (`id` int(11) auto_increment PRIMARY KEY, `notification_template_id` int(11) NOT NULL, `in_app` text NOT NULL, `mobile` text NOT NULL, `resource_type` varchar(255), `resource_id` int(11), `created_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
125
+  (149.3ms) CREATE INDEX `index_mn_notifications_on_created_by_id` USING btree ON `mn_notifications` (`created_by_id`) 
126
+  (157.6ms) CREATE INDEX `index_mn_notifications_on_notification_template_id` USING btree ON `mn_notifications` (`notification_template_id`)
127
+  (90.3ms) CREATE TABLE `mn_user_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
128
+  (165.9ms) CREATE INDEX `index_mn_user_notification_settings_on_notification_type_id` USING btree ON `mn_user_notification_settings` (`notification_type_id`)
129
+  (157.4ms) CREATE UNIQUE INDEX `unique_user_notification_type_index` USING btree ON `mn_user_notification_settings` (`user_id`, `notification_type_id`) 
130
+  (82.0ms) CREATE TABLE `mn_user_notifications` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_id` int(11) NOT NULL, `is_read` tinyint(1) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
131
+  (175.9ms) CREATE INDEX `index_mn_user_notifications_on_notification_id` USING btree ON `mn_user_notifications` (`notification_id`) 
132
+  (165.8ms) CREATE INDEX `index_mn_user_notifications_on_user_id` USING btree ON `mn_user_notifications` (`user_id`)
133
+  (95.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
134
+  (224.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
135
+  (0.3ms) SELECT version FROM `schema_migrations`
136
+  (49.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071725')
137
+  (49.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071720')
138
+  (41.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071721')
139
+  (41.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071722')
140
+  (41.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071724')
141
+  (41.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20160620071723')
142
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
143
+  (86.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
144
+  (199.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
145
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
146
+ Migrating to CreateMetaNotificationNotificationTypes (20160615074820)
147
+  (83.8ms) CREATE TABLE `mn_notification_types` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `display_name` varchar(255), `created_by_id` int(11) NOT NULL, `updated_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
148
+  (0.2ms) BEGIN
149
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160615074820')
150
+  (50.1ms) COMMIT
151
+ Migrating to CreateMetaNotificationNotificationTemplates (20160618094218)
152
+  (82.2ms) CREATE TABLE `mn_notification_templates` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `in_app` varchar(255), `mobile` varchar(255), `push` varchar(255), `email` text, `sms` varchar(255), `email_subject` varchar(255), `resource_id` int(11), `resource_type` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
153
+  (157.4ms) CREATE UNIQUE INDEX `unique_type_resource_index` ON `mn_notification_templates` (`notification_type_id`, `resource_type`, `resource_id`) 
154
+  (149.2ms) CREATE INDEX `resource_index` ON `mn_notification_templates` (`resource_type`, `resource_id`)
155
+  (0.1ms) BEGIN
156
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160618094218')
157
+  (48.1ms) COMMIT
158
+ Migrating to CreateMetaNotificationNotifications (20160619133533)
159
+  (131.3ms) CREATE TABLE `mn_notifications` (`id` int(11) auto_increment PRIMARY KEY, `notification_template_id` int(11) NOT NULL, `in_app` text NOT NULL, `mobile` text NOT NULL, `resource_type` varchar(255), `resource_id` int(11), `created_by_id` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, INDEX `index_mn_notifications_on_notification_template_id` (`notification_template_id`) , INDEX `index_mn_notifications_on_created_by_id` (`created_by_id`) ) ENGINE=InnoDB
160
+  (0.1ms) BEGIN
161
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160619133533')
162
+  (98.1ms) COMMIT
163
+ Migrating to CreateMetaNotificationUserNotifications (20160620015754)
164
+  (80.5ms) CREATE TABLE `mn_user_notifications` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_id` int(11) NOT NULL, `notification_type_id` int(11) NOT NULL, `is_read` tinyint(1) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, INDEX `index_mn_user_notifications_on_user_id` (`user_id`) , INDEX `index_mn_user_notifications_on_notification_id` (`notification_id`) , INDEX `index_mn_user_notifications_on_notification_type_id` (`notification_type_id`) ) ENGINE=InnoDB
165
+  (0.1ms) BEGIN
166
+ SQL (0.3ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160620015754')
167
+  (48.1ms) COMMIT
168
+ Migrating to CreateMetaNotificationNotificationSettings (20160620020944)
169
+  (132.1ms) CREATE TABLE `mn_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
170
+  (0.1ms) BEGIN
171
+ SQL (0.3ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160620020944')
172
+  (48.2ms) COMMIT
173
+ Migrating to CreateMetaNotificationUserNotificationSettings (20160620052742)
174
+  (89.9ms) CREATE TABLE `mn_user_notification_settings` (`id` int(11) auto_increment PRIMARY KEY, `user_id` int(11) NOT NULL, `notification_type_id` int(11) NOT NULL, `is_mute` tinyint(1) DEFAULT 0 NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, INDEX `index_mn_user_notification_settings_on_notification_type_id` (`notification_type_id`) ) ENGINE=InnoDB
175
+  (150.6ms) CREATE UNIQUE INDEX `unique_user_notification_type_index` ON `mn_user_notification_settings` (`user_id`, `notification_type_id`) 
176
+  (0.2ms) BEGIN
177
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160620052742')
178
+  (47.9ms) COMMIT
179
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
180
+  (0.3ms) SELECT fk.referenced_table_name as 'to_table'
181
+ ,fk.referenced_column_name as 'primary_key'
182
+ ,fk.column_name as 'column'
183
+ ,fk.constraint_name as 'name'
184
+ FROM information_schema.key_column_usage fk
185
+ WHERE fk.referenced_column_name is not null
186
+ AND fk.table_schema = 'dummy_test'
187
+ AND fk.table_name = 'mn_notification_settings'
188
+
189
+  (0.2ms) SHOW CREATE TABLE `mn_notification_settings`
190
+  (0.3ms) SELECT fk.referenced_table_name as 'to_table'
191
+ ,fk.referenced_column_name as 'primary_key'
192
+ ,fk.column_name as 'column'
193
+ ,fk.constraint_name as 'name'
194
+ FROM information_schema.key_column_usage fk
195
+ WHERE fk.referenced_column_name is not null
196
+ AND fk.table_schema = 'dummy_test'
197
+ AND fk.table_name = 'mn_notification_templates'
198
+
199
+  (0.2ms) SHOW CREATE TABLE `mn_notification_templates`
200
+  (0.3ms) SELECT fk.referenced_table_name as 'to_table'
201
+ ,fk.referenced_column_name as 'primary_key'
202
+ ,fk.column_name as 'column'
203
+ ,fk.constraint_name as 'name'
204
+ FROM information_schema.key_column_usage fk
205
+ WHERE fk.referenced_column_name is not null
206
+ AND fk.table_schema = 'dummy_test'
207
+ AND fk.table_name = 'mn_notification_types'
208
+
209
+  (0.2ms) SHOW CREATE TABLE `mn_notification_types`
210
+  (0.3ms) SELECT fk.referenced_table_name as 'to_table'
211
+ ,fk.referenced_column_name as 'primary_key'
212
+ ,fk.column_name as 'column'
213
+ ,fk.constraint_name as 'name'
214
+ FROM information_schema.key_column_usage fk
215
+ WHERE fk.referenced_column_name is not null
216
+ AND fk.table_schema = 'dummy_test'
217
+ AND fk.table_name = 'mn_notifications'
218
+
219
+  (0.1ms) SHOW CREATE TABLE `mn_notifications`
220
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
221
+ ,fk.referenced_column_name as 'primary_key'
222
+ ,fk.column_name as 'column'
223
+ ,fk.constraint_name as 'name'
224
+ FROM information_schema.key_column_usage fk
225
+ WHERE fk.referenced_column_name is not null
226
+ AND fk.table_schema = 'dummy_test'
227
+ AND fk.table_name = 'mn_user_notification_settings'
228
+
229
+  (0.1ms) SHOW CREATE TABLE `mn_user_notification_settings`
230
+  (0.2ms) SELECT fk.referenced_table_name as 'to_table'
231
+ ,fk.referenced_column_name as 'primary_key'
232
+ ,fk.column_name as 'column'
233
+ ,fk.constraint_name as 'name'
234
+ FROM information_schema.key_column_usage fk
235
+ WHERE fk.referenced_column_name is not null
236
+ AND fk.table_schema = 'dummy_test'
237
+ AND fk.table_name = 'mn_user_notifications'
238
+
239
+  (0.1ms) SHOW CREATE TABLE `mn_user_notifications`
240
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
241
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
242
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
243
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
244
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
245
+  (0.1ms) BEGIN
246
+  (0.1ms) ROLLBACK
247
+  (0.1ms) BEGIN
248
+  (0.1ms) ROLLBACK
249
+  (0.2ms) BEGIN
250
+  (0.1ms) ROLLBACK
251
+  (0.1ms) BEGIN
252
+  (0.1ms) ROLLBACK
253
+  (0.1ms) BEGIN
254
+  (0.1ms) ROLLBACK
255
+  (0.1ms) BEGIN
256
+  (0.1ms) ROLLBACK
257
+  (0.1ms) BEGIN
258
+  (0.1ms) ROLLBACK
259
+  (0.1ms) BEGIN
260
+  (0.1ms) ROLLBACK
261
+  (0.1ms) BEGIN
262
+  (0.2ms) ROLLBACK
263
+  (0.2ms) BEGIN
264
+  (0.2ms) ROLLBACK
265
+  (0.1ms) BEGIN
266
+  (0.1ms) ROLLBACK
267
+  (0.1ms) BEGIN
268
+  (0.1ms) ROLLBACK
269
+  (0.1ms) BEGIN
270
+  (0.2ms) ROLLBACK
271
+  (0.1ms) BEGIN
272
+  (0.1ms) ROLLBACK
273
+  (0.1ms) BEGIN
274
+  (0.2ms) ROLLBACK
275
+  (0.1ms) BEGIN
276
+  (0.1ms) ROLLBACK
277
+  (0.1ms) BEGIN
278
+  (0.1ms) ROLLBACK
279
+  (0.1ms) BEGIN
280
+  (0.1ms) ROLLBACK
281
+  (0.1ms) BEGIN
282
+  (0.1ms) ROLLBACK
283
+  (0.1ms) BEGIN
284
+  (0.1ms) ROLLBACK
285
+  (0.1ms) BEGIN
286
+  (0.1ms) ROLLBACK
287
+  (0.1ms) BEGIN
288
+  (0.1ms) ROLLBACK
289
+  (0.1ms) BEGIN
290
+  (0.1ms) ROLLBACK
291
+  (0.1ms) BEGIN
292
+  (0.2ms) ROLLBACK
293
+  (0.1ms) BEGIN
294
+  (0.1ms) ROLLBACK
295
+  (0.1ms) BEGIN
296
+  (0.2ms) ROLLBACK
297
+  (0.1ms) BEGIN
298
+  (0.2ms) ROLLBACK
299
+  (0.1ms) BEGIN
300
+ MetaNotification::NotificationType Exists (22.8ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'connection_request' LIMIT 1
301
+  (0.2ms) ROLLBACK
302
+  (0.1ms) BEGIN
303
+  (0.1ms) SAVEPOINT active_record_1
304
+ MetaNotification::NotificationType Exists (0.1ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'connection_request' LIMIT 1
305
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('connection_request', 'connection_request', 1, 1, '2016-07-19 05:39:25', '2016-07-19 05:39:25')
306
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (1, '2016-07-19 05:39:25', '2016-07-19 05:39:25')
307
+  (0.2ms) RELEASE SAVEPOINT active_record_1
308
+  (32.7ms) ROLLBACK
309
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
310
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
311
+  (0.2ms) BEGIN
312
+  (0.1ms) ROLLBACK
313
+  (0.1ms) BEGIN
314
+  (0.1ms) ROLLBACK
315
+  (0.1ms) BEGIN
316
+  (0.1ms) ROLLBACK
317
+  (0.1ms) BEGIN
318
+  (0.1ms) ROLLBACK
319
+  (0.1ms) BEGIN
320
+  (0.1ms) ROLLBACK
321
+  (0.1ms) BEGIN
322
+  (0.2ms) ROLLBACK
323
+  (0.1ms) BEGIN
324
+  (0.2ms) ROLLBACK
325
+  (0.1ms) BEGIN
326
+  (0.1ms) ROLLBACK
327
+  (0.1ms) BEGIN
328
+  (0.1ms) ROLLBACK
329
+  (0.1ms) BEGIN
330
+  (0.1ms) ROLLBACK
331
+  (0.4ms) BEGIN
332
+  (0.1ms) ROLLBACK
333
+  (0.1ms) BEGIN
334
+  (0.1ms) ROLLBACK
335
+  (0.1ms) BEGIN
336
+  (0.1ms) ROLLBACK
337
+  (0.1ms) BEGIN
338
+  (0.1ms) ROLLBACK
339
+  (0.1ms) BEGIN
340
+  (0.1ms) ROLLBACK
341
+  (0.1ms) BEGIN
342
+  (0.2ms) ROLLBACK
343
+  (0.2ms) BEGIN
344
+  (0.2ms) ROLLBACK
345
+  (0.2ms) BEGIN
346
+  (0.2ms) ROLLBACK
347
+  (0.2ms) BEGIN
348
+  (0.2ms) ROLLBACK
349
+  (0.1ms) BEGIN
350
+  (0.1ms) ROLLBACK
351
+  (0.1ms) BEGIN
352
+  (0.2ms) ROLLBACK
353
+  (0.1ms) BEGIN
354
+  (0.1ms) ROLLBACK
355
+  (0.1ms) BEGIN
356
+  (0.1ms) ROLLBACK
357
+  (0.1ms) BEGIN
358
+  (0.1ms) ROLLBACK
359
+  (0.1ms) BEGIN
360
+  (0.2ms) ROLLBACK
361
+  (0.1ms) BEGIN
362
+  (0.2ms) SAVEPOINT active_record_1
363
+ MetaNotification::NotificationType Exists (21.7ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
364
+ SQL (29.8ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
365
+ SQL (18.1ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (2, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
366
+ SQL (8.7ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (2, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
367
+  (0.2ms) RELEASE SAVEPOINT active_record_1
368
+  (44.8ms) ROLLBACK
369
+  (0.1ms) BEGIN
370
+  (0.5ms) SAVEPOINT active_record_1
371
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
372
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
373
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (3, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
374
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (3, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
376
+  (43.3ms) ROLLBACK
377
+  (0.2ms) BEGIN
378
+  (0.2ms) SAVEPOINT active_record_1
379
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
380
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
381
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (4, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
382
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (4, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
383
+  (0.2ms) RELEASE SAVEPOINT active_record_1
384
+  (70.8ms) ROLLBACK
385
+  (0.1ms) BEGIN
386
+  (0.1ms) SAVEPOINT active_record_1
387
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
388
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
389
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (5, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
390
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (5, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
392
+  (46.3ms) ROLLBACK
393
+  (0.2ms) BEGIN
394
+  (0.2ms) SAVEPOINT active_record_1
395
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
396
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
397
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (6, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
398
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (6, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
399
+  (0.2ms) RELEASE SAVEPOINT active_record_1
400
+  (51.7ms) ROLLBACK
401
+  (0.2ms) BEGIN
402
+  (0.1ms) SAVEPOINT active_record_1
403
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
404
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
405
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (7, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
406
+ SQL (0.4ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (7, '2016-07-22 11:14:05', '2016-07-22 11:14:05')
407
+  (0.2ms) RELEASE SAVEPOINT active_record_1
408
+  (52.9ms) ROLLBACK
409
+  (0.2ms) BEGIN
410
+  (0.2ms) SAVEPOINT active_record_1
411
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
412
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
413
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (8, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
414
+ SQL (0.4ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (8, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
415
+  (0.2ms) RELEASE SAVEPOINT active_record_1
416
+  (53.0ms) ROLLBACK
417
+  (0.2ms) BEGIN
418
+  (0.2ms) SAVEPOINT active_record_1
419
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
420
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
421
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (9, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
422
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (9, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
423
+  (0.2ms) RELEASE SAVEPOINT active_record_1
424
+  (52.7ms) ROLLBACK
425
+  (0.2ms) BEGIN
426
+  (0.2ms) SAVEPOINT active_record_1
427
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
428
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
429
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (10, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
430
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (10, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
431
+  (0.2ms) RELEASE SAVEPOINT active_record_1
432
+  (52.4ms) ROLLBACK
433
+  (0.2ms) BEGIN
434
+  (0.2ms) SAVEPOINT active_record_1
435
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
436
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
437
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (11, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
438
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (11, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
440
+  (53.2ms) ROLLBACK
441
+  (0.1ms) BEGIN
442
+  (0.2ms) ROLLBACK
443
+  (0.1ms) BEGIN
444
+  (0.2ms) ROLLBACK
445
+  (0.2ms) BEGIN
446
+  (0.2ms) SAVEPOINT active_record_1
447
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
448
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
449
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (12, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
450
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (12, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
452
+  (0.1ms) SAVEPOINT active_record_1
453
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (12, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
455
+  (47.9ms) ROLLBACK
456
+  (0.1ms) BEGIN
457
+  (0.1ms) SAVEPOINT active_record_1
458
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
459
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
460
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (13, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
461
+ SQL (0.4ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (13, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
463
+  (0.1ms) SAVEPOINT active_record_1
464
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (13, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
465
+  (0.4ms) RELEASE SAVEPOINT active_record_1
466
+  (50.7ms) ROLLBACK
467
+  (0.1ms) BEGIN
468
+  (0.2ms) SAVEPOINT active_record_1
469
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
470
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
471
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (14, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
472
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (14, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
474
+  (0.2ms) SAVEPOINT active_record_1
475
+ SQL (0.9ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (14, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
476
+  (0.2ms) RELEASE SAVEPOINT active_record_1
477
+  (48.1ms) ROLLBACK
478
+  (0.2ms) BEGIN
479
+  (0.1ms) SAVEPOINT active_record_1
480
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
481
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
482
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (15, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
483
+ SQL (0.4ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (15, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
484
+  (0.2ms) RELEASE SAVEPOINT active_record_1
485
+  (0.2ms) SAVEPOINT active_record_1
486
+ SQL (0.7ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (15, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
487
+  (0.2ms) RELEASE SAVEPOINT active_record_1
488
+  (81.5ms) ROLLBACK
489
+  (0.2ms) BEGIN
490
+  (0.1ms) SAVEPOINT active_record_1
491
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
492
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
493
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (16, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
494
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (16, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
495
+  (0.2ms) RELEASE SAVEPOINT active_record_1
496
+  (0.1ms) SAVEPOINT active_record_1
497
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (16, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
499
+  (50.9ms) ROLLBACK
500
+  (0.2ms) BEGIN
501
+  (0.2ms) SAVEPOINT active_record_1
502
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
503
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
504
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (17, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
505
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (17, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
506
+  (0.2ms) RELEASE SAVEPOINT active_record_1
507
+  (0.2ms) SAVEPOINT active_record_1
508
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (17, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
510
+  (49.3ms) ROLLBACK
511
+  (0.1ms) BEGIN
512
+  (0.1ms) SAVEPOINT active_record_1
513
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
514
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
515
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (18, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
516
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (18, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
517
+  (0.3ms) RELEASE SAVEPOINT active_record_1
518
+  (0.2ms) SAVEPOINT active_record_1
519
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (18, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
521
+  (50.4ms) ROLLBACK
522
+  (0.2ms) BEGIN
523
+  (0.2ms) SAVEPOINT active_record_1
524
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
525
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
526
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (19, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
527
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (19, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
528
+  (0.1ms) RELEASE SAVEPOINT active_record_1
529
+  (0.1ms) SAVEPOINT active_record_1
530
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (19, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
531
+  (0.2ms) RELEASE SAVEPOINT active_record_1
532
+  (51.8ms) ROLLBACK
533
+  (0.2ms) BEGIN
534
+  (0.1ms) SAVEPOINT active_record_1
535
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
536
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
537
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (20, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
538
+ SQL (0.4ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (20, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
540
+  (0.1ms) SAVEPOINT active_record_1
541
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (20, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
543
+  (50.9ms) ROLLBACK
544
+  (0.1ms) BEGIN
545
+  (0.1ms) SAVEPOINT active_record_1
546
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
547
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
548
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (21, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
549
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (21, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
550
+  (0.1ms) RELEASE SAVEPOINT active_record_1
551
+  (0.1ms) SAVEPOINT active_record_1
552
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (21, 1, '2016-07-22 11:14:06', '2016-07-22 11:14:06')
553
+  (0.1ms) RELEASE SAVEPOINT active_record_1
554
+  (51.4ms) ROLLBACK
555
+  (0.2ms) BEGIN
556
+  (0.2ms) ROLLBACK
557
+  (0.2ms) BEGIN
558
+  (0.2ms) ROLLBACK
559
+  (0.1ms) BEGIN
560
+  (0.2ms) ROLLBACK
561
+  (0.1ms) BEGIN
562
+  (0.1ms) ROLLBACK
563
+  (0.1ms) BEGIN
564
+  (0.2ms) ROLLBACK
565
+  (0.1ms) BEGIN
566
+  (0.2ms) ROLLBACK
567
+  (0.2ms) BEGIN
568
+  (0.2ms) ROLLBACK
569
+  (0.2ms) BEGIN
570
+  (0.5ms) SAVEPOINT active_record_1
571
+ SQL (9.7ms) INSERT INTO `mn_notifications` (`notification_template_id`, `in_app`, `mobile`, `resource_type`, `resource_id`, `created_by_id`, `created_at`, `updated_at`) VALUES (6, 'iusto adipisci autem quam et aut enim cumque asperiores iste sed omnis corrupti qui impedit', 'quae asperiores quis et ut harum ullam dolorum culpa vitae', 'sit', 8, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
572
+  (0.2ms) RELEASE SAVEPOINT active_record_1
573
+  (59.9ms) ROLLBACK
574
+  (0.2ms) BEGIN
575
+  (0.2ms) SAVEPOINT active_record_1
576
+ SQL (0.3ms) INSERT INTO `mn_notifications` (`notification_template_id`, `in_app`, `mobile`, `resource_type`, `resource_id`, `created_by_id`, `created_at`, `updated_at`) VALUES (6, 'nulla ex dolore qui officiis est velit aut voluptas ea quia et quae eum magnam', 'explicabo assumenda corrupti ut amet pariatur autem et a praesentium', 'qui', 3, 9, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
577
+  (0.1ms) RELEASE SAVEPOINT active_record_1
578
+  (49.3ms) ROLLBACK
579
+  (0.1ms) BEGIN
580
+  (0.2ms) SAVEPOINT active_record_1
581
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
582
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
583
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (22, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
584
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (22, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
586
+  (46.4ms) ROLLBACK
587
+  (0.1ms) BEGIN
588
+  (0.2ms) SAVEPOINT active_record_1
589
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
590
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
591
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (23, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
592
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (23, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
593
+  (0.2ms) RELEASE SAVEPOINT active_record_1
594
+  (48.7ms) ROLLBACK
595
+  (0.1ms) BEGIN
596
+  (0.2ms) SAVEPOINT active_record_1
597
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
598
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
599
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (24, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
600
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (24, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
601
+  (0.1ms) RELEASE SAVEPOINT active_record_1
602
+  (140.7ms) ROLLBACK
603
+  (0.2ms) BEGIN
604
+  (0.2ms) SAVEPOINT active_record_1
605
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
606
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
607
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (25, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
608
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (25, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
609
+  (0.2ms) RELEASE SAVEPOINT active_record_1
610
+  (49.0ms) ROLLBACK
611
+  (0.2ms) BEGIN
612
+  (0.2ms) SAVEPOINT active_record_1
613
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
614
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
615
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (26, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
616
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (26, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
618
+  (49.0ms) ROLLBACK
619
+  (0.2ms) BEGIN
620
+  (0.1ms) SAVEPOINT active_record_1
621
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
622
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
623
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (27, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
624
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (27, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
625
+  (0.1ms) RELEASE SAVEPOINT active_record_1
626
+  (53.1ms) ROLLBACK
627
+  (0.1ms) BEGIN
628
+  (0.1ms) SAVEPOINT active_record_1
629
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
630
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
631
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (28, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
632
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (28, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
633
+  (0.1ms) RELEASE SAVEPOINT active_record_1
634
+  (61.2ms) ROLLBACK
635
+  (0.2ms) BEGIN
636
+  (0.2ms) SAVEPOINT active_record_1
637
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
638
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
639
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (29, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
640
+ SQL (0.6ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (29, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
641
+  (0.1ms) RELEASE SAVEPOINT active_record_1
642
+  (52.8ms) ROLLBACK
643
+  (0.1ms) BEGIN
644
+  (0.1ms) SAVEPOINT active_record_1
645
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
646
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
647
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (30, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
648
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (30, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
650
+  (53.2ms) ROLLBACK
651
+  (0.1ms) BEGIN
652
+  (0.1ms) SAVEPOINT active_record_1
653
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
654
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
655
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (31, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
656
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (31, '2016-07-22 11:14:07', '2016-07-22 11:14:07')
657
+  (0.1ms) RELEASE SAVEPOINT active_record_1
658
+  (53.5ms) ROLLBACK
659
+  (0.2ms) BEGIN
660
+  (0.7ms) ROLLBACK
661
+  (0.2ms) BEGIN
662
+  (0.2ms) SAVEPOINT active_record_1
663
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
664
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
665
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (32, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
666
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (32, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
667
+  (0.2ms) RELEASE SAVEPOINT active_record_1
668
+  (47.4ms) ROLLBACK
669
+  (0.1ms) BEGIN
670
+  (0.2ms) SAVEPOINT active_record_1
671
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
672
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
673
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (33, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
674
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (33, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
675
+  (0.2ms) RELEASE SAVEPOINT active_record_1
676
+  (0.2ms) SAVEPOINT active_record_1
677
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (33, 'ipsum', 'rem', 'ratione', 'Totam autem eum ipsam commodi consequatur est ut. Et culpa reiciendis enim. Cumque et dolor voluptas distinctio. Molestias sit id consectetur rerum est harum ab. Numquam quam et fuga assumenda et fugiat recusandae.', 'qui porro quam earum atque odit iste repellendus ut aspernatur', 'rerum et molestiae soluta eveniet', 10, 'qui', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
678
+  (0.1ms) RELEASE SAVEPOINT active_record_1
679
+  (49.3ms) ROLLBACK
680
+  (0.1ms) BEGIN
681
+  (0.1ms) SAVEPOINT active_record_1
682
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
683
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
684
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (34, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
685
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (34, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
686
+  (0.4ms) RELEASE SAVEPOINT active_record_1
687
+  (0.3ms) SAVEPOINT active_record_1
688
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (34, 'culpa', 'et', 'doloribus', 'Blanditiis illo fugiat et consequuntur. Dignissimos officia temporibus ut iste quis. Iste quaerat vel laboriosam qui quas corrupti. Sint provident occaecati tempore voluptatibus. Ut assumenda tempora non voluptatem dicta enim. Cupiditate fuga quia qui et. Nisi recusandae sequi.', 'qui incidunt perferendis dolorem aliquam sed et in nihil eius', 'animi laudantium culpa dicta sed', 7, 'esse', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
690
+  (49.2ms) ROLLBACK
691
+  (0.1ms) BEGIN
692
+  (0.2ms) SAVEPOINT active_record_1
693
+ MetaNotification::NotificationType Exists (0.6ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
694
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
695
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (35, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
696
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (35, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
698
+  (0.2ms) SAVEPOINT active_record_1
699
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (35, 'veniam', 'dicta', 'accusamus', 'Ut debitis voluptates at et. Numquam debitis soluta vel quo impedit dicta. Praesentium iste harum voluptatibus doloribus iusto eaque fugiat. Voluptatibus animi incidunt ducimus ut perferendis consectetur. Ut quod molestias nostrum. Aut nam reprehenderit quae et aut cupiditate. Enim vel enim ea non.', 'perspiciatis et ducimus at adipisci provident et beatae magni voluptatibus', 'veniam sapiente impedit iste sint', 10, 'et', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
700
+  (0.2ms) RELEASE SAVEPOINT active_record_1
701
+  (51.8ms) ROLLBACK
702
+  (0.2ms) BEGIN
703
+  (0.1ms) SAVEPOINT active_record_1
704
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
705
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
706
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (36, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
707
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (36, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
709
+  (0.1ms) SAVEPOINT active_record_1
710
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (36, 'quo', 'nostrum', 'quia', 'Iusto iure quis officiis. Maiores minima aut. Rerum numquam sed. Ab sed eum eveniet cum voluptatem. Repudiandae voluptate voluptatem consequatur accusantium est nesciunt. Non ab officiis ipsum fugiat sint ut. Ut occaecati dolorum architecto ducimus in.', 'molestias qui omnis quam exercitationem ut aut nihil aut libero', 'vitae voluptatem harum accusamus rerum', 1, 'voluptatem', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
711
+  (0.1ms) RELEASE SAVEPOINT active_record_1
712
+  (48.4ms) ROLLBACK
713
+  (0.1ms) BEGIN
714
+  (0.1ms) SAVEPOINT active_record_1
715
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
716
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
717
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (37, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
718
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (37, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
719
+  (0.2ms) RELEASE SAVEPOINT active_record_1
720
+  (0.1ms) SAVEPOINT active_record_1
721
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (37, 'repellat', 'voluptas', 'perferendis', 'Alias sit ut optio quas. Accusantium nihil quos dolores molestias eum aperiam. Nisi sunt modi et aut odit. Aperiam rerum illum ipsum ut est sint. Repudiandae et ex nobis temporibus dolor. Blanditiis voluptatem dolor non enim ut.', 'rerum labore itaque qui distinctio eum nulla sint repellat earum', 'ut explicabo et ea eum', 6, 'quod', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
723
+  (47.4ms) ROLLBACK
724
+  (0.2ms) BEGIN
725
+  (0.1ms) SAVEPOINT active_record_1
726
+ MetaNotification::NotificationType Exists (0.9ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
727
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
728
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (38, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
729
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (38, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
730
+  (0.1ms) RELEASE SAVEPOINT active_record_1
731
+  (0.2ms) SAVEPOINT active_record_1
732
+ SQL (0.4ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (38, 'dolorem', 'deleniti', 'et', 'Et quisquam deleniti id. Quia sint et delectus est harum. Doloremque praesentium voluptatum. Libero hic repellat aliquid. Occaecati et beatae nesciunt odio.', 'nihil ad eum dolorem quia saepe voluptas ullam iure exercitationem', 'dolor labore quos in vero', 8, 'perspiciatis', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
733
+  (0.1ms) RELEASE SAVEPOINT active_record_1
734
+  (45.8ms) ROLLBACK
735
+  (0.1ms) BEGIN
736
+  (0.2ms) SAVEPOINT active_record_1
737
+ MetaNotification::NotificationType Exists (0.6ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
738
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
739
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (39, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
740
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (39, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
742
+  (0.1ms) SAVEPOINT active_record_1
743
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (39, 'corporis', 'ullam', 'cupiditate', 'Temporibus at sunt est. Tempore ipsum veritatis tenetur eum impedit. Sit rerum quis suscipit nostrum qui. Illo nihil sed mollitia iure. Eius reiciendis accusantium illum voluptatum aliquam recusandae est. Fugit eaque consequatur.', 'voluptatem animi qui asperiores quo corporis temporibus quas quos culpa', 'sed voluptates aut qui sint', 3, 'placeat', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
745
+  (79.8ms) ROLLBACK
746
+  (0.2ms) BEGIN
747
+  (0.1ms) SAVEPOINT active_record_1
748
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
749
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
750
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (40, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
751
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (40, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
752
+  (0.2ms) RELEASE SAVEPOINT active_record_1
753
+  (0.2ms) SAVEPOINT active_record_1
754
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (40, 'esse', 'animi', 'placeat', 'Sunt consequatur autem. Aut et quasi voluptatem aut. Esse dolores odio ducimus. Est quod culpa sunt ullam rerum et odit. Est laboriosam rerum omnis et dolor commodi.', 'veniam perferendis voluptatem sint similique reiciendis ea et quam ut', 'quo non mollitia tempora et', 8, 'eos', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
756
+  (48.7ms) ROLLBACK
757
+  (0.2ms) BEGIN
758
+  (0.1ms) SAVEPOINT active_record_1
759
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
760
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
761
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (41, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
762
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (41, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
763
+  (0.2ms) RELEASE SAVEPOINT active_record_1
764
+  (0.1ms) SAVEPOINT active_record_1
765
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (41, 'autem', 'et', 'laboriosam', 'Alias est ducimus a quia. Ipsum totam reiciendis voluptatem sit. Dignissimos minus nisi ipsa. Excepturi quidem distinctio velit reiciendis nam. Cum deleniti eos sit consequuntur dolor voluptatibus. Recusandae quia nulla doloremque.', 'facilis et dolor vitae neque corporis ex maiores consequatur nihil', 'rerum exercitationem reiciendis sint vel', 7, 'iure', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
767
+  (90.2ms) ROLLBACK
768
+  (0.2ms) BEGIN
769
+  (0.2ms) SAVEPOINT active_record_1
770
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
771
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
772
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (42, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
773
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (42, '2016-07-22 11:14:08', '2016-07-22 11:14:08')
774
+  (0.1ms) RELEASE SAVEPOINT active_record_1
775
+  (0.3ms) SAVEPOINT active_record_1
776
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `in_app`, `mobile`, `push`, `email`, `sms`, `email_subject`, `resource_id`, `resource_type`, `created_at`, `updated_at`) VALUES (42, 'nostrum', 'accusamus', 'sapiente', 'A culpa non. Voluptatem vitae deserunt nobis quaerat consequatur. Est accusamus modi. Eos aliquid aut. Facere quae quaerat recusandae.', 'libero quae eaque expedita vitae dolores et illum tenetur minima', 'aspernatur iusto facilis quo sed', 1, 'voluptatem', '2016-07-22 11:14:08', '2016-07-22 11:14:08')
777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
778
+  (97.8ms) ROLLBACK
779
+  (0.2ms) BEGIN
780
+ MetaNotification::NotificationType Exists (0.6ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
781
+  (0.1ms) ROLLBACK
782
+  (0.1ms) BEGIN
783
+ MetaNotification::NotificationType Exists (1.9ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_update' LIMIT 1
784
+  (0.2ms) ROLLBACK
785
+  (0.4ms) BEGIN
786
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'student_move' LIMIT 1
787
+  (0.2ms) ROLLBACK
788
+  (0.2ms) BEGIN
789
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'recruiter_add' LIMIT 1
790
+  (0.1ms) ROLLBACK
791
+  (0.1ms) BEGIN
792
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'coordinator_add' LIMIT 1
793
+  (0.1ms) ROLLBACK
794
+  (0.1ms) BEGIN
795
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'message' LIMIT 1
796
+  (0.1ms) ROLLBACK
797
+  (0.1ms) BEGIN
798
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'connection_request' LIMIT 1
799
+  (0.1ms) ROLLBACK
800
+  (0.1ms) BEGIN
801
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'welcome_notification' LIMIT 1
802
+  (0.2ms) ROLLBACK
803
+  (0.1ms) BEGIN
804
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'd_c' LIMIT 1
805
+  (0.2ms) ROLLBACK
806
+  (0.3ms) BEGIN
807
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '_test' LIMIT 1
808
+  (0.1ms) ROLLBACK
809
+  (0.1ms) BEGIN
810
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'test_' LIMIT 1
811
+  (0.1ms) ROLLBACK
812
+  (0.1ms) BEGIN
813
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '0test' LIMIT 1
814
+  (0.1ms) ROLLBACK
815
+  (0.1ms) BEGIN
816
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'test0' LIMIT 1
817
+  (0.2ms) ROLLBACK
818
+  (0.1ms) BEGIN
819
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '123' LIMIT 1
820
+  (0.1ms) ROLLBACK
821
+  (0.2ms) BEGIN
822
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '' LIMIT 1
823
+  (0.3ms) ROLLBACK
824
+  (0.1ms) BEGIN
825
+ MetaNotification::NotificationType Exists (0.9ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'dc' LIMIT 1
826
+  (0.2ms) ROLLBACK
827
+  (0.1ms) BEGIN
828
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'd@c' LIMIT 1
829
+  (0.1ms) ROLLBACK
830
+  (0.1ms) BEGIN
831
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '@dc' LIMIT 1
832
+  (0.1ms) ROLLBACK
833
+  (0.1ms) BEGIN
834
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'd#c' LIMIT 1
835
+  (0.1ms) ROLLBACK
836
+  (0.1ms) BEGIN
837
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'test' LIMIT 1
838
+  (0.2ms) ROLLBACK
839
+  (0.1ms) BEGIN
840
+  (0.2ms) SAVEPOINT active_record_1
841
+ MetaNotification::NotificationType Exists (0.2ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
842
+ SQL (0.8ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
843
+ SQL (0.4ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (43, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
844
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (43, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
846
+  (30.9ms) ROLLBACK
847
+  (0.2ms) BEGIN
848
+  (0.2ms) SAVEPOINT active_record_1
849
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_update' LIMIT 1
850
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_update', 'Drive Update', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
851
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (44, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
852
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (44, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
853
+  (0.1ms) RELEASE SAVEPOINT active_record_1
854
+  (78.5ms) ROLLBACK
855
+  (0.2ms) BEGIN
856
+  (0.1ms) SAVEPOINT active_record_1
857
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'student_move' LIMIT 1
858
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('student_move', 'Student Move', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
859
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (45, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
860
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (45, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
862
+  (79.8ms) ROLLBACK
863
+  (0.1ms) BEGIN
864
+  (0.1ms) SAVEPOINT active_record_1
865
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'recruiter_add' LIMIT 1
866
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('recruiter_add', 'Recruiter Add', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
867
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (46, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
868
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (46, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
869
+  (0.1ms) RELEASE SAVEPOINT active_record_1
870
+  (46.6ms) ROLLBACK
871
+  (0.2ms) BEGIN
872
+  (0.1ms) SAVEPOINT active_record_1
873
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'coordinator_add' LIMIT 1
874
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('coordinator_add', 'Coordinator Add', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
875
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (47, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
876
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (47, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
878
+  (46.1ms) ROLLBACK
879
+  (0.1ms) BEGIN
880
+  (0.1ms) SAVEPOINT active_record_1
881
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'message' LIMIT 1
882
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('message', 'message', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
883
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (48, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
884
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (48, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
885
+  (0.1ms) RELEASE SAVEPOINT active_record_1
886
+  (46.8ms) ROLLBACK
887
+  (0.1ms) BEGIN
888
+  (0.1ms) SAVEPOINT active_record_1
889
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'connection_request' LIMIT 1
890
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('connection_request', 'Connection Request', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
891
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (49, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
892
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (49, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
893
+  (0.1ms) RELEASE SAVEPOINT active_record_1
894
+  (46.2ms) ROLLBACK
895
+  (0.1ms) BEGIN
896
+  (0.1ms) SAVEPOINT active_record_1
897
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'welcome_notification' LIMIT 1
898
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('welcome_notification', 'Welcome Notification', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
899
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (50, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
900
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (50, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
901
+  (0.1ms) RELEASE SAVEPOINT active_record_1
902
+  (47.1ms) ROLLBACK
903
+  (0.1ms) BEGIN
904
+  (0.1ms) SAVEPOINT active_record_1
905
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'd_c' LIMIT 1
906
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('d_c', 'Drive create', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
907
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (51, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
908
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (51, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
909
+  (0.1ms) RELEASE SAVEPOINT active_record_1
910
+  (46.6ms) ROLLBACK
911
+  (0.1ms) BEGIN
912
+  (0.1ms) SAVEPOINT active_record_1
913
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '_test' LIMIT 1
914
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('_test', 'test', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
915
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (52, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
916
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (52, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
917
+  (0.1ms) RELEASE SAVEPOINT active_record_1
918
+  (40.0ms) ROLLBACK
919
+  (0.1ms) BEGIN
920
+  (0.1ms) SAVEPOINT active_record_1
921
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'test_' LIMIT 1
922
+ SQL (0.6ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('test_', 'test', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
923
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (53, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
924
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (53, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
925
+  (0.1ms) RELEASE SAVEPOINT active_record_1
926
+  (37.3ms) ROLLBACK
927
+  (0.2ms) BEGIN
928
+  (0.1ms) SAVEPOINT active_record_1
929
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '0test' LIMIT 1
930
+ SQL (0.5ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('0test', 'test', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
931
+ SQL (0.4ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (54, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
932
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (54, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
934
+  (50.1ms) ROLLBACK
935
+  (0.2ms) BEGIN
936
+  (0.1ms) SAVEPOINT active_record_1
937
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'test0' LIMIT 1
938
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('test0', 'test', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
939
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (55, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
940
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (55, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
941
+  (0.1ms) RELEASE SAVEPOINT active_record_1
942
+  (46.2ms) ROLLBACK
943
+  (0.1ms) BEGIN
944
+  (0.2ms) SAVEPOINT active_record_1
945
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY '123' LIMIT 1
946
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('123', 'test', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
947
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (56, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
948
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (56, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
950
+  (45.8ms) ROLLBACK
951
+  (0.1ms) BEGIN
952
+  (0.2ms) SAVEPOINT active_record_1
953
+ MetaNotification::NotificationType Exists (0.5ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
954
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
955
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (57, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
956
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (57, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
957
+  (0.2ms) RELEASE SAVEPOINT active_record_1
958
+  (50.9ms) ROLLBACK
959
+  (0.1ms) BEGIN
960
+  (0.1ms) SAVEPOINT active_record_1
961
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
962
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
963
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (58, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
964
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (58, '2016-07-22 11:14:09', '2016-07-22 11:14:09')
965
+  (0.4ms) RELEASE SAVEPOINT active_record_1
966
+  (51.7ms) ROLLBACK
967
+  (0.2ms) BEGIN
968
+  (0.2ms) SAVEPOINT active_record_1
969
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
970
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
971
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (59, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
972
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (59, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
973
+  (0.2ms) RELEASE SAVEPOINT active_record_1
974
+  (51.0ms) ROLLBACK
975
+  (0.2ms) BEGIN
976
+  (0.1ms) SAVEPOINT active_record_1
977
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
978
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
979
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (60, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
980
+ SQL (0.2ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (60, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
982
+  (53.5ms) ROLLBACK
983
+  (0.1ms) BEGIN
984
+  (0.6ms) SAVEPOINT active_record_1
985
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
986
+ SQL (0.4ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
987
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (61, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
988
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (61, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
989
+  (1.4ms) RELEASE SAVEPOINT active_record_1
990
+  (46.7ms) ROLLBACK
991
+  (0.2ms) BEGIN
992
+  (0.2ms) SAVEPOINT active_record_1
993
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
994
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
995
+ SQL (0.4ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (62, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
996
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (62, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
997
+  (0.2ms) RELEASE SAVEPOINT active_record_1
998
+  (48.6ms) ROLLBACK
999
+  (0.1ms) BEGIN
1000
+  (0.2ms) SAVEPOINT active_record_1
1001
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1002
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1003
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (63, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1004
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (63, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1005
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1006
+  (51.8ms) ROLLBACK
1007
+  (0.1ms) BEGIN
1008
+  (0.2ms) SAVEPOINT active_record_1
1009
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1010
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1011
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (64, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1012
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (64, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1014
+  (101.4ms) ROLLBACK
1015
+  (0.1ms) BEGIN
1016
+  (0.2ms) SAVEPOINT active_record_1
1017
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1018
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1019
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (65, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1020
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (65, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1022
+  (62.2ms) ROLLBACK
1023
+  (0.2ms) BEGIN
1024
+  (0.1ms) SAVEPOINT active_record_1
1025
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1026
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1027
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (66, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1028
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (66, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1030
+  (133.1ms) ROLLBACK
1031
+  (0.1ms) BEGIN
1032
+  (0.3ms) ROLLBACK
1033
+  (0.3ms) BEGIN
1034
+  (0.2ms) ROLLBACK
1035
+  (0.1ms) BEGIN
1036
+  (0.2ms) ROLLBACK
1037
+  (0.2ms) BEGIN
1038
+  (0.2ms) SAVEPOINT active_record_1
1039
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1040
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1041
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (67, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1042
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (67, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1043
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1044
+  (0.1ms) SAVEPOINT active_record_1
1045
+ SQL (0.6ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (8, 67, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1047
+  (52.9ms) ROLLBACK
1048
+  (0.4ms) BEGIN
1049
+  (0.2ms) SAVEPOINT active_record_1
1050
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1051
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1052
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (68, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1053
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (68, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1054
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1055
+  (0.1ms) SAVEPOINT active_record_1
1056
+ SQL (0.3ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (8, 68, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1058
+  (48.9ms) ROLLBACK
1059
+  (0.2ms) BEGIN
1060
+  (0.2ms) SAVEPOINT active_record_1
1061
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1062
+ SQL (0.4ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1063
+ SQL (0.5ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (69, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1064
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (69, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1065
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1066
+  (0.1ms) SAVEPOINT active_record_1
1067
+ SQL (0.4ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `created_at`, `updated_at`) VALUES (4, 69, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1068
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1069
+  (51.8ms) ROLLBACK
1070
+  (0.1ms) BEGIN
1071
+  (0.2ms) SAVEPOINT active_record_1
1072
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1073
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1074
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (70, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1075
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (70, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1076
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1077
+  (0.2ms) SAVEPOINT active_record_1
1078
+ SQL (0.3ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `created_at`, `updated_at`) VALUES (9, 70, '2016-07-22 11:14:10', '2016-07-22 11:14:10')
1079
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1080
+  (45.8ms) ROLLBACK
1081
+  (0.1ms) BEGIN
1082
+  (0.2ms) SAVEPOINT active_record_1
1083
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1084
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1085
+ SQL (0.4ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (71, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1086
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (71, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1087
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1088
+  (0.2ms) SAVEPOINT active_record_1
1089
+ SQL (0.3ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `created_at`, `updated_at`) VALUES (6, 71, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1090
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1091
+  (46.0ms) ROLLBACK
1092
+  (3.5ms) BEGIN
1093
+  (0.2ms) SAVEPOINT active_record_1
1094
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1095
+ SQL (0.4ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1096
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (72, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1097
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (72, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1098
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1099
+  (0.2ms) SAVEPOINT active_record_1
1100
+ SQL (0.2ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `created_at`, `updated_at`) VALUES (8, 72, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1102
+  (51.7ms) ROLLBACK
1103
+  (0.2ms) BEGIN
1104
+  (0.2ms) SAVEPOINT active_record_1
1105
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1106
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1107
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (73, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1108
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (73, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1109
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1110
+  (0.2ms) SAVEPOINT active_record_1
1111
+ SQL (0.3ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `created_at`, `updated_at`) VALUES (3, 73, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1113
+  (47.5ms) ROLLBACK
1114
+  (0.2ms) BEGIN
1115
+  (0.2ms) SAVEPOINT active_record_1
1116
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1117
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1118
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (74, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1119
+ SQL (0.4ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (74, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1121
+  (0.2ms) SAVEPOINT active_record_1
1122
+ SQL (0.3ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `is_mute`, `created_at`, `updated_at`) VALUES (6, 74, 1, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1124
+  (122.9ms) ROLLBACK
1125
+  (0.1ms) BEGIN
1126
+  (0.2ms) SAVEPOINT active_record_1
1127
+ MetaNotification::NotificationType Exists (0.4ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1128
+ SQL (0.3ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1129
+ SQL (0.3ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (75, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1130
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (75, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1132
+  (0.2ms) SAVEPOINT active_record_1
1133
+ SQL (0.3ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `created_at`, `updated_at`) VALUES (7, 75, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1135
+  (48.0ms) ROLLBACK
1136
+  (0.2ms) BEGIN
1137
+  (0.2ms) SAVEPOINT active_record_1
1138
+ MetaNotification::NotificationType Exists (0.3ms) SELECT 1 AS one FROM `mn_notification_types` WHERE `mn_notification_types`.`name` = BINARY 'drive_create' LIMIT 1
1139
+ SQL (0.2ms) INSERT INTO `mn_notification_types` (`name`, `display_name`, `created_by_id`, `updated_by_id`, `created_at`, `updated_at`) VALUES ('drive_create', 'Drive Create', 1, 1, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1140
+ SQL (0.2ms) INSERT INTO `mn_notification_templates` (`notification_type_id`, `created_at`, `updated_at`) VALUES (76, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1141
+ SQL (0.3ms) INSERT INTO `mn_notification_settings` (`notification_type_id`, `created_at`, `updated_at`) VALUES (76, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1142
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1143
+  (0.2ms) SAVEPOINT active_record_1
1144
+ SQL (0.3ms) INSERT INTO `mn_user_notification_settings` (`user_id`, `notification_type_id`, `created_at`, `updated_at`) VALUES (2, 76, '2016-07-22 11:14:11', '2016-07-22 11:14:11')
1145
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1146
+  (49.6ms) ROLLBACK
1147
+  (0.2ms) BEGIN
1148
+  (0.1ms) ROLLBACK
1149
+  (0.2ms) BEGIN
1150
+  (0.1ms) ROLLBACK
1151
+  (0.1ms) BEGIN
1152
+  (0.1ms) ROLLBACK
1153
+  (0.2ms) BEGIN
1154
+  (0.2ms) ROLLBACK
1155
+  (0.3ms) BEGIN
1156
+  (0.2ms) ROLLBACK
1157
+  (0.1ms) BEGIN
1158
+  (0.2ms) ROLLBACK
1159
+  (0.1ms) BEGIN
1160
+  (0.1ms) ROLLBACK
1161
+  (0.1ms) BEGIN
1162
+  (0.1ms) ROLLBACK
1163
+  (0.1ms) BEGIN
1164
+  (0.2ms) ROLLBACK
1165
+  (0.1ms) BEGIN
1166
+  (0.1ms) ROLLBACK
1167
+  (0.1ms) BEGIN
1168
+  (0.1ms) ROLLBACK
1169
+  (0.1ms) BEGIN
1170
+  (0.1ms) ROLLBACK
1171
+  (0.1ms) BEGIN
1172
+  (0.1ms) ROLLBACK
1173
+  (0.1ms) BEGIN
1174
+  (0.1ms) ROLLBACK
1175
+  (0.1ms) BEGIN
1176
+  (0.1ms) ROLLBACK
1177
+  (0.1ms) BEGIN
1178
+  (0.1ms) ROLLBACK
1179
+  (0.1ms) BEGIN
1180
+  (0.1ms) ROLLBACK
1181
+  (0.1ms) BEGIN
1182
+  (0.1ms) ROLLBACK
1183
+  (0.1ms) BEGIN
1184
+  (0.1ms) ROLLBACK
1185
+  (0.1ms) BEGIN
1186
+  (0.1ms) ROLLBACK
1187
+  (0.1ms) BEGIN
1188
+  (0.1ms) ROLLBACK
1189
+  (0.1ms) BEGIN
1190
+  (0.1ms) ROLLBACK
9
1191
   (0.1ms) BEGIN
10
1192
   (0.1ms) ROLLBACK