bit_player 0.4.4 → 0.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -3
- data/Rakefile +15 -1
- data/app/models/bit_player/content_providers/form_view_provider.rb +1 -1
- data/app/models/bit_player/content_providers/view_provider.rb +1 -1
- data/app/models/bit_player/navigator.rb +5 -4
- data/lib/bit_player/engine.rb +1 -0
- data/lib/bit_player/version.rb +2 -1
- data/spec/dummy/log/development.log +678 -232
- data/spec/dummy/log/test.log +212 -3242
- data/spec/models/bit_player/navigator_spec.rb +6 -2
- metadata +31 -18
- data/config/routes.rb +0 -2
@@ -1,304 +1,750 @@
|
|
1
|
-
[1m[
|
2
|
-
[1m[35m (
|
3
|
-
[1m[
|
4
|
-
[1m[35m (
|
5
|
-
[1m[
|
6
|
-
[1m[35m (
|
7
|
-
[1m[
|
8
|
-
[1m[
|
9
|
-
[1m[36m (7.8ms)[0m [1mCREATE 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) [0m
|
10
|
-
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
11
|
-
[1m[36m (1.4ms)[0m [1mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" USING btree ("bit_player_slideshow_id")[0m
|
12
|
-
[1m[35m (3.9ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
13
|
-
[1m[36m (5.1ms)[0m [1mCREATE 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) [0m
|
14
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
15
|
-
[1m[36m (1.8ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
16
|
-
[1m[35m (1.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
17
|
-
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
18
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
19
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140402225703')[0m
|
20
|
-
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140305200438')
|
21
|
-
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140305201300')[0m
|
22
|
-
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140305232705')
|
23
|
-
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140305232706')[0m
|
24
|
-
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140305234327')
|
25
|
-
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140402224913')[0m
|
26
|
-
[1m[36m (10.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
27
|
-
[1m[35m (2.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
28
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1
|
+
[1m[35m (0.3ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_development"[0m
|
2
|
+
[1m[35m (127.1ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
3
|
+
[1m[35m (442.9ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
4
|
+
[1m[35m (310.3ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
5
|
+
[1m[35m (18.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
6
|
+
[1m[35m (6.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
7
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT pg_try_advisory_lock(1721091371569202325);[0m
|
8
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
29
9
|
Migrating to CreateBitPlayerContentModules (20140305200438)
|
30
|
-
[1m[35m (0.
|
31
|
-
|
32
|
-
|
33
|
-
|
10
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (7.6ms)[0m [1m[35mCREATE 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)[0m
|
15
|
+
[1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305200438"]]
|
16
|
+
[1m[35m (0.7ms)[0m [1m[35mCOMMIT[0m
|
34
17
|
Migrating to CreateBitPlayerContentProviders (20140305201300)
|
35
|
-
[1m[35m (0.
|
36
|
-
|
37
|
-
|
38
|
-
|
18
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE 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)[0m
|
23
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")[0m
|
24
|
+
[1m[35m (4.5ms)[0m [1m[35m 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
|
[0m
|
43
|
-
[1m[35mSQL (0.
|
44
|
-
[1m[
|
29
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305201300"]]
|
30
|
+
[1m[35m (0.9ms)[0m [1m[35mCOMMIT[0m
|
45
31
|
Migrating to CreateBitPlayerParticipantStatuses (20140305232705)
|
46
|
-
[1m[35m (0.5ms)[0m
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
[1m[35m (
|
32
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (7.1ms)[0m [1m[35mCREATE 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)[0m
|
37
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")[0m
|
38
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305232705"]]
|
39
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
51
40
|
Migrating to CreateBitPlayerSlideshows (20140305232706)
|
52
|
-
[1m[
|
53
|
-
|
54
|
-
|
55
|
-
|
41
|
+
[1m[35m (0.6ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (10.8ms)[0m [1m[35mCREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
46
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305232706"]]
|
47
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
56
48
|
Migrating to CreateBitPlayerSlides (20140305234327)
|
57
|
-
[1m[
|
58
|
-
|
59
|
-
|
60
|
-
|
49
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (10.0ms)[0m [1m[35mCREATE 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)[0m
|
54
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")[0m
|
55
|
+
[1m[35m (2.5ms)[0m [1m[35m 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
|
-
[1m[
|
59
|
+
[0m
|
60
|
+
[1m[35m (3.5ms)[0m [1m[35m 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
|
[0m
|
69
|
-
[1m[35mSQL (0.
|
70
|
-
[1m[
|
64
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305234327"]]
|
65
|
+
[1m[35m (0.9ms)[0m [1m[35mCOMMIT[0m
|
71
66
|
Migrating to CreateBitPlayerTools (20140402224913)
|
72
|
-
[1m[35m (0.5ms)[0m
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
[1m[
|
77
|
-
[1m[
|
78
|
-
|
79
|
-
[1m[
|
80
|
-
[1m[
|
81
|
-
|
82
|
-
[1m[
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
[1m[
|
87
|
-
[1m[
|
88
|
-
[1m[
|
89
|
-
|
90
|
-
|
91
|
-
[1m[35m (0.
|
92
|
-
|
93
|
-
|
94
|
-
[1m[
|
67
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (8.2ms)[0m [1m[35mCREATE 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)[0m
|
72
|
+
[1m[35m (2.1ms)[0m [1m[35mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")[0m
|
73
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")[0m
|
74
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140402224913"]]
|
75
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
76
|
+
Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756)
|
77
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[36mBitPlayer::Slideshow Load (0.6ms)[0m [1m[34mSELECT "bit_player_slideshows".* FROM "bit_player_slideshows"[0m
|
82
|
+
[1m[36mBitPlayer::Slide Load (1.2ms)[0m [1m[34mSELECT "bit_player_slides".* FROM "bit_player_slides"[0m
|
83
|
+
[1m[35m (4.2ms)[0m [1m[35m ALTER TABLE bit_player_slides
|
84
|
+
DROP CONSTRAINT IF EXISTS fk_slides_slideshows
|
85
|
+
[0m
|
86
|
+
[1m[35m (0.8ms)[0m [1m[35m ALTER TABLE bit_player_slides
|
87
|
+
DROP CONSTRAINT IF EXISTS bit_player_slide_position
|
88
|
+
[0m
|
89
|
+
[1m[35m (3.0ms)[0m [1m[35mDROP TABLE "bit_player_slides"[0m
|
90
|
+
[1m[35m (1.9ms)[0m [1m[35mDROP TABLE "bit_player_slideshows"[0m
|
91
|
+
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620182756"]]
|
92
|
+
[1m[35m (2.9ms)[0m [1m[35mCOMMIT[0m
|
93
|
+
Migrating to CreateBitCoreTools (20140620222614)
|
94
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (5.8ms)[0m [1m[35mCREATE 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)[0m
|
99
|
+
[1m[35m (1.8ms)[0m [1m[35m ALTER TABLE bit_core_tools
|
100
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
101
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
102
|
+
[0m
|
103
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222614"]]
|
104
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
105
|
+
Migrating to CreateBitCoreContentModules (20140620222615)
|
106
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (8.2ms)[0m [1m[35mCREATE 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)[0m
|
111
|
+
[1m[35m (2.0ms)[0m [1m[35m 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
|
+
[0m
|
115
|
+
[1m[35m (5.2ms)[0m [1m[35m 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
|
+
[0m
|
120
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222615"]]
|
121
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
122
|
+
Migrating to CreateBitCoreContentProviders (20140620222616)
|
123
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (7.4ms)[0m [1m[35mCREATE 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)[0m
|
128
|
+
[1m[35m (3.0ms)[0m [1m[35m 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
|
+
[0m
|
132
|
+
[1m[35m (3.8ms)[0m [1m[35m ALTER TABLE bit_core_content_providers
|
95
133
|
ADD CONSTRAINT fk_content_providers_modules
|
96
|
-
FOREIGN KEY (
|
97
|
-
REFERENCES
|
134
|
+
FOREIGN KEY (bit_core_content_module_id)
|
135
|
+
REFERENCES bit_core_content_modules(id)
|
98
136
|
[0m
|
99
|
-
[1m[35mSQL (0.4ms)[0m
|
100
|
-
[1m[
|
101
|
-
Migrating to
|
102
|
-
[1m[35m (0.5ms)[0m
|
103
|
-
|
104
|
-
[1m[35m (1.2ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")
|
105
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140305232705"]]
|
106
|
-
[1m[35m (0.5ms)[0m COMMIT
|
107
|
-
Migrating to CreateBitPlayerSlideshows (20140305232706)
|
108
|
-
[1m[36m (0.5ms)[0m [1mBEGIN[0m
|
109
|
-
[1m[35m (3.9ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
110
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140305232706"]]
|
111
|
-
[1m[35m (0.6ms)[0m COMMIT
|
112
|
-
Migrating to CreateBitPlayerSlides (20140305234327)
|
113
|
-
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
114
|
-
[1m[35m (5.7ms)[0m 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
|
-
[1m[36m (1.5ms)[0m [1mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")[0m
|
116
|
-
[1m[35m (2.9ms)[0m 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
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222616"]]
|
138
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
139
|
+
Migrating to CreateBitCoreSlideshows (20140620222617)
|
140
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
141
|
+
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
|
120
142
|
|
121
|
-
|
122
|
-
|
143
|
+
class CreateBitCoreSlideshows < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
|
144
|
+
[1m[35m (5.2ms)[0m [1m[35mCREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
145
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222617"]]
|
146
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
147
|
+
Migrating to CreateBitCoreSlides (20140620222618)
|
148
|
+
[1m[35m (0.6ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (9.3ms)[0m [1m[35mCREATE 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)[0m
|
153
|
+
[1m[35m (3.1ms)[0m [1m[35m 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
|
[0m
|
125
|
-
[1m[
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
[1m[
|
131
|
-
[1m[
|
132
|
-
|
133
|
-
[1m[
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
[1m[35m (0.
|
138
|
-
[1m[
|
139
|
-
[1m[35m (0.
|
140
|
-
|
141
|
-
[1m[
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
[1m[
|
146
|
-
[1m[
|
147
|
-
[1m[
|
148
|
-
[1m[35m (
|
149
|
-
[1m[
|
150
|
-
[1m[
|
151
|
-
[1m[
|
152
|
-
|
153
|
-
[1m[35m (
|
154
|
-
|
157
|
+
[1m[35m (11.1ms)[0m [1m[35m 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
|
+
[0m
|
162
|
+
[1m[35mSQL (2.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222618"]]
|
163
|
+
[1m[35m (1.4ms)[0m [1m[35mCOMMIT[0m
|
164
|
+
Migrating to AddOptionsToSlides (20140620222619)
|
165
|
+
[1m[35m (0.8ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (0.8ms)[0m [1m[35mALTER TABLE "bit_core_slides" ADD "options" text[0m
|
170
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222619"]]
|
171
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
172
|
+
Migrating to AddConfigFieldsToProviders (20140620222620)
|
173
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (0.5ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "template_path" character varying[0m
|
178
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
179
|
+
[1m[35m (1.7ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "data_attributes" text[0m
|
180
|
+
[1m[35m (0.4ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
181
|
+
[1m[35m (0.6ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "locals" text[0m
|
182
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222620"]]
|
183
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
184
|
+
Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851)
|
185
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[36mBitPlayer::Tool Load (1.4ms)[0m [1m[34mSELECT "bit_player_tools".* FROM "bit_player_tools"[0m
|
190
|
+
[1m[36mBitPlayer::ContentModule Load (1.0ms)[0m [1m[34mSELECT "bit_player_content_modules".* FROM "bit_player_content_modules"[0m
|
191
|
+
[1m[36mBitPlayer::ContentProvider Load (1.3ms)[0m [1m[34mSELECT "bit_player_content_providers".* FROM "bit_player_content_providers"[0m
|
192
|
+
[1m[35m (0.4ms)[0m [1m[35m ALTER TABLE bit_player_content_modules
|
193
|
+
DROP CONSTRAINT IF EXISTS fk_content_modules_tools
|
194
|
+
[0m
|
195
|
+
[1m[35m (0.9ms)[0m [1m[35m ALTER TABLE bit_player_content_providers
|
196
|
+
DROP CONSTRAINT IF EXISTS fk_content_providers_modules
|
197
|
+
[0m
|
198
|
+
[1m[35m (2.0ms)[0m [1m[35mDROP TABLE "bit_player_tools"[0m
|
199
|
+
[1m[35m (1.8ms)[0m [1m[35mDROP TABLE "bit_player_content_modules"[0m
|
200
|
+
[1m[35m (1.9ms)[0m [1m[35mDROP TABLE "bit_player_content_providers"[0m
|
201
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222851"]]
|
202
|
+
[1m[35m (4.1ms)[0m [1m[35mCOMMIT[0m
|
203
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
204
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
205
|
+
[1m[35mSQL (0.8ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 16:48:05 UTC], ["updated_at", 2016-05-03 16:48:05 UTC]]
|
206
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
207
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT pg_advisory_unlock(1721091371569202325)[0m
|
208
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
209
|
+
[1m[35m (6.7ms)[0m [1m[34mSELECT 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
|
+
[0m
|
221
|
+
[1m[35m (6.3ms)[0m [1m[34mSELECT 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
|
+
[0m
|
233
|
+
[1m[35m (4.4ms)[0m [1m[34mSELECT 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
|
+
[0m
|
245
|
+
[1m[35m (4.6ms)[0m [1m[34mSELECT 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
|
+
[0m
|
257
|
+
[1m[35m (4.2ms)[0m [1m[34mSELECT 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
|
+
[0m
|
269
|
+
[1m[35m (4.1ms)[0m [1m[34mSELECT 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
|
+
[0m
|
281
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.7ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
282
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
283
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
284
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
285
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
286
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
287
|
+
[1m[35m (125.5ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
288
|
+
[1m[35m (460.3ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
289
|
+
[1m[35mSQL (2.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
290
|
+
[1m[35m (13.1ms)[0m [1m[35mCREATE 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)[0m
|
291
|
+
[1m[35m (4.9ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")[0m
|
292
|
+
[1m[35m (8.2ms)[0m [1m[35mCREATE 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)[0m
|
293
|
+
[1m[35m (3.5ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")[0m
|
294
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE 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)[0m
|
295
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")[0m
|
296
|
+
[1m[35m (44.3ms)[0m [1m[35mCREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
297
|
+
[1m[35m (7.8ms)[0m [1m[35mCREATE 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)[0m
|
298
|
+
[1m[35m (4.3ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")[0m
|
299
|
+
[1m[35m (6.6ms)[0m [1m[35mCREATE 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)[0m
|
300
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")[0m
|
301
|
+
[1m[35m (4.9ms)[0m [1m[35mALTER 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
|
+
[0m
|
305
|
+
[1m[35m (3.1ms)[0m [1m[35mALTER 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
|
+
[0m
|
309
|
+
[1m[35m (2.9ms)[0m [1m[35mALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
|
310
|
+
FOREIGN KEY ("bit_core_slideshow_id")
|
311
|
+
REFERENCES "bit_core_slideshows" ("id")
|
312
|
+
[0m
|
313
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
314
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
315
|
+
[1m[35m (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140620222851')[0m
|
316
|
+
[1m[35m (1.2ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
|
317
|
+
|
318
|
+
[0m
|
319
|
+
[1m[35m (4.8ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
320
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
321
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
322
|
+
[1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:09:29 UTC], ["updated_at", 2016-05-03 17:09:29 UTC]]
|
323
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
324
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
325
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
326
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
327
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
328
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
329
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
330
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
331
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
332
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
333
|
+
[1m[35m (128.9ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
334
|
+
[1m[35m (426.9ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
335
|
+
[1m[35mSQL (0.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
336
|
+
[1m[35m (11.6ms)[0m [1m[35mCREATE 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)[0m
|
337
|
+
[1m[35m (2.0ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")[0m
|
338
|
+
[1m[35m (6.7ms)[0m [1m[35mCREATE 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)[0m
|
339
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")[0m
|
340
|
+
[1m[35m (5.7ms)[0m [1m[35mCREATE 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)[0m
|
341
|
+
[1m[35m (2.0ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")[0m
|
342
|
+
[1m[35m (5.7ms)[0m [1m[35mCREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
343
|
+
[1m[35m (5.9ms)[0m [1m[35mCREATE 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)[0m
|
344
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")[0m
|
345
|
+
[1m[35m (6.9ms)[0m [1m[35mCREATE 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)[0m
|
346
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")[0m
|
347
|
+
[1m[35m (4.6ms)[0m [1m[35mALTER 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
|
+
[0m
|
351
|
+
[1m[35m (3.4ms)[0m [1m[35mALTER 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
|
+
[0m
|
355
|
+
[1m[35m (3.1ms)[0m [1m[35mALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
|
356
|
+
FOREIGN KEY ("bit_core_slideshow_id")
|
357
|
+
REFERENCES "bit_core_slideshows" ("id")
|
358
|
+
[0m
|
359
|
+
[1m[35m (5.9ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
360
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
361
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140620222851')[0m
|
362
|
+
[1m[35m (1.9ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
|
363
|
+
|
364
|
+
[0m
|
365
|
+
[1m[35m (6.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
366
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.8ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
367
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
368
|
+
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:09:53 UTC], ["updated_at", 2016-05-03 17:09:53 UTC]]
|
369
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
370
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
371
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
372
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
373
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.6ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
374
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
375
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
376
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
377
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
378
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
379
|
+
[1m[35m (126.7ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_development"[0m
|
380
|
+
[1m[35m (125.6ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
381
|
+
[1m[35m (457.5ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'unicode'[0m
|
382
|
+
[1m[35m (280.5ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
383
|
+
[1m[35m (15.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
384
|
+
[1m[35m (9.6ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
385
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT pg_try_advisory_lock(1721091371569202325);[0m
|
386
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
155
387
|
Migrating to CreateBitPlayerContentModules (20140305200438)
|
156
|
-
[1m[35m (0.3ms)[0m
|
157
|
-
|
158
|
-
|
159
|
-
|
388
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (8.7ms)[0m [1m[35mCREATE 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)[0m
|
393
|
+
[1m[35mSQL (1.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305200438"]]
|
394
|
+
[1m[35m (0.8ms)[0m [1m[35mCOMMIT[0m
|
160
395
|
Migrating to CreateBitPlayerContentProviders (20140305201300)
|
161
|
-
[1m[35m (0.
|
162
|
-
|
163
|
-
|
164
|
-
|
396
|
+
[1m[35m (0.7ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (9.0ms)[0m [1m[35mCREATE 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)[0m
|
401
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE INDEX "content_module_index" ON "bit_player_content_providers" ("bit_player_content_module_id")[0m
|
402
|
+
[1m[35m (4.9ms)[0m [1m[35m 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
|
[0m
|
169
|
-
[1m[35mSQL (
|
170
|
-
[1m[
|
407
|
+
[1m[35mSQL (1.6ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305201300"]]
|
408
|
+
[1m[35m (1.0ms)[0m [1m[35mCOMMIT[0m
|
171
409
|
Migrating to CreateBitPlayerParticipantStatuses (20140305232705)
|
172
|
-
[1m[35m (0.
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
[1m[35m (
|
410
|
+
[1m[35m (0.7ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (12.4ms)[0m [1m[35mCREATE 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)[0m
|
415
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" ("participant_id")[0m
|
416
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305232705"]]
|
417
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
177
418
|
Migrating to CreateBitPlayerSlideshows (20140305232706)
|
178
|
-
[1m[
|
179
|
-
|
180
|
-
|
181
|
-
|
419
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
424
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305232706"]]
|
425
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
182
426
|
Migrating to CreateBitPlayerSlides (20140305234327)
|
183
|
-
[1m[
|
184
|
-
|
185
|
-
|
186
|
-
|
427
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (8.3ms)[0m [1m[35mCREATE 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)[0m
|
432
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" ("bit_player_slideshow_id")[0m
|
433
|
+
[1m[35m (3.9ms)[0m [1m[35m 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
|
-
[1m[
|
437
|
+
[0m
|
438
|
+
[1m[35m (2.5ms)[0m [1m[35m 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
|
[0m
|
195
|
-
[1m[35mSQL (0.
|
196
|
-
[1m[
|
442
|
+
[1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140305234327"]]
|
443
|
+
[1m[35m (0.9ms)[0m [1m[35mCOMMIT[0m
|
197
444
|
Migrating to CreateBitPlayerTools (20140402224913)
|
198
|
-
[1m[35m (0.
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
[1m[
|
203
|
-
[1m[
|
445
|
+
[1m[35m (0.9ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (5.7ms)[0m [1m[35mCREATE 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)[0m
|
450
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" ("title")[0m
|
451
|
+
[1m[35m (2.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" ("position")[0m
|
452
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140402224913"]]
|
453
|
+
[1m[35m (2.0ms)[0m [1m[35mCOMMIT[0m
|
204
454
|
Migrating to ConvertSlidesSlideshowsToBitCore (20140620182756)
|
205
|
-
[1m[35m (0.
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
455
|
+
[1m[35m (0.6ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[36mBitPlayer::Slideshow Load (1.0ms)[0m [1m[34mSELECT "bit_player_slideshows".* FROM "bit_player_slideshows"[0m
|
460
|
+
[1m[36mBitPlayer::Slide Load (0.9ms)[0m [1m[34mSELECT "bit_player_slides".* FROM "bit_player_slides"[0m
|
461
|
+
[1m[35m (1.3ms)[0m [1m[35m ALTER TABLE bit_player_slides
|
462
|
+
DROP CONSTRAINT IF EXISTS fk_slides_slideshows
|
210
463
|
[0m
|
211
|
-
[1m[35m (0.7ms)[0m
|
464
|
+
[1m[35m (0.7ms)[0m [1m[35m ALTER TABLE bit_player_slides
|
212
465
|
DROP CONSTRAINT IF EXISTS bit_player_slide_position
|
213
|
-
|
214
|
-
[1m[
|
215
|
-
[1m[35m (1.
|
216
|
-
[1m[
|
217
|
-
[1m[35m (2.
|
466
|
+
[0m
|
467
|
+
[1m[35m (2.1ms)[0m [1m[35mDROP TABLE "bit_player_slides"[0m
|
468
|
+
[1m[35m (1.4ms)[0m [1m[35mDROP TABLE "bit_player_slideshows"[0m
|
469
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620182756"]]
|
470
|
+
[1m[35m (2.3ms)[0m [1m[35mCOMMIT[0m
|
218
471
|
Migrating to CreateBitCoreTools (20140620222614)
|
219
|
-
[1m[
|
220
|
-
|
221
|
-
|
472
|
+
[1m[35m (0.6ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (7.7ms)[0m [1m[35mCREATE 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)[0m
|
477
|
+
[1m[35m (3.3ms)[0m [1m[35m ALTER TABLE bit_core_tools
|
222
478
|
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
223
479
|
DEFERRABLE INITIALLY IMMEDIATE
|
224
480
|
[0m
|
225
|
-
[1m[35mSQL (0.
|
226
|
-
[1m[
|
481
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222614"]]
|
482
|
+
[1m[35m (0.8ms)[0m [1m[35mCOMMIT[0m
|
227
483
|
Migrating to CreateBitCoreContentModules (20140620222615)
|
228
|
-
[1m[35m (0.
|
229
|
-
|
230
|
-
|
484
|
+
[1m[35m (0.6ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (9.4ms)[0m [1m[35mCREATE 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)[0m
|
489
|
+
[1m[35m (2.3ms)[0m [1m[35m 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
|
-
[1m[
|
492
|
+
[0m
|
493
|
+
[1m[35m (2.6ms)[0m [1m[35m 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
|
[0m
|
239
|
-
[1m[35mSQL (0.
|
240
|
-
[1m[
|
498
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222615"]]
|
499
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
241
500
|
Migrating to CreateBitCoreContentProviders (20140620222616)
|
242
|
-
[1m[35m (0.
|
243
|
-
|
244
|
-
|
501
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (10.9ms)[0m [1m[35mCREATE 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)[0m
|
506
|
+
[1m[35m (3.9ms)[0m [1m[35m 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
|
-
[1m[
|
509
|
+
[0m
|
510
|
+
[1m[35m (3.8ms)[0m [1m[35m 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
|
[0m
|
253
|
-
[1m[35mSQL (0.
|
254
|
-
[1m[
|
515
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222616"]]
|
516
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
255
517
|
Migrating to CreateBitCoreSlideshows (20140620222617)
|
256
|
-
[1m[35m (0.
|
257
|
-
|
258
|
-
|
259
|
-
|
518
|
+
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (6.2ms)[0m [1m[35mCREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
523
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222617"]]
|
524
|
+
[1m[35m (1.1ms)[0m [1m[35mCOMMIT[0m
|
260
525
|
Migrating to CreateBitCoreSlides (20140620222618)
|
261
|
-
[1m[35m (
|
262
|
-
|
263
|
-
|
526
|
+
[1m[35m (1.2ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (6.3ms)[0m [1m[35mCREATE 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)[0m
|
531
|
+
[1m[35m (3.1ms)[0m [1m[35m 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
|
-
[1m[
|
534
|
+
[0m
|
535
|
+
[1m[35m (3.4ms)[0m [1m[35m 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
|
[0m
|
272
|
-
[1m[35mSQL (0.
|
273
|
-
[1m[
|
540
|
+
[1m[35mSQL (0.8ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222618"]]
|
541
|
+
[1m[35m (0.9ms)[0m [1m[35mCOMMIT[0m
|
274
542
|
Migrating to AddOptionsToSlides (20140620222619)
|
275
|
-
[1m[35m (
|
276
|
-
|
277
|
-
|
278
|
-
|
543
|
+
[1m[35m (1.1ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (1.1ms)[0m [1m[35mALTER TABLE "bit_core_slides" ADD "options" text[0m
|
548
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222619"]]
|
549
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
279
550
|
Migrating to AddConfigFieldsToProviders (20140620222620)
|
280
|
-
[1m[35m (0.
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
[1m[35m (0.
|
285
|
-
[1m[
|
286
|
-
[1m[
|
287
|
-
[1m[
|
551
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
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
|
+
[1m[35m (0.5ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "template_path" character varying[0m
|
556
|
+
[1m[35m (0.4ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
557
|
+
[1m[35m (0.4ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "data_attributes" text[0m
|
558
|
+
[1m[35m (0.4ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
559
|
+
[1m[35m (0.5ms)[0m [1m[35mALTER TABLE "bit_core_content_providers" ADD "locals" text[0m
|
560
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222620"]]
|
561
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
288
562
|
Migrating to ConvertToolsModulesPresentersToBitCore (20140620222851)
|
289
|
-
[1m[35m (0.
|
290
|
-
|
291
|
-
[1m[35mBitPlayer::ContentModule Load (0.5ms)[0m SELECT "bit_player_content_modules".* FROM "bit_player_content_modules"
|
292
|
-
[1m[36mBitPlayer::ContentProvider Load (0.5ms)[0m [1mSELECT "bit_player_content_providers".* FROM "bit_player_content_providers"[0m
|
293
|
-
[1m[35m (0.3ms)[0m ALTER TABLE bit_player_content_modules
|
294
|
-
DROP CONSTRAINT IF EXISTS fk_content_modules_tools
|
563
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
564
|
+
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
|
295
565
|
|
296
|
-
|
566
|
+
class ConvertToolsModulesPresentersToBitCore < ActiveRecord::Migration[4.2] (called from load at bin/rake:16)
|
567
|
+
[1m[36mBitPlayer::Tool Load (1.1ms)[0m [1m[34mSELECT "bit_player_tools".* FROM "bit_player_tools"[0m
|
568
|
+
[1m[36mBitPlayer::ContentModule Load (0.7ms)[0m [1m[34mSELECT "bit_player_content_modules".* FROM "bit_player_content_modules"[0m
|
569
|
+
[1m[36mBitPlayer::ContentProvider Load (0.9ms)[0m [1m[34mSELECT "bit_player_content_providers".* FROM "bit_player_content_providers"[0m
|
570
|
+
[1m[35m (0.3ms)[0m [1m[35m ALTER TABLE bit_player_content_modules
|
571
|
+
DROP CONSTRAINT IF EXISTS fk_content_modules_tools
|
572
|
+
[0m
|
573
|
+
[1m[35m (0.8ms)[0m [1m[35m ALTER TABLE bit_player_content_providers
|
297
574
|
DROP CONSTRAINT IF EXISTS fk_content_providers_modules
|
298
575
|
[0m
|
299
|
-
[1m[35m (1.
|
300
|
-
[1m[
|
301
|
-
[1m[35m (
|
302
|
-
[1m[
|
303
|
-
[1m[35m (
|
304
|
-
[1m[36mActiveRecord::
|
576
|
+
[1m[35m (1.9ms)[0m [1m[35mDROP TABLE "bit_player_tools"[0m
|
577
|
+
[1m[35m (1.8ms)[0m [1m[35mDROP TABLE "bit_player_content_modules"[0m
|
578
|
+
[1m[35m (2.8ms)[0m [1m[35mDROP TABLE "bit_player_content_providers"[0m
|
579
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140620222851"]]
|
580
|
+
[1m[35m (3.9ms)[0m [1m[35mCOMMIT[0m
|
581
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
582
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
583
|
+
[1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:55:30 UTC], ["updated_at", 2016-05-03 17:55:30 UTC]]
|
584
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
585
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT pg_advisory_unlock(1721091371569202325)[0m
|
586
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
587
|
+
[1m[35m (4.9ms)[0m [1m[34mSELECT 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
|
+
[0m
|
599
|
+
[1m[35m (4.4ms)[0m [1m[34mSELECT 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
|
+
[0m
|
611
|
+
[1m[35m (5.6ms)[0m [1m[34mSELECT 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
|
+
[0m
|
623
|
+
[1m[35m (5.2ms)[0m [1m[34mSELECT 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
|
+
[0m
|
635
|
+
[1m[35m (4.6ms)[0m [1m[34mSELECT 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
|
+
[0m
|
647
|
+
[1m[35m (4.8ms)[0m [1m[34mSELECT 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
|
+
[0m
|
659
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
660
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
661
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
662
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
663
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
664
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
665
|
+
[1m[35m (127.0ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
666
|
+
[1m[35m (289.2ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
667
|
+
[1m[35mSQL (0.9ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
668
|
+
[1m[35m (12.3ms)[0m [1m[35mCREATE 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)[0m
|
669
|
+
[1m[35m (2.1ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")[0m
|
670
|
+
[1m[35m (6.5ms)[0m [1m[35mCREATE 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)[0m
|
671
|
+
[1m[35m (2.1ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")[0m
|
672
|
+
[1m[35m (6.1ms)[0m [1m[35mCREATE 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)[0m
|
673
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")[0m
|
674
|
+
[1m[35m (5.6ms)[0m [1m[35mCREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
675
|
+
[1m[35m (5.6ms)[0m [1m[35mCREATE 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)[0m
|
676
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")[0m
|
677
|
+
[1m[35m (6.7ms)[0m [1m[35mCREATE 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)[0m
|
678
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")[0m
|
679
|
+
[1m[35m (5.0ms)[0m [1m[35mALTER 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
|
+
[0m
|
683
|
+
[1m[35m (3.1ms)[0m [1m[35mALTER 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
|
+
[0m
|
687
|
+
[1m[35m (3.2ms)[0m [1m[35mALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
|
688
|
+
FOREIGN KEY ("bit_core_slideshow_id")
|
689
|
+
REFERENCES "bit_core_slideshows" ("id")
|
690
|
+
[0m
|
691
|
+
[1m[35m (4.8ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
692
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
693
|
+
[1m[35m (0.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140620222851')[0m
|
694
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
|
695
|
+
|
696
|
+
[0m
|
697
|
+
[1m[35m (4.5ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
698
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
699
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
700
|
+
[1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-05-03 17:55:36 UTC], ["updated_at", 2016-05-03 17:55:36 UTC]]
|
701
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
702
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
703
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
704
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
705
|
+
[1m[36mActiveRecord::SchemaMigration Load (4.7ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
706
|
+
[1m[35m (3.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
707
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
708
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
709
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
710
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
711
|
+
[1m[35m (130.1ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
712
|
+
[1m[35m (447.9ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'unicode'[0m
|
713
|
+
[1m[35mSQL (4.5ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
714
|
+
[1m[35m (15.2ms)[0m [1m[35mCREATE 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)[0m
|
715
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")[0m
|
716
|
+
[1m[35m (9.6ms)[0m [1m[35mCREATE 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)[0m
|
717
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")[0m
|
718
|
+
[1m[35m (10.1ms)[0m [1m[35mCREATE 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)[0m
|
719
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")[0m
|
720
|
+
[1m[35m (10.9ms)[0m [1m[35mCREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)[0m
|
721
|
+
[1m[35m (14.1ms)[0m [1m[35mCREATE 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)[0m
|
722
|
+
[1m[35m (3.2ms)[0m [1m[35mCREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")[0m
|
723
|
+
[1m[35m (11.2ms)[0m [1m[35mCREATE 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)[0m
|
724
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")[0m
|
725
|
+
[1m[35m (7.2ms)[0m [1m[35mALTER 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
|
+
[0m
|
729
|
+
[1m[35m (6.0ms)[0m [1m[35mALTER 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
|
+
[0m
|
733
|
+
[1m[35m (4.1ms)[0m [1m[35mALTER TABLE "bit_core_slides" ADD CONSTRAINT "fk_slideshows_slides"
|
734
|
+
FOREIGN KEY ("bit_core_slideshow_id")
|
735
|
+
REFERENCES "bit_core_slideshows" ("id")
|
736
|
+
[0m
|
737
|
+
[1m[35m (8.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
738
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
739
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140620222851')[0m
|
740
|
+
[1m[35m (1.6ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140620222614'), ('20140620222615'), ('20140620222616'), ('20140620222617'), ('20140620222618'), ('20140620222619'), ('20140620222620'), ('20140305200438'), ('20140305201300'), ('20140305232705'), ('20140305232706'), ('20140305234327'), ('20140402224913'), ('20140620182756');
|
741
|
+
|
742
|
+
[0m
|
743
|
+
[1m[35m (7.4ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
744
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
745
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
746
|
+
[1m[35mSQL (1.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-05-09 13:42:29 UTC], ["updated_at", 2016-05-09 13:42:29 UTC]]
|
747
|
+
[1m[35m (1.0ms)[0m [1m[35mCOMMIT[0m
|
748
|
+
[1m[36mActiveRecord::InternalMetadata Load (2.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" ORDER BY "ar_internal_metadata"."key" ASC LIMIT $1[0m [["LIMIT", 1]]
|
749
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
750
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|