Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreateUsers (20151123023406)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123023406')  (0.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123023406)  (0.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151123023406') Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123023406)  (0.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123024617')  (9.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.0ms) select sqlite_version(*)  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.0ms) select sqlite_version(*)  (9.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151123024617') Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151123024617') Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.0ms) select sqlite_version(*)  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123024617)  (0.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123025448)  (0.1ms) select sqlite_version(*)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123025448')  (0.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123025448) Migrating to CreateMailboxer (20151123152908)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "mailboxer_conversations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) DEFAULT '', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "mailboxer_receipts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar(255), "notification_id" integer NOT NULL, "is_read" boolean DEFAULT 'f', "trashed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "mailbox_type" varchar(25), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "mailboxer_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "body" text, "subject" varchar(255) DEFAULT '', "sender_id" integer, "sender_type" varchar(255), "conversation_id" integer, "draft" boolean DEFAULT 'f', "notification_code" varchar(255), "notified_object_id" integer, "notified_object_type" varchar(255), "attachment" varchar(255), "updated_at" datetime NOT NULL, "created_at" datetime NOT NULL, "global" boolean DEFAULT 'f', "expires" datetime)  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_notification_id" ON "mailboxer_receipts" ("notification_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_conversation_id" ON "mailboxer_notifications" ("conversation_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152908')  (0.8ms) commit transaction Migrating to AddConversationOptout (20151123152909)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversation_opt_outs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "unsubscriber_id" integer, "unsubscriber_type" varchar(255), "conversation_id" integer)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152909')  (0.5ms) commit transaction Migrating to AddMissingIndices (20151123152910)  (0.0ms) begin transaction  (0.3ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_unsubscriber_id_type" ON "mailboxer_conversation_opt_outs" ("unsubscriber_id", "unsubscriber_type")  (0.1ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_conversation_id" ON "mailboxer_conversation_opt_outs" ("conversation_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_type" ON "mailboxer_notifications" ("type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_sender_id_and_sender_type" ON "mailboxer_notifications" ("sender_id", "sender_type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_notified_object_id_and_type" ON "mailboxer_notifications" ("notified_object_id", "notified_object_type")  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_receiver_id_and_receiver_type" ON "mailboxer_receipts" ("receiver_id", "receiver_type")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152910')  (0.9ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123025448) Migrating to CreateMailboxer (20151123152908) Migrating to AddConversationOptout (20151123152909) Migrating to AddMissingIndices (20151123152910) Migrating to CreateMessageAttachments (20151123194517)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "message_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123194517')  (9.1ms) commit transaction Migrating to AddMailboxerNotificationRefToMailboxerMessageAttachments (20151123195505)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "mailboxer_message_attachments" ADD "mailboxer_notification_id" integer SQLite3::SQLException: no such table: mailboxer_message_attachments: ALTER TABLE "mailboxer_message_attachments" ADD "mailboxer_notification_id" integer  (0.1ms) rollback transaction Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123025448) Migrating to CreateMailboxer (20151123152908) Migrating to AddConversationOptout (20151123152909) Migrating to AddMissingIndices (20151123152910) Migrating to CreateMessageAttachments (20151123194517) Migrating to AddMailboxerNotificationRefToMailboxerMessageAttachments (20151123195505)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "mailboxer_message_attachments" ADD "mailboxer_notification_id" integer SQLite3::SQLException: no such table: mailboxer_message_attachments: ALTER TABLE "mailboxer_message_attachments" ADD "mailboxer_notification_id" integer  (0.0ms) rollback transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (9.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreateUsers (20151123025448)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123025448')  (0.9ms) commit transaction Migrating to CreateMailboxer (20151123152908)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) DEFAULT '', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "mailboxer_receipts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar(255), "notification_id" integer NOT NULL, "is_read" boolean DEFAULT 'f', "trashed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "mailbox_type" varchar(25), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "mailboxer_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "body" text, "subject" varchar(255) DEFAULT '', "sender_id" integer, "sender_type" varchar(255), "conversation_id" integer, "draft" boolean DEFAULT 'f', "notification_code" varchar(255), "notified_object_id" integer, "notified_object_type" varchar(255), "attachment" varchar(255), "updated_at" datetime NOT NULL, "created_at" datetime NOT NULL, "global" boolean DEFAULT 'f', "expires" datetime)  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_notification_id" ON "mailboxer_receipts" ("notification_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_conversation_id" ON "mailboxer_notifications" ("conversation_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152908')  (0.7ms) commit transaction Migrating to AddConversationOptout (20151123152909)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversation_opt_outs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "unsubscriber_id" integer, "unsubscriber_type" varchar(255), "conversation_id" integer)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152909')  (0.6ms) commit transaction Migrating to AddMissingIndices (20151123152910)  (0.0ms) begin transaction  (0.2ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_unsubscriber_id_type" ON "mailboxer_conversation_opt_outs" ("unsubscriber_id", "unsubscriber_type")  (0.1ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_conversation_id" ON "mailboxer_conversation_opt_outs" ("conversation_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_type" ON "mailboxer_notifications" ("type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_sender_id_and_sender_type" ON "mailboxer_notifications" ("sender_id", "sender_type")  (0.2ms) CREATE INDEX "index_mailboxer_notifications_on_notified_object_id_and_type" ON "mailboxer_notifications" ("notified_object_id", "notified_object_type")  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_receiver_id_and_receiver_type" ON "mailboxer_receipts" ("receiver_id", "receiver_type")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152910')  (0.8ms) commit transaction Migrating to CreateMessageAttachments (20151123194517)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_message_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123194517')  (0.7ms) commit transaction Migrating to AddMailboxerNotificationRefToMailboxerMessageAttachments (20151123195505)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "mailboxer_message_attachments" ADD "mailboxer_notification_id" integer  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123195505')  (0.8ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123025448) Migrating to CreateMailboxer (20151123152908) Migrating to AddConversationOptout (20151123152909) Migrating to AddMissingIndices (20151123152910) Migrating to CreateMessageAttachments (20151123194517) Migrating to AddMailboxerNotificationRefToMailboxerMessageAttachments (20151123195505) Migrating to AddObjectIdToMailboxerMessageAttachment (20151123202931)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "mailboxer_message_attachments" ADD "object_id" integer  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123202931')  (0.7ms) commit transaction Migrating to AddFileToMailboxerMessageAttachment (20151123203128)  (0.0ms) begin transaction  (0.1ms) ALTER TABLE "mailboxer_message_attachments" ADD "file" varchar(255) SQLite3::SQLException: duplicate column name: file: ALTER TABLE "mailboxer_message_attachments" ADD "file" varchar(255)  (0.0ms) rollback transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreateUsers (20151123025448)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123025448')  (0.7ms) commit transaction Migrating to CreateMailboxer (20151123152908)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) DEFAULT '', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "mailboxer_receipts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar(255), "notification_id" integer NOT NULL, "is_read" boolean DEFAULT 'f', "trashed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "mailbox_type" varchar(25), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "mailboxer_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "body" text, "subject" varchar(255) DEFAULT '', "sender_id" integer, "sender_type" varchar(255), "conversation_id" integer, "draft" boolean DEFAULT 'f', "notification_code" varchar(255), "notified_object_id" integer, "notified_object_type" varchar(255), "attachment" varchar(255), "updated_at" datetime NOT NULL, "created_at" datetime NOT NULL, "global" boolean DEFAULT 'f', "expires" datetime)  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_notification_id" ON "mailboxer_receipts" ("notification_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_conversation_id" ON "mailboxer_notifications" ("conversation_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152908')  (0.7ms) commit transaction Migrating to AddConversationOptout (20151123152909)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversation_opt_outs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "unsubscriber_id" integer, "unsubscriber_type" varchar(255), "conversation_id" integer)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152909')  (0.5ms) commit transaction Migrating to AddMissingIndices (20151123152910)  (0.0ms) begin transaction  (0.4ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_unsubscriber_id_type" ON "mailboxer_conversation_opt_outs" ("unsubscriber_id", "unsubscriber_type")  (0.1ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_conversation_id" ON "mailboxer_conversation_opt_outs" ("conversation_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_type" ON "mailboxer_notifications" ("type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_sender_id_and_sender_type" ON "mailboxer_notifications" ("sender_id", "sender_type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_notified_object_id_and_type" ON "mailboxer_notifications" ("notified_object_id", "notified_object_type")  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_receiver_id_and_receiver_type" ON "mailboxer_receipts" ("receiver_id", "receiver_type")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152910')  (0.7ms) commit transaction Migrating to CreateMessageAttachments (20151123194517)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "mailboxer_message_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "object_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123194517')  (0.8ms) commit transaction Migrating to AddMailboxerNotificationRefToMailboxerMessageAttachments (20151123195505)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "mailboxer_message_attachments" ADD "mailboxer_notification_id" integer  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123195505')  (0.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreateUsers (20151123025448)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123025448')  (0.7ms) commit transaction Migrating to CreateMailboxer (20151123152908)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) DEFAULT '', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "mailboxer_receipts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar(255), "notification_id" integer NOT NULL, "is_read" boolean DEFAULT 'f', "trashed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "mailbox_type" varchar(25), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "mailboxer_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "body" text, "subject" varchar(255) DEFAULT '', "sender_id" integer, "sender_type" varchar(255), "conversation_id" integer, "draft" boolean DEFAULT 'f', "notification_code" varchar(255), "notified_object_id" integer, "notified_object_type" varchar(255), "attachment" varchar(255), "updated_at" datetime NOT NULL, "created_at" datetime NOT NULL, "global" boolean DEFAULT 'f', "expires" datetime)  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_notification_id" ON "mailboxer_receipts" ("notification_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_conversation_id" ON "mailboxer_notifications" ("conversation_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152908')  (0.6ms) commit transaction Migrating to AddConversationOptout (20151123152909)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversation_opt_outs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "unsubscriber_id" integer, "unsubscriber_type" varchar(255), "conversation_id" integer)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152909')  (0.6ms) commit transaction Migrating to AddMissingIndices (20151123152910)  (0.0ms) begin transaction  (0.3ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_unsubscriber_id_type" ON "mailboxer_conversation_opt_outs" ("unsubscriber_id", "unsubscriber_type")  (0.1ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_conversation_id" ON "mailboxer_conversation_opt_outs" ("conversation_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_type" ON "mailboxer_notifications" ("type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_sender_id_and_sender_type" ON "mailboxer_notifications" ("sender_id", "sender_type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_notified_object_id_and_type" ON "mailboxer_notifications" ("notified_object_id", "notified_object_type")  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_receiver_id_and_receiver_type" ON "mailboxer_receipts" ("receiver_id", "receiver_type")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152910')  (0.7ms) commit transaction Migrating to CreateMessageAttachments (20151123194517)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "mailboxer_message_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "message_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123194517')  (0.8ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20151123025448) Migrating to CreateMailboxer (20151123152908) Migrating to AddConversationOptout (20151123152909) Migrating to AddMissingIndices (20151123152910) Migrating to CreateMessageAttachments (20151123235316)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "mailboxer_message_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "message_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQLite3::SQLException: table "mailboxer_message_attachments" already exists: CREATE TABLE "mailboxer_message_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "message_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) rollback transaction Connecting to database specified by database.yml  (0.0ms) select sqlite_version(*)  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreateUsers (20151123025448)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123025448')  (0.7ms) commit transaction Migrating to CreateMailboxer (20151123152908)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar(255) DEFAULT '', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "mailboxer_receipts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "receiver_id" integer, "receiver_type" varchar(255), "notification_id" integer NOT NULL, "is_read" boolean DEFAULT 'f', "trashed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "mailbox_type" varchar(25), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "mailboxer_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "body" text, "subject" varchar(255) DEFAULT '', "sender_id" integer, "sender_type" varchar(255), "conversation_id" integer, "draft" boolean DEFAULT 'f', "notification_code" varchar(255), "notified_object_id" integer, "notified_object_type" varchar(255), "attachment" varchar(255), "updated_at" datetime NOT NULL, "created_at" datetime NOT NULL, "global" boolean DEFAULT 'f', "expires" datetime)  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_notification_id" ON "mailboxer_receipts" ("notification_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_conversation_id" ON "mailboxer_notifications" ("conversation_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152908')  (0.6ms) commit transaction Migrating to AddConversationOptout (20151123152909)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_conversation_opt_outs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "unsubscriber_id" integer, "unsubscriber_type" varchar(255), "conversation_id" integer)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152909')  (0.6ms) commit transaction Migrating to AddMissingIndices (20151123152910)  (0.0ms) begin transaction  (0.2ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_unsubscriber_id_type" ON "mailboxer_conversation_opt_outs" ("unsubscriber_id", "unsubscriber_type")  (0.1ms) CREATE INDEX "index_mailboxer_conversation_opt_outs_on_conversation_id" ON "mailboxer_conversation_opt_outs" ("conversation_id")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_type" ON "mailboxer_notifications" ("type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_sender_id_and_sender_type" ON "mailboxer_notifications" ("sender_id", "sender_type")  (0.1ms) CREATE INDEX "index_mailboxer_notifications_on_notified_object_id_and_type" ON "mailboxer_notifications" ("notified_object_id", "notified_object_type")  (0.1ms) CREATE INDEX "index_mailboxer_receipts_on_receiver_id_and_receiver_type" ON "mailboxer_receipts" ("receiver_id", "receiver_type")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123152910')  (0.8ms) commit transaction Migrating to CreateMessageAttachments (20151123235316)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "mailboxer_message_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "message_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151123235316')  (0.6ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"