spec/dummy/log/development.log in bit_player-0.4.4 vs spec/dummy/log/development.log in bit_player-0.4.9

- old
+ new

@@ -1,304 +1,750 @@ -  (118.6ms) DROP DATABASE IF EXISTS "dummy_test" -  (250.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' - SQL (1.1ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" -  (8.4ms) CREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp, "bit_player_tool_id" integer NOT NULL) -  (7.2ms) CREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.7ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id") -  (4.2ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying(255), "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.7ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id") -  (7.8ms) CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying(255), "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying(255), "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.7ms) CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position") -  (1.4ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" USING btree ("bit_player_slideshow_id") -  (3.9ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp) -  (5.1ms) CREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.5ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position") -  (1.8ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title") -  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) -  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") -  (0.5ms) SELECT version FROM "schema_migrations" -  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140402225703') -  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305200438') -  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305201300') -  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305232705') -  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305232706') -  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305234327') -  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140402224913') -  (10.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  -  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") - ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.3ms) DROP DATABASE IF EXISTS "dummy_development" +  (127.1ms) DROP DATABASE IF EXISTS "dummy_test" +  (442.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode' +  (310.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' +  (18.4ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY) +  (6.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (0.4ms) SELECT pg_try_advisory_lock(1721091371569202325); + ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateBitPlayerContentModules (20140305200438) -  (0.2ms) BEGIN -  (6.4ms) CREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "context" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  - SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305200438"]] -  (0.5ms) COMMIT +  (0.3ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (7.6ms) CREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "context" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) + SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305200438"]] +  (0.7ms) COMMIT Migrating to CreateBitPlayerContentProviders (20140305201300) -  (0.4ms) BEGIN -  (5.4ms) CREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.3ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id") -  (3.3ms)  ALTER TABLE bit_player_content_providers +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (6.4ms) CREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.4ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id") +  (4.5ms)  ALTER TABLE bit_player_content_providers ADD CONSTRAINT fk_content_providers_modules FOREIGN KEY (bit_player_content_module_id) REFERENCES bit_player_content_modules(id)  - SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305201300"]] -  (0.9ms) COMMIT + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305201300"]] +  (0.9ms) COMMIT Migrating to CreateBitPlayerParticipantStatuses (20140305232705) -  (0.5ms) BEGIN -  (4.8ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying(255), "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.4ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id") - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232705"]] -  (0.5ms) COMMIT +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerParticipantStatuses < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (7.1ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying, "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.3ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id") + SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232705"]] +  (0.6ms) COMMIT Migrating to CreateBitPlayerSlideshows (20140305232706) -  (0.4ms) BEGIN -  (4.4ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp) - SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232706"]] -  (0.5ms) COMMIT +  (0.6ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (10.8ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232706"]] +  (0.5ms) COMMIT Migrating to CreateBitPlayerSlides (20140305234327) -  (0.4ms) BEGIN -  (7.8ms) CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying(255), "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying(255), "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) -  (1.8ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id") -  (3.1ms) ALTER TABLE bit_player_slides +  (0.4ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (10.0ms) CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying, "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.6ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id") +  (2.5ms)  ALTER TABLE bit_player_slides ADD CONSTRAINT fk_slides_slideshows FOREIGN KEY (bit_player_slideshow_id) REFERENCES bit_player_slideshows(id) - -  (2.4ms)  ALTER TABLE bit_player_slides + +  (3.5ms)  ALTER TABLE bit_player_slides ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position) DEFERRABLE INITIALLY IMMEDIATE  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305234327"]] -  (0.7ms) COMMIT + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305234327"]] +  (0.9ms) COMMIT Migrating to CreateBitPlayerTools (20140402224913) -  (0.5ms) BEGIN -  (4.7ms) CREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.5ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title") -  (1.4ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position") - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140402224913"]] -  (0.6ms) COMMIT -Migrating to ChangeModuleContextToTool (20140402225703) -  (0.5ms) BEGIN -  (0.8ms) ALTER TABLE "bit_player_content_modules" ADD COLUMN "bit_player_tool_id" integer -  (0.4ms) ROLLBACK -  (4.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  -  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") - ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" -Migrating to CreateBitPlayerContentModules (20140305200438) -  (0.3ms) BEGIN -  (6.4ms) CREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "context" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  - SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305200438"]] -  (0.5ms) COMMIT -Migrating to CreateBitPlayerContentProviders (20140305201300) -  (0.3ms) BEGIN -  (5.1ms) CREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.1ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id") -  (3.0ms)  ALTER TABLE bit_player_content_providers +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (8.2ms) CREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.1ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title") +  (1.4ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position") + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140402224913"]] +  (0.5ms) COMMIT +Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756) +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class ConvertSlidesSlideshowsToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) + BitPlayer::Slideshow Load (0.6ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows" + BitPlayer::Slide Load (1.2ms) SELECT "bit_player_slides".* FROM "bit_player_slides" +  (4.2ms)  ALTER TABLE bit_player_slides + DROP CONSTRAINT IF EXISTS fk_slides_slideshows + +  (0.8ms)  ALTER TABLE bit_player_slides + DROP CONSTRAINT IF EXISTS bit_player_slide_position + +  (3.0ms) DROP TABLE "bit_player_slides" +  (1.9ms) DROP TABLE "bit_player_slideshows" + SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620182756"]] +  (2.9ms) COMMIT +Migrating to CreateBitCoreTools (20140620222614) +  (0.4ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (5.8ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.8ms)  ALTER TABLE bit_core_tools + ADD CONSTRAINT bit_core_tool_position UNIQUE (position) + DEFERRABLE INITIALLY IMMEDIATE + + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222614"]] +  (0.5ms) COMMIT +Migrating to CreateBitCoreContentModules (20140620222615) +  (0.4ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (8.2ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.0ms)  ALTER TABLE bit_core_content_modules + ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position) + DEFERRABLE INITIALLY IMMEDIATE + +  (5.2ms)  ALTER TABLE bit_core_content_modules + ADD CONSTRAINT fk_content_modules_tools + FOREIGN KEY (bit_core_tool_id) + REFERENCES bit_core_tools(id) + + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222615"]] +  (0.6ms) COMMIT +Migrating to CreateBitCoreContentProviders (20140620222616) +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (7.4ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (3.0ms)  ALTER TABLE bit_core_content_providers + ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position) + DEFERRABLE INITIALLY IMMEDIATE + +  (3.8ms)  ALTER TABLE bit_core_content_providers ADD CONSTRAINT fk_content_providers_modules - FOREIGN KEY (bit_player_content_module_id) - REFERENCES bit_player_content_modules(id) + FOREIGN KEY (bit_core_content_module_id) + REFERENCES bit_core_content_modules(id)  - SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305201300"]] -  (0.8ms) COMMIT -Migrating to CreateBitPlayerParticipantStatuses (20140305232705) -  (0.5ms) BEGIN -  (5.0ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying(255), "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.2ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id") - SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232705"]] -  (0.5ms) COMMIT -Migrating to CreateBitPlayerSlideshows (20140305232706) -  (0.5ms) BEGIN -  (3.9ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp) - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232706"]] -  (0.6ms) COMMIT -Migrating to CreateBitPlayerSlides (20140305234327) -  (0.3ms) BEGIN -  (5.7ms) CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying(255), "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying(255), "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) -  (1.5ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id") -  (2.9ms) ALTER TABLE bit_player_slides - ADD CONSTRAINT fk_slides_slideshows - FOREIGN KEY (bit_player_slideshow_id) - REFERENCES bit_player_slideshows(id) + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222616"]] +  (0.5ms) COMMIT +Migrating to CreateBitCoreSlideshows (20140620222617) +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: -  (2.5ms)  ALTER TABLE bit_player_slides - ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position) + class CreateBitCoreSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (5.2ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222617"]] +  (0.5ms) COMMIT +Migrating to CreateBitCoreSlides (20140620222618) +  (0.6ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (9.3ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (3.1ms)  ALTER TABLE bit_core_slides + ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position) DEFERRABLE INITIALLY IMMEDIATE  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305234327"]] -  (0.6ms) COMMIT -Migrating to CreateBitPlayerTools (20140402224913) -  (0.4ms) BEGIN -  (4.9ms) CREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.7ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title") -  (2.0ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position") - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140402224913"]] -  (0.6ms) COMMIT -Migrating to AddConfigFieldsToProviders (20140619200219) -  (0.5ms) BEGIN -  (0.6ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "template_path" character varying(255) -  (0.5ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "data_class_name" character varying(255) -  (0.6ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "data_attributes" text -  (0.6ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "show_next_nav" boolean -  (0.4ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "locals" text - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140619200219"]] -  (0.6ms) COMMIT -Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756) -  (0.3ms) BEGIN - BitPlayer::Slideshow Load (0.6ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows" - BitPlayer::Slide Load (1.0ms) SELECT "bit_player_slides".* FROM "bit_player_slides" -  (4.5ms) DROP TABLE "bit_player_slides" -  (1.7ms) DROP TABLE "bit_player_slideshows" - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620182756"]] -  (2.4ms) COMMIT - ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" -  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  -  (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") - ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (11.1ms)  ALTER TABLE bit_core_slides + ADD CONSTRAINT fk_slideshows_slides + FOREIGN KEY (bit_core_slideshow_id) + REFERENCES bit_core_slideshows(id) + + SQL (2.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222618"]] +  (1.4ms) COMMIT +Migrating to AddOptionsToSlides (20140620222619) +  (0.8ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class AddOptionsToSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (0.8ms) ALTER TABLE "bit_core_slides" ADD "options" text + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222619"]] +  (0.4ms) COMMIT +Migrating to AddConfigFieldsToProviders (20140620222620) +  (0.2ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class AddConfigFieldsToProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (0.5ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying +  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying +  (1.7ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text +  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean +  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222620"]] +  (0.4ms) COMMIT +Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851) +  (0.3ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class ConvertToolsModulesPresentersToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) + BitPlayer::Tool Load (1.4ms) SELECT "bit_player_tools".* FROM "bit_player_tools" + BitPlayer::ContentModule Load (1.0ms) SELECT "bit_player_content_modules".* FROM "bit_player_content_modules" + BitPlayer::ContentProvider Load (1.3ms) SELECT "bit_player_content_providers".* FROM "bit_player_content_providers" +  (0.4ms)  ALTER TABLE bit_player_content_modules + DROP CONSTRAINT IF EXISTS fk_content_modules_tools + +  (0.9ms)  ALTER TABLE bit_player_content_providers + DROP CONSTRAINT IF EXISTS fk_content_providers_modules + +  (2.0ms) DROP TABLE "bit_player_tools" +  (1.8ms) DROP TABLE "bit_player_content_modules" +  (1.9ms) DROP TABLE "bit_player_content_providers" + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222851"]] +  (4.1ms) COMMIT + ActiveRecord::InternalMetadata Load (1.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 16:48:05 UTC], ["updated_at", 2016-05-03 16:48:05 UTC]] +  (0.4ms) COMMIT +  (0.4ms) SELECT pg_advisory_unlock(1721091371569202325) + ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (6.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_content_modules' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (6.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_content_providers' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (4.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_slides' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (4.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_slideshows' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (4.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_tools' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (4.1ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_player_participant_statuses' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + + ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] +  (125.5ms) DROP DATABASE IF EXISTS "dummy_test" +  (460.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' + SQL (2.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" +  (13.1ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (4.9ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position") +  (8.2ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp, "template_path" character varying, "data_class_name" character varying, "data_attributes" text, "show_next_nav" boolean, "locals" text) +  (3.5ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position") +  (6.4ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp, "options" text) +  (1.9ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position") +  (44.3ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (7.8ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (4.3ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position") +  (6.6ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying, "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.9ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id") +  (4.9ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools" +FOREIGN KEY ("bit_core_tool_id") + REFERENCES "bit_core_tools" ("id") + +  (3.1ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules" +FOREIGN KEY ("bit_core_content_module_id") + REFERENCES "bit_core_content_modules" ("id") + +  (2.9ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides" +FOREIGN KEY ("bit_core_slideshow_id") + REFERENCES "bit_core_slideshows" ("id") + +  (6.4ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY) +  (0.8ms) SELECT version FROM "schema_migrations" +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851') +  (1.2ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756'); + + +  (4.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.3ms) BEGIN + SQL (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:09:29 UTC], ["updated_at", 2016-05-03 17:09:29 UTC]] +  (0.5ms) COMMIT + ActiveRecord::InternalMetadata Load (1.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.3ms) BEGIN +  (0.3ms) COMMIT + ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] +  (128.9ms) DROP DATABASE IF EXISTS "dummy_test" +  (426.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' + SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" +  (11.6ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.0ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position") +  (6.7ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp, "template_path" character varying, "data_class_name" character varying, "data_attributes" text, "show_next_nav" boolean, "locals" text) +  (1.9ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position") +  (5.7ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp, "options" text) +  (2.0ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position") +  (5.7ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (5.9ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.8ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position") +  (6.9ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying, "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.9ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id") +  (4.6ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools" +FOREIGN KEY ("bit_core_tool_id") + REFERENCES "bit_core_tools" ("id") + +  (3.4ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules" +FOREIGN KEY ("bit_core_content_module_id") + REFERENCES "bit_core_content_modules" ("id") + +  (3.1ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides" +FOREIGN KEY ("bit_core_slideshow_id") + REFERENCES "bit_core_slideshows" ("id") + +  (5.9ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY) +  (1.0ms) SELECT version FROM "schema_migrations" +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851') +  (1.9ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756'); + + +  (6.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.5ms) BEGIN + SQL (1.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:09:53 UTC], ["updated_at", 2016-05-03 17:09:53 UTC]] +  (0.6ms) COMMIT + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.6ms) COMMIT + ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (1.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] +  (126.7ms) DROP DATABASE IF EXISTS "dummy_development" +  (125.6ms) DROP DATABASE IF EXISTS "dummy_test" +  (457.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode' +  (280.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' +  (15.0ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY) +  (9.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (0.4ms) SELECT pg_try_advisory_lock(1721091371569202325); + ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateBitPlayerContentModules (20140305200438) -  (0.3ms) BEGIN -  (6.9ms) CREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "context" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  - SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305200438"]] -  (0.5ms) COMMIT +  (0.3ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (8.7ms) CREATE TABLE "bit_player_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "context" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) + SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305200438"]] +  (0.8ms) COMMIT Migrating to CreateBitPlayerContentProviders (20140305201300) -  (0.3ms) BEGIN -  (5.4ms) CREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.3ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id") -  (3.9ms)  ALTER TABLE bit_player_content_providers +  (0.7ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (9.0ms) CREATE TABLE "bit_player_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_player_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.9ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id") +  (4.9ms)  ALTER TABLE bit_player_content_providers ADD CONSTRAINT fk_content_providers_modules FOREIGN KEY (bit_player_content_module_id) REFERENCES bit_player_content_modules(id)  - SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305201300"]] -  (0.9ms) COMMIT + SQL (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305201300"]] +  (1.0ms) COMMIT Migrating to CreateBitPlayerParticipantStatuses (20140305232705) -  (0.5ms) BEGIN -  (4.1ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying(255), "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.4ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id") - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232705"]] -  (0.6ms) COMMIT +  (0.7ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerParticipantStatuses < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (12.4ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying, "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.5ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id") + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232705"]] +  (0.6ms) COMMIT Migrating to CreateBitPlayerSlideshows (20140305232706) -  (0.4ms) BEGIN -  (3.7ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp) - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232706"]] -  (0.5ms) COMMIT +  (0.4ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (6.4ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232706"]] +  (0.5ms) COMMIT Migrating to CreateBitPlayerSlides (20140305234327) -  (0.3ms) BEGIN -  (6.2ms) CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying(255), "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying(255), "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) -  (2.3ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id") -  (3.1ms) ALTER TABLE bit_player_slides +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (8.3ms) CREATE TABLE "bit_player_slides" ("id" serial primary key, "title" character varying, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_player_slideshow_id" integer NOT NULL, "type" character varying, "options" text, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.5ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id") +  (3.9ms)  ALTER TABLE bit_player_slides ADD CONSTRAINT fk_slides_slideshows FOREIGN KEY (bit_player_slideshow_id) REFERENCES bit_player_slideshows(id) - -  (2.6ms)  ALTER TABLE bit_player_slides + +  (2.5ms)  ALTER TABLE bit_player_slides ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position) DEFERRABLE INITIALLY IMMEDIATE  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305234327"]] -  (0.7ms) COMMIT + SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305234327"]] +  (0.9ms) COMMIT Migrating to CreateBitPlayerTools (20140402224913) -  (0.5ms) BEGIN -  (5.5ms) CREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.9ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title") -  (1.4ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position") - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140402224913"]] -  (0.6ms) COMMIT +  (0.9ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitPlayerTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (5.7ms) CREATE TABLE "bit_player_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer, "is_home" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.6ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title") +  (2.2ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position") + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140402224913"]] +  (2.0ms) COMMIT Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756) -  (0.5ms) BEGIN - BitPlayer::Slideshow Load (0.6ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows" - BitPlayer::Slide Load (0.8ms) SELECT "bit_player_slides".* FROM "bit_player_slides" -  (1.3ms)  ALTER TABLE bit_player_slides - DROP CONSTRAINT fk_slides_slideshows +  (0.6ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class ConvertSlidesSlideshowsToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) + BitPlayer::Slideshow Load (1.0ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows" + BitPlayer::Slide Load (0.9ms) SELECT "bit_player_slides".* FROM "bit_player_slides" +  (1.3ms)  ALTER TABLE bit_player_slides + DROP CONSTRAINT IF EXISTS fk_slides_slideshows  -  (0.7ms) ALTER TABLE bit_player_slides +  (0.7ms)  ALTER TABLE bit_player_slides DROP CONSTRAINT IF EXISTS bit_player_slide_position - -  (2.3ms) DROP TABLE "bit_player_slides" -  (1.2ms) DROP TABLE "bit_player_slideshows" - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620182756"]] -  (2.1ms) COMMIT + +  (2.1ms) DROP TABLE "bit_player_slides" +  (1.4ms) DROP TABLE "bit_player_slideshows" + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620182756"]] +  (2.3ms) COMMIT Migrating to CreateBitCoreTools (20140620222614) -  (0.3ms) BEGIN -  (8.4ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) -  (3.0ms)  ALTER TABLE bit_core_tools +  (0.6ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (7.7ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (3.3ms)  ALTER TABLE bit_core_tools ADD CONSTRAINT bit_core_tool_position UNIQUE (position) DEFERRABLE INITIALLY IMMEDIATE  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222614"]] -  (0.6ms) COMMIT + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222614"]] +  (0.8ms) COMMIT Migrating to CreateBitCoreContentModules (20140620222615) -  (0.5ms) BEGIN -  (4.9ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (2.0ms) ALTER TABLE bit_core_content_modules +  (0.6ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (9.4ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.3ms)  ALTER TABLE bit_core_content_modules ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position) DEFERRABLE INITIALLY IMMEDIATE - -  (2.4ms)  ALTER TABLE bit_core_content_modules + +  (2.6ms)  ALTER TABLE bit_core_content_modules ADD CONSTRAINT fk_content_modules_tools FOREIGN KEY (bit_core_tool_id) REFERENCES bit_core_tools(id)  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222615"]] -  (0.6ms) COMMIT + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222615"]] +  (0.5ms) COMMIT Migrating to CreateBitCoreContentProviders (20140620222616) -  (0.3ms) BEGIN -  (5.0ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.6ms) ALTER TABLE bit_core_content_providers +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (10.9ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (3.9ms)  ALTER TABLE bit_core_content_providers ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position) DEFERRABLE INITIALLY IMMEDIATE - -  (2.0ms)  ALTER TABLE bit_core_content_providers + +  (3.8ms)  ALTER TABLE bit_core_content_providers ADD CONSTRAINT fk_content_providers_modules FOREIGN KEY (bit_core_content_module_id) REFERENCES bit_core_content_modules(id)  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222616"]] -  (0.6ms) COMMIT + SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222616"]] +  (0.5ms) COMMIT Migrating to CreateBitCoreSlideshows (20140620222617) -  (0.3ms) BEGIN -  (4.3ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222617"]] -  (0.5ms) COMMIT +  (0.5ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (6.2ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) + SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222617"]] +  (1.1ms) COMMIT Migrating to CreateBitCoreSlides (20140620222618) -  (0.5ms) BEGIN -  (7.1ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying(255) NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying(255), "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  -  (1.8ms) ALTER TABLE bit_core_slides +  (1.2ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class CreateBitCoreSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (6.3ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (3.1ms)  ALTER TABLE bit_core_slides ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position) DEFERRABLE INITIALLY IMMEDIATE - -  (2.8ms)  ALTER TABLE bit_core_slides + +  (3.4ms)  ALTER TABLE bit_core_slides ADD CONSTRAINT fk_slideshows_slides FOREIGN KEY (bit_core_slideshow_id) REFERENCES bit_core_slideshows(id)  - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222618"]] -  (0.7ms) COMMIT + SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222618"]] +  (0.9ms) COMMIT Migrating to AddOptionsToSlides (20140620222619) -  (0.8ms) BEGIN -  (1.1ms) ALTER TABLE "bit_core_slides" ADD COLUMN "options" text - SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222619"]] -  (0.7ms) COMMIT +  (1.1ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class AddOptionsToSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (1.1ms) ALTER TABLE "bit_core_slides" ADD "options" text + SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222619"]] +  (0.4ms) COMMIT Migrating to AddConfigFieldsToProviders (20140620222620) -  (0.4ms) BEGIN -  (0.8ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "template_path" character varying(255) -  (0.7ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_class_name" character varying(255) -  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_attributes" text -  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "show_next_nav" boolean -  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "locals" text - SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222620"]] -  (0.6ms) COMMIT +  (0.2ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: + + class AddConfigFieldsToProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) +  (0.5ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying +  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying +  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text +  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean +  (0.5ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222620"]] +  (0.4ms) COMMIT Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851) -  (0.3ms) BEGIN - BitPlayer::Tool Load (1.0ms) SELECT "bit_player_tools".* FROM "bit_player_tools" - BitPlayer::ContentModule Load (0.5ms) SELECT "bit_player_content_modules".* FROM "bit_player_content_modules" - BitPlayer::ContentProvider Load (0.5ms) SELECT "bit_player_content_providers".* FROM "bit_player_content_providers" -  (0.3ms) ALTER TABLE bit_player_content_modules - DROP CONSTRAINT IF EXISTS fk_content_modules_tools +  (0.4ms) BEGIN +DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: -  (0.8ms)  ALTER TABLE bit_player_content_providers + class ConvertToolsModulesPresentersToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16) + BitPlayer::Tool Load (1.1ms) SELECT "bit_player_tools".* FROM "bit_player_tools" + BitPlayer::ContentModule Load (0.7ms) SELECT "bit_player_content_modules".* FROM "bit_player_content_modules" + BitPlayer::ContentProvider Load (0.9ms) SELECT "bit_player_content_providers".* FROM "bit_player_content_providers" +  (0.3ms)  ALTER TABLE bit_player_content_modules + DROP CONSTRAINT IF EXISTS fk_content_modules_tools + +  (0.8ms)  ALTER TABLE bit_player_content_providers DROP CONSTRAINT IF EXISTS fk_content_providers_modules  -  (1.7ms) DROP TABLE "bit_player_tools" -  (1.5ms) DROP TABLE "bit_player_content_modules" -  (1.7ms) DROP TABLE "bit_player_content_providers" - SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222851"]] -  (2.0ms) COMMIT - ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (1.9ms) DROP TABLE "bit_player_tools" +  (1.8ms) DROP TABLE "bit_player_content_modules" +  (2.8ms) DROP TABLE "bit_player_content_providers" + SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222851"]] +  (3.9ms) COMMIT + ActiveRecord::InternalMetadata Load (1.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.3ms) BEGIN + SQL (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:55:30 UTC], ["updated_at", 2016-05-03 17:55:30 UTC]] +  (0.6ms) COMMIT +  (0.5ms) SELECT pg_advisory_unlock(1721091371569202325) + ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (4.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_content_modules' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (4.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_content_providers' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (5.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_slides' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (5.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_slideshows' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (4.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_core_tools' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (4.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'bit_player_participant_statuses' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + + ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] +  (127.0ms) DROP DATABASE IF EXISTS "dummy_test" +  (289.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' + SQL (0.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" +  (12.3ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.1ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position") +  (6.5ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp, "template_path" character varying, "data_class_name" character varying, "data_attributes" text, "show_next_nav" boolean, "locals" text) +  (2.1ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position") +  (6.1ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp, "options" text) +  (1.9ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position") +  (5.6ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (5.6ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.6ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position") +  (6.7ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying, "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (1.5ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id") +  (5.0ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools" +FOREIGN KEY ("bit_core_tool_id") + REFERENCES "bit_core_tools" ("id") + +  (3.1ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules" +FOREIGN KEY ("bit_core_content_module_id") + REFERENCES "bit_core_content_modules" ("id") + +  (3.2ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides" +FOREIGN KEY ("bit_core_slideshow_id") + REFERENCES "bit_core_slideshows" ("id") + +  (4.8ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY) +  (0.9ms) SELECT version FROM "schema_migrations" +  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851') +  (1.0ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756'); + + +  (4.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.3ms) BEGIN + SQL (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:55:36 UTC], ["updated_at", 2016-05-03 17:55:36 UTC]] +  (0.5ms) COMMIT + ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.2ms) COMMIT + ActiveRecord::SchemaMigration Load (4.7ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (3.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] +  (130.1ms) DROP DATABASE IF EXISTS "dummy_test" +  (447.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' + SQL (4.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" +  (15.2ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.3ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position") +  (9.6ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp, "template_path" character varying, "data_class_name" character varying, "data_attributes" text, "show_next_nav" boolean, "locals" text) +  (2.8ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position") +  (10.1ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp, "options" text) +  (3.0ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position") +  (10.9ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (14.1ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (3.2ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position") +  (11.2ms) CREATE TABLE "bit_player_participant_statuses" ("id" serial primary key, "context" character varying, "module_position" integer, "provider_position" integer, "content_position" integer, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) +  (2.8ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id") +  (7.2ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools" +FOREIGN KEY ("bit_core_tool_id") + REFERENCES "bit_core_tools" ("id") + +  (6.0ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules" +FOREIGN KEY ("bit_core_content_module_id") + REFERENCES "bit_core_content_modules" ("id") + +  (4.1ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides" +FOREIGN KEY ("bit_core_slideshow_id") + REFERENCES "bit_core_slideshows" ("id") + +  (8.0ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY) +  (1.1ms) SELECT version FROM "schema_migrations" +  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851') +  (1.6ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756'); + + +  (7.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.4ms) BEGIN + SQL (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2016-05-09 13:42:29 UTC], ["updated_at", 2016-05-09 13:42:29 UTC]] +  (1.0ms) COMMIT + ActiveRecord::InternalMetadata Load (2.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]] +  (0.3ms) BEGIN +  (0.3ms) COMMIT