bit_player 0.4.4 → 0.4.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,304 +1,750 @@
1
-  (118.6ms) DROP DATABASE IF EXISTS "dummy_test"
2
-  (250.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
3
- SQL (1.1ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
-  (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)
5
-  (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) 
6
-  (1.7ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
7
-  (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) 
8
-  (1.7ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
9
-  (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) 
10
-  (1.7ms) CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
11
-  (1.4ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" USING btree ("bit_player_slideshow_id")
12
-  (3.9ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
13
-  (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) 
14
-  (1.5ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
15
-  (1.8ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")
16
-  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
17
-  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
-  (0.5ms) SELECT version FROM "schema_migrations"
19
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140402225703')
20
-  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305200438')
21
-  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305201300')
22
-  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305232705')
23
-  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305232706')
24
-  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140305234327')
25
-  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140402224913')
26
-  (10.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
27
-  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
28
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1
+  (0.3ms) DROP DATABASE IF EXISTS "dummy_development"
2
+  (127.1ms) DROP DATABASE IF EXISTS "dummy_test"
3
+  (442.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
4
+  (310.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
5
+  (18.4ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
6
+  (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)
7
+  (0.4ms) SELECT pg_try_advisory_lock(1721091371569202325);
8
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
9
  Migrating to CreateBitPlayerContentModules (20140305200438)
30
-  (0.2ms) BEGIN
31
-  (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) 
32
- SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305200438"]]
33
-  (0.5ms) COMMIT
10
+  (0.3ms) BEGIN
11
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
12
+
13
+ class CreateBitPlayerContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
14
+  (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)
15
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305200438"]]
16
+  (0.7ms) COMMIT
34
17
  Migrating to CreateBitPlayerContentProviders (20140305201300)
35
-  (0.4ms) BEGIN
36
-  (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) 
37
-  (1.3ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")
38
-  (3.3ms)  ALTER TABLE bit_player_content_providers
18
+  (0.5ms) BEGIN
19
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
20
+
21
+ class CreateBitPlayerContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
22
+  (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)
23
+  (1.4ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")
24
+  (4.5ms)  ALTER TABLE bit_player_content_providers
39
25
  ADD CONSTRAINT fk_content_providers_modules
40
26
  FOREIGN KEY (bit_player_content_module_id)
41
27
  REFERENCES bit_player_content_modules(id)
42
28
  
43
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305201300"]]
44
-  (0.9ms) COMMIT
29
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305201300"]]
30
+  (0.9ms) COMMIT
45
31
  Migrating to CreateBitPlayerParticipantStatuses (20140305232705)
46
-  (0.5ms) BEGIN
47
-  (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) 
48
-  (1.4ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
49
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232705"]]
50
-  (0.5ms) COMMIT
32
+  (0.5ms) BEGIN
33
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
34
+
35
+ class CreateBitPlayerParticipantStatuses < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
36
+  (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)
37
+  (1.3ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
38
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232705"]]
39
+  (0.6ms) COMMIT
51
40
  Migrating to CreateBitPlayerSlideshows (20140305232706)
52
-  (0.4ms) BEGIN
53
-  (4.4ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
54
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232706"]]
55
-  (0.5ms) COMMIT
41
+  (0.6ms) BEGIN
42
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
43
+
44
+ class CreateBitPlayerSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
45
+  (10.8ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
46
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232706"]]
47
+  (0.5ms) COMMIT
56
48
  Migrating to CreateBitPlayerSlides (20140305234327)
57
-  (0.4ms) BEGIN
58
-  (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)
59
-  (1.8ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")
60
-  (3.1ms) ALTER TABLE bit_player_slides
49
+  (0.4ms) BEGIN
50
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
51
+
52
+ class CreateBitPlayerSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
53
+  (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)
54
+  (1.6ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")
55
+  (2.5ms)  ALTER TABLE bit_player_slides
61
56
  ADD CONSTRAINT fk_slides_slideshows
62
57
  FOREIGN KEY (bit_player_slideshow_id)
63
58
  REFERENCES bit_player_slideshows(id)
64
-
65
-  (2.4ms)  ALTER TABLE bit_player_slides
59
+ 
60
+  (3.5ms)  ALTER TABLE bit_player_slides
66
61
  ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position)
67
62
  DEFERRABLE INITIALLY IMMEDIATE
68
63
  
69
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305234327"]]
70
-  (0.7ms) COMMIT
64
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305234327"]]
65
+  (0.9ms) COMMIT
71
66
  Migrating to CreateBitPlayerTools (20140402224913)
72
-  (0.5ms) BEGIN
73
-  (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) 
74
-  (1.5ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")
75
-  (1.4ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")
76
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140402224913"]]
77
-  (0.6ms) COMMIT
78
- Migrating to ChangeModuleContextToTool (20140402225703)
79
-  (0.5ms) BEGIN
80
-  (0.8ms) ALTER TABLE "bit_player_content_modules" ADD COLUMN "bit_player_tool_id" integer
81
-  (0.4ms) ROLLBACK
82
-  (4.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
83
-  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
84
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
85
- Migrating to CreateBitPlayerContentModules (20140305200438)
86
-  (0.3ms) BEGIN
87
-  (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) 
88
- SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305200438"]]
89
-  (0.5ms) COMMIT
90
- Migrating to CreateBitPlayerContentProviders (20140305201300)
91
-  (0.3ms) BEGIN
92
-  (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) 
93
-  (1.1ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")
94
-  (3.0ms)  ALTER TABLE bit_player_content_providers
67
+  (0.5ms) BEGIN
68
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
69
+
70
+ class CreateBitPlayerTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
71
+  (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)
72
+  (2.1ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")
73
+  (1.4ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")
74
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140402224913"]]
75
+  (0.5ms) COMMIT
76
+ Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756)
77
+  (0.5ms) BEGIN
78
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
79
+
80
+ class ConvertSlidesSlideshowsToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
81
+ BitPlayer::Slideshow Load (0.6ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows"
82
+ BitPlayer::Slide Load (1.2ms) SELECT "bit_player_slides".* FROM "bit_player_slides"
83
+  (4.2ms)  ALTER TABLE bit_player_slides
84
+ DROP CONSTRAINT IF EXISTS fk_slides_slideshows
85
+ 
86
+  (0.8ms)  ALTER TABLE bit_player_slides
87
+ DROP CONSTRAINT IF EXISTS bit_player_slide_position
88
+ 
89
+  (3.0ms) DROP TABLE "bit_player_slides"
90
+  (1.9ms) DROP TABLE "bit_player_slideshows"
91
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620182756"]]
92
+  (2.9ms) COMMIT
93
+ Migrating to CreateBitCoreTools (20140620222614)
94
+  (0.4ms) BEGIN
95
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
96
+
97
+ class CreateBitCoreTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
98
+  (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)
99
+  (1.8ms)  ALTER TABLE bit_core_tools
100
+ ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
101
+ DEFERRABLE INITIALLY IMMEDIATE
102
+ 
103
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222614"]]
104
+  (0.5ms) COMMIT
105
+ Migrating to CreateBitCoreContentModules (20140620222615)
106
+  (0.4ms) BEGIN
107
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
108
+
109
+ class CreateBitCoreContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
110
+  (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)
111
+  (2.0ms)  ALTER TABLE bit_core_content_modules
112
+ ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
113
+ DEFERRABLE INITIALLY IMMEDIATE
114
+ 
115
+  (5.2ms)  ALTER TABLE bit_core_content_modules
116
+ ADD CONSTRAINT fk_content_modules_tools
117
+ FOREIGN KEY (bit_core_tool_id)
118
+ REFERENCES bit_core_tools(id)
119
+ 
120
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222615"]]
121
+  (0.6ms) COMMIT
122
+ Migrating to CreateBitCoreContentProviders (20140620222616)
123
+  (0.5ms) BEGIN
124
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
125
+
126
+ class CreateBitCoreContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
127
+  (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)
128
+  (3.0ms)  ALTER TABLE bit_core_content_providers
129
+ ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
130
+ DEFERRABLE INITIALLY IMMEDIATE
131
+ 
132
+  (3.8ms)  ALTER TABLE bit_core_content_providers
95
133
  ADD CONSTRAINT fk_content_providers_modules
96
- FOREIGN KEY (bit_player_content_module_id)
97
- REFERENCES bit_player_content_modules(id)
134
+ FOREIGN KEY (bit_core_content_module_id)
135
+ REFERENCES bit_core_content_modules(id)
98
136
  
99
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305201300"]]
100
-  (0.8ms) COMMIT
101
- Migrating to CreateBitPlayerParticipantStatuses (20140305232705)
102
-  (0.5ms) BEGIN
103
-  (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) 
104
-  (1.2ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
105
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232705"]]
106
-  (0.5ms) COMMIT
107
- Migrating to CreateBitPlayerSlideshows (20140305232706)
108
-  (0.5ms) BEGIN
109
-  (3.9ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
110
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232706"]]
111
-  (0.6ms) COMMIT
112
- Migrating to CreateBitPlayerSlides (20140305234327)
113
-  (0.3ms) BEGIN
114
-  (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)
115
-  (1.5ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")
116
-  (2.9ms) ALTER TABLE bit_player_slides
117
- ADD CONSTRAINT fk_slides_slideshows
118
- FOREIGN KEY (bit_player_slideshow_id)
119
- REFERENCES bit_player_slideshows(id)
137
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222616"]]
138
+  (0.5ms) COMMIT
139
+ Migrating to CreateBitCoreSlideshows (20140620222617)
140
+  (0.5ms) BEGIN
141
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
120
142
 
121
-  (2.5ms)  ALTER TABLE bit_player_slides
122
- ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position)
143
+ class CreateBitCoreSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
144
+  (5.2ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
145
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222617"]]
146
+  (0.5ms) COMMIT
147
+ Migrating to CreateBitCoreSlides (20140620222618)
148
+  (0.6ms) BEGIN
149
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
150
+
151
+ class CreateBitCoreSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
152
+  (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)
153
+  (3.1ms)  ALTER TABLE bit_core_slides
154
+ ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
123
155
  DEFERRABLE INITIALLY IMMEDIATE
124
156
  
125
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305234327"]]
126
-  (0.6ms) COMMIT
127
- Migrating to CreateBitPlayerTools (20140402224913)
128
-  (0.4ms) BEGIN
129
-  (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) 
130
-  (1.7ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")
131
-  (2.0ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")
132
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140402224913"]]
133
-  (0.6ms) COMMIT
134
- Migrating to AddConfigFieldsToProviders (20140619200219)
135
-  (0.5ms) BEGIN
136
-  (0.6ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "template_path" character varying(255)
137
-  (0.5ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "data_class_name" character varying(255)
138
-  (0.6ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "data_attributes" text
139
-  (0.6ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "show_next_nav" boolean
140
-  (0.4ms) ALTER TABLE "bit_player_content_providers" ADD COLUMN "locals" text
141
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140619200219"]]
142
-  (0.6ms) COMMIT
143
- Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756)
144
-  (0.3ms) BEGIN
145
- BitPlayer::Slideshow Load (0.6ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows"
146
- BitPlayer::Slide Load (1.0ms) SELECT "bit_player_slides".* FROM "bit_player_slides"
147
-  (4.5ms) DROP TABLE "bit_player_slides"
148
-  (1.7ms) DROP TABLE "bit_player_slideshows"
149
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620182756"]]
150
-  (2.4ms) COMMIT
151
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
152
-  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
153
-  (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
154
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
157
+  (11.1ms)  ALTER TABLE bit_core_slides
158
+ ADD CONSTRAINT fk_slideshows_slides
159
+ FOREIGN KEY (bit_core_slideshow_id)
160
+ REFERENCES bit_core_slideshows(id)
161
+ 
162
+ SQL (2.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222618"]]
163
+  (1.4ms) COMMIT
164
+ Migrating to AddOptionsToSlides (20140620222619)
165
+  (0.8ms) BEGIN
166
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
167
+
168
+ class AddOptionsToSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
169
+  (0.8ms) ALTER TABLE "bit_core_slides" ADD "options" text
170
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222619"]]
171
+  (0.4ms) COMMIT
172
+ Migrating to AddConfigFieldsToProviders (20140620222620)
173
+  (0.2ms) BEGIN
174
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
175
+
176
+ class AddConfigFieldsToProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
177
+  (0.5ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
178
+  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
179
+  (1.7ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
180
+  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
181
+  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
182
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222620"]]
183
+  (0.4ms) COMMIT
184
+ Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851)
185
+  (0.3ms) BEGIN
186
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
187
+
188
+ class ConvertToolsModulesPresentersToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
189
+ BitPlayer::Tool Load (1.4ms) SELECT "bit_player_tools".* FROM "bit_player_tools"
190
+ BitPlayer::ContentModule Load (1.0ms) SELECT "bit_player_content_modules".* FROM "bit_player_content_modules"
191
+ BitPlayer::ContentProvider Load (1.3ms) SELECT "bit_player_content_providers".* FROM "bit_player_content_providers"
192
+  (0.4ms)  ALTER TABLE bit_player_content_modules
193
+ DROP CONSTRAINT IF EXISTS fk_content_modules_tools
194
+ 
195
+  (0.9ms)  ALTER TABLE bit_player_content_providers
196
+ DROP CONSTRAINT IF EXISTS fk_content_providers_modules
197
+ 
198
+  (2.0ms) DROP TABLE "bit_player_tools"
199
+  (1.8ms) DROP TABLE "bit_player_content_modules"
200
+  (1.9ms) DROP TABLE "bit_player_content_providers"
201
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222851"]]
202
+  (4.1ms) COMMIT
203
+ ActiveRecord::InternalMetadata Load (1.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
204
+  (0.2ms) BEGIN
205
+ 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]]
206
+  (0.4ms) COMMIT
207
+  (0.4ms) SELECT pg_advisory_unlock(1721091371569202325)
208
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
209
+  (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
210
+ FROM pg_constraint c
211
+ JOIN pg_class t1 ON c.conrelid = t1.oid
212
+ JOIN pg_class t2 ON c.confrelid = t2.oid
213
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
214
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
215
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
216
+ WHERE c.contype = 'f'
217
+ AND t1.relname = 'bit_core_content_modules'
218
+ AND t3.nspname = ANY (current_schemas(false))
219
+ ORDER BY c.conname
220
+ 
221
+  (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
222
+ FROM pg_constraint c
223
+ JOIN pg_class t1 ON c.conrelid = t1.oid
224
+ JOIN pg_class t2 ON c.confrelid = t2.oid
225
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
226
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
227
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
228
+ WHERE c.contype = 'f'
229
+ AND t1.relname = 'bit_core_content_providers'
230
+ AND t3.nspname = ANY (current_schemas(false))
231
+ ORDER BY c.conname
232
+ 
233
+  (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
234
+ FROM pg_constraint c
235
+ JOIN pg_class t1 ON c.conrelid = t1.oid
236
+ JOIN pg_class t2 ON c.confrelid = t2.oid
237
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
238
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
239
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
240
+ WHERE c.contype = 'f'
241
+ AND t1.relname = 'bit_core_slides'
242
+ AND t3.nspname = ANY (current_schemas(false))
243
+ ORDER BY c.conname
244
+ 
245
+  (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
246
+ FROM pg_constraint c
247
+ JOIN pg_class t1 ON c.conrelid = t1.oid
248
+ JOIN pg_class t2 ON c.confrelid = t2.oid
249
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
250
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
251
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
252
+ WHERE c.contype = 'f'
253
+ AND t1.relname = 'bit_core_slideshows'
254
+ AND t3.nspname = ANY (current_schemas(false))
255
+ ORDER BY c.conname
256
+ 
257
+  (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
258
+ FROM pg_constraint c
259
+ JOIN pg_class t1 ON c.conrelid = t1.oid
260
+ JOIN pg_class t2 ON c.confrelid = t2.oid
261
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
262
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
263
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
264
+ WHERE c.contype = 'f'
265
+ AND t1.relname = 'bit_core_tools'
266
+ AND t3.nspname = ANY (current_schemas(false))
267
+ ORDER BY c.conname
268
+ 
269
+  (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
270
+ FROM pg_constraint c
271
+ JOIN pg_class t1 ON c.conrelid = t1.oid
272
+ JOIN pg_class t2 ON c.confrelid = t2.oid
273
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
274
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
275
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
276
+ WHERE c.contype = 'f'
277
+ AND t1.relname = 'bit_player_participant_statuses'
278
+ AND t3.nspname = ANY (current_schemas(false))
279
+ ORDER BY c.conname
280
+ 
281
+ ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
282
+  (0.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
283
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
284
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
285
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
286
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
287
+  (125.5ms) DROP DATABASE IF EXISTS "dummy_test"
288
+  (460.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
289
+ SQL (2.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
290
+  (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)
291
+  (4.9ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")
292
+  (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)
293
+  (3.5ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")
294
+  (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)
295
+  (1.9ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")
296
+  (44.3ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
297
+  (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)
298
+  (4.3ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")
299
+  (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)
300
+  (1.9ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
301
+  (4.9ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools"
302
+ FOREIGN KEY ("bit_core_tool_id")
303
+ REFERENCES "bit_core_tools" ("id")
304
+ 
305
+  (3.1ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules"
306
+ FOREIGN KEY ("bit_core_content_module_id")
307
+ REFERENCES "bit_core_content_modules" ("id")
308
+ 
309
+  (2.9ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
310
+ FOREIGN KEY ("bit_core_slideshow_id")
311
+ REFERENCES "bit_core_slideshows" ("id")
312
+ 
313
+  (6.4ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
314
+  (0.8ms) SELECT version FROM "schema_migrations"
315
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851')
316
+  (1.2ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
317
+
318
+ 
319
+  (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)
320
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
321
+  (0.3ms) BEGIN
322
+ 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]]
323
+  (0.5ms) COMMIT
324
+ ActiveRecord::InternalMetadata Load (1.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
325
+  (0.3ms) BEGIN
326
+  (0.3ms) COMMIT
327
+ ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
328
+  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
329
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
330
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
331
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
332
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
333
+  (128.9ms) DROP DATABASE IF EXISTS "dummy_test"
334
+  (426.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
335
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
336
+  (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)
337
+  (2.0ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")
338
+  (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)
339
+  (1.9ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")
340
+  (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)
341
+  (2.0ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")
342
+  (5.7ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
343
+  (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)
344
+  (1.8ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")
345
+  (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)
346
+  (1.9ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
347
+  (4.6ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools"
348
+ FOREIGN KEY ("bit_core_tool_id")
349
+ REFERENCES "bit_core_tools" ("id")
350
+ 
351
+  (3.4ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules"
352
+ FOREIGN KEY ("bit_core_content_module_id")
353
+ REFERENCES "bit_core_content_modules" ("id")
354
+ 
355
+  (3.1ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
356
+ FOREIGN KEY ("bit_core_slideshow_id")
357
+ REFERENCES "bit_core_slideshows" ("id")
358
+ 
359
+  (5.9ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
360
+  (1.0ms) SELECT version FROM "schema_migrations"
361
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851')
362
+  (1.9ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
363
+
364
+ 
365
+  (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)
366
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
367
+  (0.5ms) BEGIN
368
+ 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]]
369
+  (0.6ms) COMMIT
370
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
371
+  (0.2ms) BEGIN
372
+  (0.6ms) COMMIT
373
+ ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
374
+  (1.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
375
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
376
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
377
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
378
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
379
+  (126.7ms) DROP DATABASE IF EXISTS "dummy_development"
380
+  (125.6ms) DROP DATABASE IF EXISTS "dummy_test"
381
+  (457.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
382
+  (280.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
383
+  (15.0ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
384
+  (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)
385
+  (0.4ms) SELECT pg_try_advisory_lock(1721091371569202325);
386
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
155
387
  Migrating to CreateBitPlayerContentModules (20140305200438)
156
-  (0.3ms) BEGIN
157
-  (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) 
158
- SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305200438"]]
159
-  (0.5ms) COMMIT
388
+  (0.3ms) BEGIN
389
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
390
+
391
+ class CreateBitPlayerContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
392
+  (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)
393
+ SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305200438"]]
394
+  (0.8ms) COMMIT
160
395
  Migrating to CreateBitPlayerContentProviders (20140305201300)
161
-  (0.3ms) BEGIN
162
-  (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) 
163
-  (1.3ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")
164
-  (3.9ms)  ALTER TABLE bit_player_content_providers
396
+  (0.7ms) BEGIN
397
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
398
+
399
+ class CreateBitPlayerContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
400
+  (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)
401
+  (2.9ms) CREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")
402
+  (4.9ms)  ALTER TABLE bit_player_content_providers
165
403
  ADD CONSTRAINT fk_content_providers_modules
166
404
  FOREIGN KEY (bit_player_content_module_id)
167
405
  REFERENCES bit_player_content_modules(id)
168
406
  
169
- SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305201300"]]
170
-  (0.9ms) COMMIT
407
+ SQL (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305201300"]]
408
+  (1.0ms) COMMIT
171
409
  Migrating to CreateBitPlayerParticipantStatuses (20140305232705)
172
-  (0.5ms) BEGIN
173
-  (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) 
174
-  (1.4ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
175
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232705"]]
176
-  (0.6ms) COMMIT
410
+  (0.7ms) BEGIN
411
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
412
+
413
+ class CreateBitPlayerParticipantStatuses < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
414
+  (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)
415
+  (1.5ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
416
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232705"]]
417
+  (0.6ms) COMMIT
177
418
  Migrating to CreateBitPlayerSlideshows (20140305232706)
178
-  (0.4ms) BEGIN
179
-  (3.7ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
180
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305232706"]]
181
-  (0.5ms) COMMIT
419
+  (0.4ms) BEGIN
420
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
421
+
422
+ class CreateBitPlayerSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
423
+  (6.4ms) CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
424
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305232706"]]
425
+  (0.5ms) COMMIT
182
426
  Migrating to CreateBitPlayerSlides (20140305234327)
183
-  (0.3ms) BEGIN
184
-  (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)
185
-  (2.3ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")
186
-  (3.1ms) ALTER TABLE bit_player_slides
427
+  (0.5ms) BEGIN
428
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
429
+
430
+ class CreateBitPlayerSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
431
+  (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)
432
+  (1.5ms) CREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")
433
+  (3.9ms)  ALTER TABLE bit_player_slides
187
434
  ADD CONSTRAINT fk_slides_slideshows
188
435
  FOREIGN KEY (bit_player_slideshow_id)
189
436
  REFERENCES bit_player_slideshows(id)
190
-
191
-  (2.6ms)  ALTER TABLE bit_player_slides
437
+ 
438
+  (2.5ms)  ALTER TABLE bit_player_slides
192
439
  ADD CONSTRAINT bit_player_slide_position UNIQUE (bit_player_slideshow_id, position)
193
440
  DEFERRABLE INITIALLY IMMEDIATE
194
441
  
195
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140305234327"]]
196
-  (0.7ms) COMMIT
442
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140305234327"]]
443
+  (0.9ms) COMMIT
197
444
  Migrating to CreateBitPlayerTools (20140402224913)
198
-  (0.5ms) BEGIN
199
-  (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) 
200
-  (1.9ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")
201
-  (1.4ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")
202
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140402224913"]]
203
-  (0.6ms) COMMIT
445
+  (0.9ms) BEGIN
446
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
447
+
448
+ class CreateBitPlayerTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
449
+  (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)
450
+  (1.6ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")
451
+  (2.2ms) CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")
452
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140402224913"]]
453
+  (2.0ms) COMMIT
204
454
  Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756)
205
-  (0.5ms) BEGIN
206
- BitPlayer::Slideshow Load (0.6ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows"
207
- BitPlayer::Slide Load (0.8ms) SELECT "bit_player_slides".* FROM "bit_player_slides"
208
-  (1.3ms)  ALTER TABLE bit_player_slides
209
- DROP CONSTRAINT fk_slides_slideshows
455
+  (0.6ms) BEGIN
456
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
457
+
458
+ class ConvertSlidesSlideshowsToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
459
+ BitPlayer::Slideshow Load (1.0ms) SELECT "bit_player_slideshows".* FROM "bit_player_slideshows"
460
+ BitPlayer::Slide Load (0.9ms) SELECT "bit_player_slides".* FROM "bit_player_slides"
461
+  (1.3ms)  ALTER TABLE bit_player_slides
462
+ DROP CONSTRAINT IF EXISTS fk_slides_slideshows
210
463
  
211
-  (0.7ms) ALTER TABLE bit_player_slides
464
+  (0.7ms)  ALTER TABLE bit_player_slides
212
465
  DROP CONSTRAINT IF EXISTS bit_player_slide_position
213
-
214
-  (2.3ms) DROP TABLE "bit_player_slides"
215
-  (1.2ms) DROP TABLE "bit_player_slideshows"
216
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620182756"]]
217
-  (2.1ms) COMMIT
466
+ 
467
+  (2.1ms) DROP TABLE "bit_player_slides"
468
+  (1.4ms) DROP TABLE "bit_player_slideshows"
469
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620182756"]]
470
+  (2.3ms) COMMIT
218
471
  Migrating to CreateBitCoreTools (20140620222614)
219
-  (0.3ms) BEGIN
220
-  (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)
221
-  (3.0ms)  ALTER TABLE bit_core_tools
472
+  (0.6ms) BEGIN
473
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
474
+
475
+ class CreateBitCoreTools < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
476
+  (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)
477
+  (3.3ms)  ALTER TABLE bit_core_tools
222
478
  ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
223
479
  DEFERRABLE INITIALLY IMMEDIATE
224
480
  
225
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222614"]]
226
-  (0.6ms) COMMIT
481
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222614"]]
482
+  (0.8ms) COMMIT
227
483
  Migrating to CreateBitCoreContentModules (20140620222615)
228
-  (0.5ms) BEGIN
229
-  (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) 
230
-  (2.0ms) ALTER TABLE bit_core_content_modules
484
+  (0.6ms) BEGIN
485
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
486
+
487
+ class CreateBitCoreContentModules < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
488
+  (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)
489
+  (2.3ms)  ALTER TABLE bit_core_content_modules
231
490
  ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
232
491
  DEFERRABLE INITIALLY IMMEDIATE
233
-
234
-  (2.4ms)  ALTER TABLE bit_core_content_modules
492
+ 
493
+  (2.6ms)  ALTER TABLE bit_core_content_modules
235
494
  ADD CONSTRAINT fk_content_modules_tools
236
495
  FOREIGN KEY (bit_core_tool_id)
237
496
  REFERENCES bit_core_tools(id)
238
497
  
239
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222615"]]
240
-  (0.6ms) COMMIT
498
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222615"]]
499
+  (0.5ms) COMMIT
241
500
  Migrating to CreateBitCoreContentProviders (20140620222616)
242
-  (0.3ms) BEGIN
243
-  (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) 
244
-  (1.6ms) ALTER TABLE bit_core_content_providers
501
+  (0.5ms) BEGIN
502
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
503
+
504
+ class CreateBitCoreContentProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
505
+  (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)
506
+  (3.9ms)  ALTER TABLE bit_core_content_providers
245
507
  ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
246
508
  DEFERRABLE INITIALLY IMMEDIATE
247
-
248
-  (2.0ms)  ALTER TABLE bit_core_content_providers
509
+ 
510
+  (3.8ms)  ALTER TABLE bit_core_content_providers
249
511
  ADD CONSTRAINT fk_content_providers_modules
250
512
  FOREIGN KEY (bit_core_content_module_id)
251
513
  REFERENCES bit_core_content_modules(id)
252
514
  
253
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222616"]]
254
-  (0.6ms) COMMIT
515
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222616"]]
516
+  (0.5ms) COMMIT
255
517
  Migrating to CreateBitCoreSlideshows (20140620222617)
256
-  (0.3ms) BEGIN
257
-  (4.3ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
258
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222617"]]
259
-  (0.5ms) COMMIT
518
+  (0.5ms) BEGIN
519
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
520
+
521
+ class CreateBitCoreSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
522
+  (6.2ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
523
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222617"]]
524
+  (1.1ms) COMMIT
260
525
  Migrating to CreateBitCoreSlides (20140620222618)
261
-  (0.5ms) BEGIN
262
-  (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) 
263
-  (1.8ms) ALTER TABLE bit_core_slides
526
+  (1.2ms) BEGIN
527
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
528
+
529
+ class CreateBitCoreSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
530
+  (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)
531
+  (3.1ms)  ALTER TABLE bit_core_slides
264
532
  ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
265
533
  DEFERRABLE INITIALLY IMMEDIATE
266
-
267
-  (2.8ms)  ALTER TABLE bit_core_slides
534
+ 
535
+  (3.4ms)  ALTER TABLE bit_core_slides
268
536
  ADD CONSTRAINT fk_slideshows_slides
269
537
  FOREIGN KEY (bit_core_slideshow_id)
270
538
  REFERENCES bit_core_slideshows(id)
271
539
  
272
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222618"]]
273
-  (0.7ms) COMMIT
540
+ SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222618"]]
541
+  (0.9ms) COMMIT
274
542
  Migrating to AddOptionsToSlides (20140620222619)
275
-  (0.8ms) BEGIN
276
-  (1.1ms) ALTER TABLE "bit_core_slides" ADD COLUMN "options" text
277
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222619"]]
278
-  (0.7ms) COMMIT
543
+  (1.1ms) BEGIN
544
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
545
+
546
+ class AddOptionsToSlides < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
547
+  (1.1ms) ALTER TABLE "bit_core_slides" ADD "options" text
548
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222619"]]
549
+  (0.4ms) COMMIT
279
550
  Migrating to AddConfigFieldsToProviders (20140620222620)
280
-  (0.4ms) BEGIN
281
-  (0.8ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "template_path" character varying(255)
282
-  (0.7ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_class_name" character varying(255)
283
-  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_attributes" text
284
-  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "show_next_nav" boolean
285
-  (0.6ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "locals" text
286
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222620"]]
287
-  (0.6ms) COMMIT
551
+  (0.2ms) BEGIN
552
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
553
+
554
+ class AddConfigFieldsToProviders < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
555
+  (0.5ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
556
+  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
557
+  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
558
+  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
559
+  (0.5ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
560
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222620"]]
561
+  (0.4ms) COMMIT
288
562
  Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851)
289
-  (0.3ms) BEGIN
290
- BitPlayer::Tool Load (1.0ms) SELECT "bit_player_tools".* FROM "bit_player_tools"
291
- BitPlayer::ContentModule Load (0.5ms) SELECT "bit_player_content_modules".* FROM "bit_player_content_modules"
292
- BitPlayer::ContentProvider Load (0.5ms) SELECT "bit_player_content_providers".* FROM "bit_player_content_providers"
293
-  (0.3ms) ALTER TABLE bit_player_content_modules
294
- DROP CONSTRAINT IF EXISTS fk_content_modules_tools
563
+  (0.4ms) BEGIN
564
+ DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
295
565
 
296
-  (0.8ms)  ALTER TABLE bit_player_content_providers
566
+ class ConvertToolsModulesPresentersToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
567
+ BitPlayer::Tool Load (1.1ms) SELECT "bit_player_tools".* FROM "bit_player_tools"
568
+ BitPlayer::ContentModule Load (0.7ms) SELECT "bit_player_content_modules".* FROM "bit_player_content_modules"
569
+ BitPlayer::ContentProvider Load (0.9ms) SELECT "bit_player_content_providers".* FROM "bit_player_content_providers"
570
+  (0.3ms)  ALTER TABLE bit_player_content_modules
571
+ DROP CONSTRAINT IF EXISTS fk_content_modules_tools
572
+ 
573
+  (0.8ms)  ALTER TABLE bit_player_content_providers
297
574
  DROP CONSTRAINT IF EXISTS fk_content_providers_modules
298
575
  
299
-  (1.7ms) DROP TABLE "bit_player_tools"
300
-  (1.5ms) DROP TABLE "bit_player_content_modules"
301
-  (1.7ms) DROP TABLE "bit_player_content_providers"
302
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620222851"]]
303
-  (2.0ms) COMMIT
304
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
576
+  (1.9ms) DROP TABLE "bit_player_tools"
577
+  (1.8ms) DROP TABLE "bit_player_content_modules"
578
+  (2.8ms) DROP TABLE "bit_player_content_providers"
579
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20140620222851"]]
580
+  (3.9ms) COMMIT
581
+ ActiveRecord::InternalMetadata Load (1.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
582
+  (0.3ms) BEGIN
583
+ 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]]
584
+  (0.6ms) COMMIT
585
+  (0.5ms) SELECT pg_advisory_unlock(1721091371569202325)
586
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
587
+  (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
588
+ FROM pg_constraint c
589
+ JOIN pg_class t1 ON c.conrelid = t1.oid
590
+ JOIN pg_class t2 ON c.confrelid = t2.oid
591
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
592
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
593
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
594
+ WHERE c.contype = 'f'
595
+ AND t1.relname = 'bit_core_content_modules'
596
+ AND t3.nspname = ANY (current_schemas(false))
597
+ ORDER BY c.conname
598
+ 
599
+  (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
600
+ FROM pg_constraint c
601
+ JOIN pg_class t1 ON c.conrelid = t1.oid
602
+ JOIN pg_class t2 ON c.confrelid = t2.oid
603
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
604
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
605
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
606
+ WHERE c.contype = 'f'
607
+ AND t1.relname = 'bit_core_content_providers'
608
+ AND t3.nspname = ANY (current_schemas(false))
609
+ ORDER BY c.conname
610
+ 
611
+  (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
612
+ FROM pg_constraint c
613
+ JOIN pg_class t1 ON c.conrelid = t1.oid
614
+ JOIN pg_class t2 ON c.confrelid = t2.oid
615
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
616
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
617
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
618
+ WHERE c.contype = 'f'
619
+ AND t1.relname = 'bit_core_slides'
620
+ AND t3.nspname = ANY (current_schemas(false))
621
+ ORDER BY c.conname
622
+ 
623
+  (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
624
+ FROM pg_constraint c
625
+ JOIN pg_class t1 ON c.conrelid = t1.oid
626
+ JOIN pg_class t2 ON c.confrelid = t2.oid
627
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
628
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
629
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
630
+ WHERE c.contype = 'f'
631
+ AND t1.relname = 'bit_core_slideshows'
632
+ AND t3.nspname = ANY (current_schemas(false))
633
+ ORDER BY c.conname
634
+ 
635
+  (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
636
+ FROM pg_constraint c
637
+ JOIN pg_class t1 ON c.conrelid = t1.oid
638
+ JOIN pg_class t2 ON c.confrelid = t2.oid
639
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
640
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
641
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
642
+ WHERE c.contype = 'f'
643
+ AND t1.relname = 'bit_core_tools'
644
+ AND t3.nspname = ANY (current_schemas(false))
645
+ ORDER BY c.conname
646
+ 
647
+  (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
648
+ FROM pg_constraint c
649
+ JOIN pg_class t1 ON c.conrelid = t1.oid
650
+ JOIN pg_class t2 ON c.confrelid = t2.oid
651
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
652
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
653
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
654
+ WHERE c.contype = 'f'
655
+ AND t1.relname = 'bit_player_participant_statuses'
656
+ AND t3.nspname = ANY (current_schemas(false))
657
+ ORDER BY c.conname
658
+ 
659
+ ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
660
+  (0.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
661
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
662
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
663
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
664
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
665
+  (127.0ms) DROP DATABASE IF EXISTS "dummy_test"
666
+  (289.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
667
+ SQL (0.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
668
+  (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)
669
+  (2.1ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")
670
+  (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)
671
+  (2.1ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")
672
+  (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)
673
+  (1.9ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")
674
+  (5.6ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
675
+  (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)
676
+  (1.6ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")
677
+  (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)
678
+  (1.5ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
679
+  (5.0ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools"
680
+ FOREIGN KEY ("bit_core_tool_id")
681
+ REFERENCES "bit_core_tools" ("id")
682
+ 
683
+  (3.1ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules"
684
+ FOREIGN KEY ("bit_core_content_module_id")
685
+ REFERENCES "bit_core_content_modules" ("id")
686
+ 
687
+  (3.2ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
688
+ FOREIGN KEY ("bit_core_slideshow_id")
689
+ REFERENCES "bit_core_slideshows" ("id")
690
+ 
691
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
692
+  (0.9ms) SELECT version FROM "schema_migrations"
693
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851')
694
+  (1.0ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
695
+
696
+ 
697
+  (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)
698
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
699
+  (0.3ms) BEGIN
700
+ 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]]
701
+  (0.5ms) COMMIT
702
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
703
+  (0.1ms) BEGIN
704
+  (0.2ms) COMMIT
705
+ ActiveRecord::SchemaMigration Load (4.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
706
+  (3.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
707
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
708
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
709
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
710
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]
711
+  (130.1ms) DROP DATABASE IF EXISTS "dummy_test"
712
+  (447.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
713
+ SQL (4.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
714
+  (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)
715
+  (2.3ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")
716
+  (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)
717
+  (2.8ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")
718
+  (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)
719
+  (3.0ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")
720
+  (10.9ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
721
+  (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)
722
+  (3.2ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")
723
+  (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)
724
+  (2.8ms) CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
725
+  (7.2ms) ALTER TABLE "bit_core_content_modules" ADD CONSTRAINT "fk_content_modules_tools"
726
+ FOREIGN KEY ("bit_core_tool_id")
727
+ REFERENCES "bit_core_tools" ("id")
728
+ 
729
+  (6.0ms) ALTER TABLE "bit_core_content_providers" ADD CONSTRAINT "fk_content_providers_modules"
730
+ FOREIGN KEY ("bit_core_content_module_id")
731
+ REFERENCES "bit_core_content_modules" ("id")
732
+ 
733
+  (4.1ms) ALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
734
+ FOREIGN KEY ("bit_core_slideshow_id")
735
+ REFERENCES "bit_core_slideshows" ("id")
736
+ 
737
+  (8.0ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)
738
+  (1.1ms) SELECT version FROM "schema_migrations"
739
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620222851')
740
+  (1.6ms) INSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
741
+
742
+ 
743
+  (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)
744
+ ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
745
+  (0.4ms) BEGIN
746
+ 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]]
747
+  (1.0ms) COMMIT
748
+ ActiveRecord::InternalMetadata Load (2.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1 [["LIMIT", 1]]
749
+  (0.3ms) BEGIN
750
+  (0.3ms) COMMIT