bit_core 1.2.2 → 1.4.5
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 +21 -3
- data/Rakefile +1 -1
- data/app/models/bit_core/audio_slide.rb +6 -0
- data/app/models/bit_core/content_provider.rb +3 -1
- data/app/models/bit_core/content_providers/slideshow_provider.rb +3 -3
- data/app/models/bit_core/slide.rb +9 -0
- data/app/models/bit_core/slideshow.rb +3 -1
- data/app/models/bit_core/tool.rb +5 -3
- data/db/migrate/20141205202720_create_bit_core_arms.rb +10 -0
- data/db/migrate/20141205202724_add_arm_id_to_bit_core_slideshows.rb +25 -0
- data/db/migrate/20141205202740_add_arm_id_to_bit_core_tools.rb +25 -0
- data/db/migrate/20150130155627_add_type_to_tools.rb +5 -0
- data/db/migrate/20150131195914_add_is_viz_to_content_modules.rb +5 -0
- data/db/migrate/20150210161229_add_tool_constraint.rb +25 -0
- data/lib/bit_core/version.rb +1 -1
- data/spec/dummy/config/database.yml +0 -1
- data/spec/dummy/log/development.log +1486 -495
- data/spec/dummy/log/test.log +784 -7780
- data/spec/fixtures/arms.yml +6 -0
- data/spec/fixtures/bit_core/slideshows.yml +1 -0
- data/spec/fixtures/bit_core/tools.yml +1 -0
- data/spec/models/bit_core/content_providers/slideshow_provider_spec.rb +14 -0
- data/spec/models/bit_core/slide_spec.rb +15 -0
- data/spec/models/bit_core/slideshow_spec.rb +12 -0
- metadata +14 -5
- data/spec/dummy/db/schema.rb +0 -76
@@ -1,472 +1,1284 @@
|
|
1
|
-
[1m[
|
2
|
-
[1m[35m (391.6ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
3
|
-
[1m[36mActiveRecord::SchemaMigration Load (3.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4
|
-
[1m[36m (116.6ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
5
|
-
[1m[35m (395.9ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
6
|
-
[1m[36mSQL (2.8ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
7
|
-
[1m[35m (22.2ms)[0m 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)
|
8
|
-
[1m[36m (10.2ms)[0m [1mCREATE 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) [0m
|
9
|
-
[1m[35m (19.8ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
10
|
-
[1m[36m (6.2ms)[0m [1mCREATE 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) [0m
|
11
|
-
[1m[35m (2.5ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
12
|
-
[1m[36m (8.7ms)[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
|
13
|
-
[1m[35m (2.0ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
14
|
-
[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
|
15
|
-
[1m[35m (4.0ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
16
|
-
[1m[36m (3.9ms)[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
|
17
|
-
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
18
|
-
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
19
|
-
[1m[35m (1.7ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
20
|
-
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
21
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
22
|
-
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
23
|
-
[1m[36m (117.6ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
24
|
-
[1m[35m (251.0ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
25
|
-
[1m[36mSQL (0.5ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
26
|
-
[1m[35m (7.3ms)[0m 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)
|
27
|
-
[1m[36m (5.8ms)[0m [1mCREATE 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) [0m
|
28
|
-
[1m[35m (1.3ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
29
|
-
[1m[36m (3.6ms)[0m [1mCREATE 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) [0m
|
30
|
-
[1m[35m (1.5ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
31
|
-
[1m[36m (5.3ms)[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
|
32
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
33
|
-
[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
|
34
|
-
[1m[35m (3.5ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
35
|
-
[1m[36m (3.8ms)[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
|
36
|
-
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
37
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
38
|
-
[1m[35m (1.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
39
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
40
|
-
[1m[35m (0.6ms)[0m SELECT version FROM "schema_migrations"
|
41
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
42
|
-
[1m[36m (121.6ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
43
|
-
[1m[35m (257.2ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
44
|
-
[1m[36mSQL (0.5ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
45
|
-
[1m[35m (7.1ms)[0m 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)
|
46
|
-
[1m[36m (5.6ms)[0m [1mCREATE 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) [0m
|
47
|
-
[1m[35m (1.4ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
48
|
-
[1m[36m (3.7ms)[0m [1mCREATE 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) [0m
|
49
|
-
[1m[35m (1.6ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
50
|
-
[1m[36m (5.3ms)[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
|
51
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
52
|
-
[1m[36m (1.5ms)[0m [1mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" USING btree ("bit_player_slideshow_id")[0m
|
53
|
-
[1m[35m (3.6ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
54
|
-
[1m[36m (3.8ms)[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
|
55
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
56
|
-
[1m[36m (1.8ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
57
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
58
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
59
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
60
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
61
|
-
[1m[36m (120.4ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
62
|
-
[1m[35m (251.6ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
63
|
-
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
64
|
-
[1m[35m (9.3ms)[0m 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)
|
65
|
-
[1m[36m (6.2ms)[0m [1mCREATE 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) [0m
|
66
|
-
[1m[35m (1.3ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
67
|
-
[1m[36m (3.6ms)[0m [1mCREATE 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) [0m
|
68
|
-
[1m[35m (1.6ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
69
|
-
[1m[36m (5.3ms)[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
|
70
|
-
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
71
|
-
[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
|
72
|
-
[1m[35m (3.3ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
73
|
-
[1m[36m (3.5ms)[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
|
74
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
75
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
76
|
-
[1m[35m (1.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
77
|
-
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
78
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
79
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
80
|
-
[1m[36m (132.4ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
81
|
-
[1m[35m (397.6ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
82
|
-
[1m[36mSQL (2.0ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
83
|
-
[1m[35m (26.8ms)[0m 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)
|
84
|
-
[1m[36m (9.3ms)[0m [1mCREATE 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) [0m
|
85
|
-
[1m[35m (1.7ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
86
|
-
[1m[36m (5.7ms)[0m [1mCREATE 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) [0m
|
87
|
-
[1m[35m (1.6ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
88
|
-
[1m[36m (5.4ms)[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
|
89
|
-
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
90
|
-
[1m[36m (1.5ms)[0m [1mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" USING btree ("bit_player_slideshow_id")[0m
|
91
|
-
[1m[35m (4.0ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
92
|
-
[1m[36m (3.8ms)[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
|
93
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
94
|
-
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
95
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
96
|
-
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
97
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
98
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
99
|
-
[1m[36m (117.9ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
100
|
-
[1m[35m (247.4ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
101
|
-
[1m[36mSQL (0.5ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
102
|
-
[1m[35m (8.9ms)[0m 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)
|
103
|
-
[1m[36m (5.5ms)[0m [1mCREATE 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) [0m
|
104
|
-
[1m[35m (1.5ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
105
|
-
[1m[36m (3.8ms)[0m [1mCREATE 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) [0m
|
106
|
-
[1m[35m (1.6ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
107
|
-
[1m[36m (7.3ms)[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
|
108
|
-
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
109
|
-
[1m[36m (1.3ms)[0m [1mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" USING btree ("bit_player_slideshow_id")[0m
|
110
|
-
[1m[35m (3.7ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
111
|
-
[1m[36m (3.6ms)[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
|
112
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
113
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
114
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
115
|
-
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
116
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
117
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
118
|
-
[1m[36m (118.7ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
119
|
-
[1m[35m (371.7ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
120
|
-
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
121
|
-
[1m[35m (7.0ms)[0m 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)
|
122
|
-
[1m[36m (7.5ms)[0m [1mCREATE 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) [0m
|
123
|
-
[1m[35m (1.5ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
124
|
-
[1m[36m (3.8ms)[0m [1mCREATE 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) [0m
|
125
|
-
[1m[35m (1.5ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
126
|
-
[1m[36m (5.4ms)[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
|
127
|
-
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
128
|
-
[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
|
129
|
-
[1m[35m (3.6ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
130
|
-
[1m[36m (3.8ms)[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
|
131
|
-
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
132
|
-
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
133
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
134
|
-
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
135
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
136
|
-
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
137
|
-
[1m[36m (117.7ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
138
|
-
[1m[35m (246.6ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
139
|
-
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
140
|
-
[1m[35m (8.9ms)[0m 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)
|
141
|
-
[1m[36m (5.6ms)[0m [1mCREATE 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) [0m
|
142
|
-
[1m[35m (1.3ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
143
|
-
[1m[36m (3.8ms)[0m [1mCREATE 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) [0m
|
144
|
-
[1m[35m (1.5ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
145
|
-
[1m[36m (5.3ms)[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
|
146
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
147
|
-
[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
|
148
|
-
[1m[35m (3.7ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
149
|
-
[1m[36m (3.8ms)[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
|
150
|
-
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
151
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
152
|
-
[1m[35m (1.5ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
153
|
-
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
154
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
155
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
156
|
-
[1m[36m (118.3ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
157
|
-
[1m[35m (249.7ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
158
|
-
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
159
|
-
[1m[35m (7.3ms)[0m 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)
|
160
|
-
[1m[36m (6.5ms)[0m [1mCREATE 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) [0m
|
161
|
-
[1m[35m (1.4ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
162
|
-
[1m[36m (3.9ms)[0m [1mCREATE 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) [0m
|
163
|
-
[1m[35m (1.5ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
164
|
-
[1m[36m (8.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
|
165
|
-
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
166
|
-
[1m[36m (1.7ms)[0m [1mCREATE INDEX "index_bit_player_slides_on_bit_player_slideshow_id" ON "bit_player_slides" USING btree ("bit_player_slideshow_id")[0m
|
167
|
-
[1m[35m (3.6ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
168
|
-
[1m[36m (3.8ms)[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
|
169
|
-
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
170
|
-
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
171
|
-
[1m[35m (1.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
172
|
-
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
173
|
-
[1m[35m (0.4ms)[0m SELECT version FROM "schema_migrations"
|
174
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
175
|
-
[1m[36m (124.4ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
176
|
-
[1m[35m (249.9ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
177
|
-
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
178
|
-
[1m[35m (8.6ms)[0m 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)
|
179
|
-
[1m[36m (5.7ms)[0m [1mCREATE 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) [0m
|
180
|
-
[1m[35m (2.4ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
181
|
-
[1m[36m (3.8ms)[0m [1mCREATE 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) [0m
|
182
|
-
[1m[35m (1.6ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
183
|
-
[1m[36m (7.2ms)[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
|
184
|
-
[1m[35m (3.3ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
185
|
-
[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
|
186
|
-
[1m[35m (3.5ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
187
|
-
[1m[36m (3.7ms)[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
|
188
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
189
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
190
|
-
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
191
|
-
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
192
|
-
[1m[35m (0.4ms)[0m SELECT version FROM "schema_migrations"
|
193
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
194
|
-
[1m[36m (134.5ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
195
|
-
[1m[35m (430.5ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
196
|
-
[1m[36mSQL (2.2ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
197
|
-
[1m[35m (7.5ms)[0m 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)
|
198
|
-
[1m[36m (5.5ms)[0m [1mCREATE 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) [0m
|
199
|
-
[1m[35m (1.3ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
200
|
-
[1m[36m (3.6ms)[0m [1mCREATE 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) [0m
|
201
|
-
[1m[35m (1.7ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
202
|
-
[1m[36m (5.2ms)[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
|
203
|
-
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
204
|
-
[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
|
205
|
-
[1m[35m (3.5ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
206
|
-
[1m[36m (3.7ms)[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
|
207
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
208
|
-
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
209
|
-
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
210
|
-
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
211
|
-
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
212
|
-
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
213
|
-
[1m[36m (117.6ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
214
|
-
[1m[35m (247.3ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'unicode'
|
215
|
-
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
216
|
-
[1m[35m (8.6ms)[0m 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)
|
217
|
-
[1m[36m (8.8ms)[0m [1mCREATE 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) [0m
|
218
|
-
[1m[35m (1.5ms)[0m CREATE INDEX "content_module_index" ON "bit_player_content_providers" USING btree ("bit_player_content_module_id")
|
219
|
-
[1m[36m (4.0ms)[0m [1mCREATE 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) [0m
|
220
|
-
[1m[35m (1.4ms)[0m CREATE INDEX "index_participant_statuses_on_participant_id" ON "bit_player_participant_statuses" USING btree ("participant_id")
|
221
|
-
[1m[36m (5.2ms)[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
|
222
|
-
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "bit_player_slide_position" ON "bit_player_slides" USING btree ("bit_player_slideshow_id", "position")
|
223
|
-
[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
|
224
|
-
[1m[35m (3.4ms)[0m CREATE TABLE "bit_player_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
225
|
-
[1m[36m (3.5ms)[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
|
226
|
-
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "index_bit_player_tools_on_position" ON "bit_player_tools" USING btree ("position")
|
227
|
-
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "index_bit_player_tools_on_title" ON "bit_player_tools" USING btree ("title")[0m
|
228
|
-
[1m[35m (1.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
229
|
-
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
230
|
-
[1m[35m (0.6ms)[0m SELECT version FROM "schema_migrations"
|
231
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140403181300')[0m
|
232
|
-
[1m[36mActiveRecord::SchemaMigration Load (1.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1
|
+
[1m[36mActiveRecord::SchemaMigration Load (27.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
233
2
|
Migrating to CreateBitCoreTools (20140415210052)
|
234
|
-
[1m[35m (0.
|
235
|
-
|
236
|
-
[1m[
|
3
|
+
[1m[35m (0.1ms)[0m BEGIN
|
4
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
5
|
+
[1m[36m (35.9ms)[0m [1mCREATE 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
|
6
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
7
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
8
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
9
|
+
[1m[35m (0.2ms)[0m BEGIN
|
10
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
11
|
+
[1m[36m (4.1ms)[0m [1mCREATE 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
|
12
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
13
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
14
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
15
|
+
[1m[35m (0.1ms)[0m BEGIN
|
16
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
17
|
+
[1m[36m (2.9ms)[0m [1mCREATE 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
|
18
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19
|
+
[1m[36m (3.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
20
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
21
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
22
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
23
|
+
[1m[35m (0.2ms)[0m BEGIN
|
24
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
25
|
+
[1m[36m (3.8ms)[0m [1mCREATE 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
|
26
|
+
[1m[35m (1.4ms)[0m ALTER TABLE bit_core_tools
|
237
27
|
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
238
28
|
DEFERRABLE INITIALLY IMMEDIATE
|
239
29
|
|
240
30
|
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
241
|
-
[1m[35m (
|
31
|
+
[1m[35m (5.3ms)[0m COMMIT
|
242
32
|
Migrating to CreateBitCoreContentModules (20140415211458)
|
243
|
-
[1m[36m (
|
244
|
-
|
245
|
-
[1m[
|
33
|
+
[1m[36m (5.5ms)[0m [1mBEGIN[0m
|
34
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
35
|
+
[1m[35m (19.2ms)[0m 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)
|
36
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_content_modules
|
246
37
|
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
247
38
|
DEFERRABLE INITIALLY IMMEDIATE
|
248
39
|
[0m
|
249
|
-
[1m[35m (
|
40
|
+
[1m[35m (1.4ms)[0m ALTER TABLE bit_core_content_modules
|
250
41
|
ADD CONSTRAINT fk_content_modules_tools
|
251
42
|
FOREIGN KEY (bit_core_tool_id)
|
252
43
|
REFERENCES bit_core_tools(id)
|
253
44
|
|
254
|
-
[1m[36mSQL (0.
|
45
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
255
46
|
[1m[35m (0.6ms)[0m COMMIT
|
256
47
|
Migrating to CreateBitCoreContentProviders (20140415213346)
|
257
|
-
[1m[36m (
|
258
|
-
|
259
|
-
[1m[
|
48
|
+
[1m[36m (5.8ms)[0m [1mBEGIN[0m
|
49
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
50
|
+
[1m[35m (18.9ms)[0m 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)
|
51
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_providers
|
260
52
|
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
261
53
|
DEFERRABLE INITIALLY IMMEDIATE
|
262
54
|
[0m
|
263
|
-
[1m[35m (
|
55
|
+
[1m[35m (1.1ms)[0m ALTER TABLE bit_core_content_providers
|
264
56
|
ADD CONSTRAINT fk_content_providers_modules
|
265
57
|
FOREIGN KEY (bit_core_content_module_id)
|
266
58
|
REFERENCES bit_core_content_modules(id)
|
267
59
|
|
268
|
-
[1m[36mSQL (0.
|
60
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
269
61
|
[1m[35m (0.7ms)[0m COMMIT
|
270
62
|
Migrating to CreateBitCoreSlideshows (20140417173056)
|
271
|
-
[1m[36m (0.
|
272
|
-
|
273
|
-
[1m[
|
274
|
-
[1m[
|
63
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
64
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
65
|
+
[1m[35m (3.0ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
66
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
67
|
+
[1m[35m (0.4ms)[0m COMMIT
|
275
68
|
Migrating to CreateBitCoreSlides (20140417174159)
|
276
|
-
[1m[36m (
|
277
|
-
|
278
|
-
[1m[
|
69
|
+
[1m[36m (11.5ms)[0m [1mBEGIN[0m
|
70
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
71
|
+
[1m[35m (14.3ms)[0m 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)
|
72
|
+
[1m[36m (1.9ms)[0m [1m ALTER TABLE bit_core_slides
|
279
73
|
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
280
74
|
DEFERRABLE INITIALLY IMMEDIATE
|
281
75
|
[0m
|
282
|
-
[1m[35m (
|
76
|
+
[1m[35m (1.9ms)[0m ALTER TABLE bit_core_slides
|
283
77
|
ADD CONSTRAINT fk_slideshows_slides
|
284
78
|
FOREIGN KEY (bit_core_slideshow_id)
|
285
79
|
REFERENCES bit_core_slideshows(id)
|
286
80
|
|
287
|
-
[1m[36mSQL (0.
|
81
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
82
|
+
[1m[35m (0.8ms)[0m COMMIT
|
83
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
84
|
+
[1m[36m (5.5ms)[0m [1mBEGIN[0m
|
85
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
86
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
87
|
+
[1m[35m (5.7ms)[0m COMMIT
|
88
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
89
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
90
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
91
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
92
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
93
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
94
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
95
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
96
|
+
[1m[35m (6.2ms)[0m COMMIT
|
97
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
98
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
99
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
100
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
101
|
+
[1m[35m (12.4ms)[0m COMMIT
|
102
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
103
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
104
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
105
|
+
[1m[35m (15.3ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
106
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
107
|
+
[1m[35m (6.4ms)[0m COMMIT
|
108
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
109
|
+
[1m[36m (5.8ms)[0m [1mBEGIN[0m
|
110
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
111
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_slideshows
|
112
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
113
|
+
FOREIGN KEY (arm_id)
|
114
|
+
REFERENCES arms(id)
|
115
|
+
[0m
|
116
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
117
|
+
[1m[36m (6.1ms)[0m [1mCOMMIT[0m
|
118
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
119
|
+
[1m[35m (0.3ms)[0m BEGIN
|
120
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
121
|
+
[1m[35m (0.7ms)[0m ALTER TABLE bit_core_tools
|
122
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
123
|
+
FOREIGN KEY (arm_id)
|
124
|
+
REFERENCES arms(id)
|
125
|
+
|
126
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
127
|
+
[1m[35m (10.8ms)[0m COMMIT
|
128
|
+
Migrating to AddTypeToTools (20150130155627)
|
129
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
130
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
131
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
132
|
+
[1m[35m (6.1ms)[0m COMMIT
|
133
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
134
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
135
|
+
[1m[35m (14.5ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
136
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
137
|
+
[1m[35m (1.6ms)[0m COMMIT
|
138
|
+
Migrating to AddToolConstraint (20150210161229)
|
139
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
140
|
+
[1m[35mBitCore::Tool Load (0.4ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
141
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_tools
|
142
|
+
ADD CONSTRAINT fk_tools_arms
|
143
|
+
FOREIGN KEY (arm_id)
|
144
|
+
REFERENCES arms(id)
|
145
|
+
[0m
|
146
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
147
|
+
[1m[36m (6.2ms)[0m [1mCOMMIT[0m
|
148
|
+
Migrating to UpdateShowNextNavColumnDefault (20160311210938)
|
149
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
150
|
+
[1m[35m (1.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
151
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
152
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
153
|
+
[1m[35m (0.2ms)[0m BEGIN
|
154
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
155
|
+
[1m[36m (4.4ms)[0m [1mCREATE 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
|
156
|
+
[1m[35m (1.5ms)[0m ALTER TABLE bit_core_tools
|
157
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
158
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
159
|
+
|
160
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
288
161
|
[1m[35m (0.7ms)[0m COMMIT
|
289
|
-
|
290
|
-
[1m[
|
162
|
+
Migrating to CreateBitCoreContentModules (20140415211458)
|
163
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
164
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
165
|
+
[1m[35m (3.0ms)[0m 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)
|
166
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_modules
|
167
|
+
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
168
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
169
|
+
[0m
|
170
|
+
[1m[35m (1.1ms)[0m ALTER TABLE bit_core_content_modules
|
171
|
+
ADD CONSTRAINT fk_content_modules_tools
|
172
|
+
FOREIGN KEY (bit_core_tool_id)
|
173
|
+
REFERENCES bit_core_tools(id)
|
174
|
+
|
175
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
176
|
+
[1m[35m (0.7ms)[0m COMMIT
|
177
|
+
Migrating to CreateBitCoreContentProviders (20140415213346)
|
178
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
179
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
180
|
+
[1m[35m (2.8ms)[0m 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)
|
181
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_content_providers
|
182
|
+
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
183
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
184
|
+
[0m
|
185
|
+
[1m[35m (0.9ms)[0m ALTER TABLE bit_core_content_providers
|
186
|
+
ADD CONSTRAINT fk_content_providers_modules
|
187
|
+
FOREIGN KEY (bit_core_content_module_id)
|
188
|
+
REFERENCES bit_core_content_modules(id)
|
189
|
+
|
190
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
191
|
+
[1m[35m (0.6ms)[0m COMMIT
|
192
|
+
Migrating to CreateBitCoreSlideshows (20140417173056)
|
193
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
194
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
195
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
196
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
197
|
+
[1m[35m (0.6ms)[0m COMMIT
|
198
|
+
Migrating to CreateBitCoreSlides (20140417174159)
|
199
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
200
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
201
|
+
[1m[35m (3.0ms)[0m 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)
|
202
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_slides
|
203
|
+
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
204
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
205
|
+
[0m
|
206
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_slides
|
207
|
+
ADD CONSTRAINT fk_slideshows_slides
|
208
|
+
FOREIGN KEY (bit_core_slideshow_id)
|
209
|
+
REFERENCES bit_core_slideshows(id)
|
210
|
+
|
211
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
212
|
+
[1m[35m (0.7ms)[0m COMMIT
|
213
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
214
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
215
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
216
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
217
|
+
[1m[35m (0.3ms)[0m COMMIT
|
218
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
219
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
220
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
221
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
222
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
223
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
224
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
225
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
226
|
+
[1m[35m (0.3ms)[0m COMMIT
|
227
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
228
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
229
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
230
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
231
|
+
[1m[35m (0.4ms)[0m COMMIT
|
232
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
233
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
234
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
235
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
236
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
237
|
+
[1m[35m (0.5ms)[0m COMMIT
|
238
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
239
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
240
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
241
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_slideshows
|
242
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
243
|
+
FOREIGN KEY (arm_id)
|
244
|
+
REFERENCES arms(id)
|
245
|
+
[0m
|
246
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
247
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
248
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
249
|
+
[1m[35m (0.1ms)[0m BEGIN
|
250
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
251
|
+
[1m[35m (0.8ms)[0m ALTER TABLE bit_core_tools
|
252
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
253
|
+
FOREIGN KEY (arm_id)
|
254
|
+
REFERENCES arms(id)
|
255
|
+
|
256
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
257
|
+
[1m[35m (0.4ms)[0m COMMIT
|
258
|
+
Migrating to AddTypeToTools (20150130155627)
|
259
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
260
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
261
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
262
|
+
[1m[35m (0.4ms)[0m COMMIT
|
263
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
264
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
265
|
+
[1m[35m (4.0ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
266
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
267
|
+
[1m[35m (0.9ms)[0m COMMIT
|
268
|
+
Migrating to AddToolConstraint (20150210161229)
|
269
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
270
|
+
[1m[35mBitCore::Tool Load (0.4ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
271
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_tools
|
272
|
+
ADD CONSTRAINT fk_tools_arms
|
273
|
+
FOREIGN KEY (arm_id)
|
274
|
+
REFERENCES arms(id)
|
275
|
+
[0m
|
276
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
277
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
278
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
279
|
+
[1m[35m (0.1ms)[0m BEGIN
|
280
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT 'f'[0m
|
281
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160311210938"]]
|
282
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
283
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
284
|
+
[1m[36m (2.5ms)[0m [1mSELECT 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
|
285
|
+
FROM pg_constraint c
|
286
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
287
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
288
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
289
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
290
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
291
|
+
WHERE c.contype = 'f'
|
292
|
+
AND t1.relname = 'arms'
|
293
|
+
AND t3.nspname = ANY (current_schemas(false))
|
294
|
+
ORDER BY c.conname
|
295
|
+
[0m
|
296
|
+
[1m[35m (2.3ms)[0m 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
|
297
|
+
FROM pg_constraint c
|
298
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
299
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
300
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
301
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
302
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
303
|
+
WHERE c.contype = 'f'
|
304
|
+
AND t1.relname = 'bit_core_content_modules'
|
305
|
+
AND t3.nspname = ANY (current_schemas(false))
|
306
|
+
ORDER BY c.conname
|
307
|
+
|
308
|
+
[1m[36m (2.6ms)[0m [1mSELECT 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
|
309
|
+
FROM pg_constraint c
|
310
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
311
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
312
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
313
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
314
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
315
|
+
WHERE c.contype = 'f'
|
316
|
+
AND t1.relname = 'bit_core_content_providers'
|
317
|
+
AND t3.nspname = ANY (current_schemas(false))
|
318
|
+
ORDER BY c.conname
|
319
|
+
[0m
|
320
|
+
[1m[35m (1.7ms)[0m 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
|
321
|
+
FROM pg_constraint c
|
322
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
323
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
324
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
325
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
326
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
327
|
+
WHERE c.contype = 'f'
|
328
|
+
AND t1.relname = 'bit_core_slides'
|
329
|
+
AND t3.nspname = ANY (current_schemas(false))
|
330
|
+
ORDER BY c.conname
|
331
|
+
|
332
|
+
[1m[36m (1.7ms)[0m [1mSELECT 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
|
333
|
+
FROM pg_constraint c
|
334
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
335
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
336
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
337
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
338
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
339
|
+
WHERE c.contype = 'f'
|
340
|
+
AND t1.relname = 'bit_core_slideshows'
|
341
|
+
AND t3.nspname = ANY (current_schemas(false))
|
342
|
+
ORDER BY c.conname
|
343
|
+
[0m
|
344
|
+
[1m[35m (1.7ms)[0m 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
|
345
|
+
FROM pg_constraint c
|
346
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
347
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
348
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
349
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
350
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
351
|
+
WHERE c.contype = 'f'
|
352
|
+
AND t1.relname = 'bit_core_tools'
|
353
|
+
AND t3.nspname = ANY (current_schemas(false))
|
354
|
+
ORDER BY c.conname
|
355
|
+
|
356
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
291
357
|
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
292
|
-
|
293
|
-
[1m[
|
294
|
-
[1m[
|
295
|
-
[1m[
|
296
|
-
[1m[
|
297
|
-
[1m[
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
[1m[35m (
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
[1m[
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
[1m[35m (
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
[1m[
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
[1m[35m (
|
358
|
-
|
358
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
359
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
360
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
361
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
362
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
363
|
+
[1m[36m (2.4ms)[0m [1mSELECT 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
|
364
|
+
FROM pg_constraint c
|
365
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
366
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
367
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
368
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
369
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
370
|
+
WHERE c.contype = 'f'
|
371
|
+
AND t1.relname = 'arms'
|
372
|
+
AND t3.nspname = ANY (current_schemas(false))
|
373
|
+
ORDER BY c.conname
|
374
|
+
[0m
|
375
|
+
[1m[35m (2.0ms)[0m 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
|
376
|
+
FROM pg_constraint c
|
377
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
378
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
379
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
380
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
381
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
382
|
+
WHERE c.contype = 'f'
|
383
|
+
AND t1.relname = 'bit_core_content_modules'
|
384
|
+
AND t3.nspname = ANY (current_schemas(false))
|
385
|
+
ORDER BY c.conname
|
386
|
+
|
387
|
+
[1m[36m (3.7ms)[0m [1mSELECT 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
|
388
|
+
FROM pg_constraint c
|
389
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
390
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
391
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
392
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
393
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
394
|
+
WHERE c.contype = 'f'
|
395
|
+
AND t1.relname = 'bit_core_content_providers'
|
396
|
+
AND t3.nspname = ANY (current_schemas(false))
|
397
|
+
ORDER BY c.conname
|
398
|
+
[0m
|
399
|
+
[1m[35m (2.6ms)[0m 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
|
400
|
+
FROM pg_constraint c
|
401
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
402
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
403
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
404
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
405
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
406
|
+
WHERE c.contype = 'f'
|
407
|
+
AND t1.relname = 'bit_core_slides'
|
408
|
+
AND t3.nspname = ANY (current_schemas(false))
|
409
|
+
ORDER BY c.conname
|
410
|
+
|
411
|
+
[1m[36m (2.4ms)[0m [1mSELECT 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
|
412
|
+
FROM pg_constraint c
|
413
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
414
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
415
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
416
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
417
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
418
|
+
WHERE c.contype = 'f'
|
419
|
+
AND t1.relname = 'bit_core_slideshows'
|
420
|
+
AND t3.nspname = ANY (current_schemas(false))
|
421
|
+
ORDER BY c.conname
|
422
|
+
[0m
|
423
|
+
[1m[35m (1.7ms)[0m 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
|
424
|
+
FROM pg_constraint c
|
425
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
426
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
427
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
428
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
429
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
430
|
+
WHERE c.contype = 'f'
|
431
|
+
AND t1.relname = 'bit_core_tools'
|
432
|
+
AND t3.nspname = ANY (current_schemas(false))
|
433
|
+
ORDER BY c.conname
|
434
|
+
|
435
|
+
[1m[36m (5.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
436
|
+
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
437
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
359
438
|
Migrating to CreateBitCoreTools (20140415210052)
|
360
|
-
[1m[35m (0.
|
361
|
-
|
362
|
-
[1m[
|
439
|
+
[1m[35m (0.1ms)[0m BEGIN
|
440
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
441
|
+
[1m[36m (14.9ms)[0m [1mCREATE 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
|
442
|
+
[1m[35m (6.9ms)[0m ALTER TABLE bit_core_tools
|
363
443
|
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
364
444
|
DEFERRABLE INITIALLY IMMEDIATE
|
365
445
|
|
366
|
-
[1m[36mSQL (0.
|
446
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
447
|
+
[1m[35m (5.4ms)[0m COMMIT
|
448
|
+
Migrating to CreateBitCoreContentModules (20140415211458)
|
449
|
+
[1m[36m (5.7ms)[0m [1mBEGIN[0m
|
450
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
451
|
+
[1m[35m (19.7ms)[0m 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)
|
452
|
+
[1m[36m (1.1ms)[0m [1m ALTER TABLE bit_core_content_modules
|
453
|
+
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
454
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
455
|
+
[0m
|
456
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_content_modules
|
457
|
+
ADD CONSTRAINT fk_content_modules_tools
|
458
|
+
FOREIGN KEY (bit_core_tool_id)
|
459
|
+
REFERENCES bit_core_tools(id)
|
460
|
+
|
461
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
367
462
|
[1m[35m (0.6ms)[0m COMMIT
|
463
|
+
Migrating to CreateBitCoreContentProviders (20140415213346)
|
464
|
+
[1m[36m (6.0ms)[0m [1mBEGIN[0m
|
465
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
466
|
+
[1m[35m (19.6ms)[0m 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)
|
467
|
+
[1m[36m (1.2ms)[0m [1m ALTER TABLE bit_core_content_providers
|
468
|
+
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
469
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
470
|
+
[0m
|
471
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_content_providers
|
472
|
+
ADD CONSTRAINT fk_content_providers_modules
|
473
|
+
FOREIGN KEY (bit_core_content_module_id)
|
474
|
+
REFERENCES bit_core_content_modules(id)
|
475
|
+
|
476
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
477
|
+
[1m[35m (0.5ms)[0m COMMIT
|
478
|
+
Migrating to CreateBitCoreSlideshows (20140417173056)
|
479
|
+
[1m[36m (6.0ms)[0m [1mBEGIN[0m
|
480
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
481
|
+
[1m[35m (18.7ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
482
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
483
|
+
[1m[35m (0.5ms)[0m COMMIT
|
484
|
+
Migrating to CreateBitCoreSlides (20140417174159)
|
485
|
+
[1m[36m (5.9ms)[0m [1mBEGIN[0m
|
486
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
487
|
+
[1m[35m (19.6ms)[0m 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)
|
488
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_slides
|
489
|
+
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
490
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
491
|
+
[0m
|
492
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_slides
|
493
|
+
ADD CONSTRAINT fk_slideshows_slides
|
494
|
+
FOREIGN KEY (bit_core_slideshow_id)
|
495
|
+
REFERENCES bit_core_slideshows(id)
|
496
|
+
|
497
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
498
|
+
[1m[35m (0.5ms)[0m COMMIT
|
499
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
500
|
+
[1m[36m (5.4ms)[0m [1mBEGIN[0m
|
501
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
502
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
503
|
+
[1m[35m (10.7ms)[0m COMMIT
|
504
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
505
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
506
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
507
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
508
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
509
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
510
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
511
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
512
|
+
[1m[35m (6.2ms)[0m COMMIT
|
513
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
514
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
515
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
516
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
517
|
+
[1m[35m (6.0ms)[0m COMMIT
|
518
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
519
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
520
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
521
|
+
[1m[35m (20.3ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
522
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
523
|
+
[1m[35m (5.2ms)[0m COMMIT
|
524
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
525
|
+
[1m[36m (6.0ms)[0m [1mBEGIN[0m
|
526
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
527
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_slideshows
|
528
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
529
|
+
FOREIGN KEY (arm_id)
|
530
|
+
REFERENCES arms(id)
|
531
|
+
[0m
|
532
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
533
|
+
[1m[36m (6.0ms)[0m [1mCOMMIT[0m
|
534
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
535
|
+
[1m[35m (0.1ms)[0m BEGIN
|
536
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
537
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_tools
|
538
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
539
|
+
FOREIGN KEY (arm_id)
|
540
|
+
REFERENCES arms(id)
|
541
|
+
|
542
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
543
|
+
[1m[35m (6.0ms)[0m COMMIT
|
544
|
+
Migrating to AddTypeToTools (20150130155627)
|
545
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
546
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
547
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
548
|
+
[1m[35m (11.4ms)[0m COMMIT
|
549
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
550
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
551
|
+
[1m[35m (21.8ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
552
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
553
|
+
[1m[35m (1.2ms)[0m COMMIT
|
554
|
+
Migrating to AddToolConstraint (20150210161229)
|
555
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
556
|
+
[1m[35mBitCore::Tool Load (0.4ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
557
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_tools
|
558
|
+
ADD CONSTRAINT fk_tools_arms
|
559
|
+
FOREIGN KEY (arm_id)
|
560
|
+
REFERENCES arms(id)
|
561
|
+
[0m
|
562
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
563
|
+
[1m[36m (6.1ms)[0m [1mCOMMIT[0m
|
564
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
565
|
+
[1m[35m (0.1ms)[0m BEGIN
|
566
|
+
[1m[36m (34.1ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
|
567
|
+
:from:
|
568
|
+
:to: false
|
569
|
+
'[0m
|
570
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
571
|
+
[1m[36m (3.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
572
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
573
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
574
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
575
|
+
[1m[35m (0.2ms)[0m BEGIN
|
576
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
577
|
+
[1m[36m (3.8ms)[0m [1mCREATE 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
|
578
|
+
[1m[35m (1.4ms)[0m ALTER TABLE bit_core_tools
|
579
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
580
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
581
|
+
|
582
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
583
|
+
[1m[35m (0.8ms)[0m COMMIT
|
368
584
|
Migrating to CreateBitCoreContentModules (20140415211458)
|
369
|
-
[1m[36m (0.
|
370
|
-
|
371
|
-
[1m[
|
585
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
586
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
587
|
+
[1m[35m (2.8ms)[0m 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)
|
588
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_content_modules
|
372
589
|
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
373
590
|
DEFERRABLE INITIALLY IMMEDIATE
|
374
591
|
[0m
|
375
|
-
[1m[35m (
|
592
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_content_modules
|
376
593
|
ADD CONSTRAINT fk_content_modules_tools
|
377
594
|
FOREIGN KEY (bit_core_tool_id)
|
378
595
|
REFERENCES bit_core_tools(id)
|
379
596
|
|
380
|
-
[1m[36mSQL (0.
|
381
|
-
[1m[35m (0.
|
597
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
598
|
+
[1m[35m (0.6ms)[0m COMMIT
|
382
599
|
Migrating to CreateBitCoreContentProviders (20140415213346)
|
383
|
-
[1m[36m (0.
|
384
|
-
|
385
|
-
[1m[
|
600
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
601
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
602
|
+
[1m[35m (3.3ms)[0m 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)
|
603
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_providers
|
386
604
|
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
387
605
|
DEFERRABLE INITIALLY IMMEDIATE
|
388
606
|
[0m
|
389
|
-
[1m[35m (
|
607
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_content_providers
|
390
608
|
ADD CONSTRAINT fk_content_providers_modules
|
391
609
|
FOREIGN KEY (bit_core_content_module_id)
|
392
610
|
REFERENCES bit_core_content_modules(id)
|
393
611
|
|
394
|
-
[1m[36mSQL (0.
|
612
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
613
|
+
[1m[35m (0.5ms)[0m COMMIT
|
614
|
+
Migrating to CreateBitCoreSlideshows (20140417173056)
|
615
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
616
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
617
|
+
[1m[35m (4.1ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
618
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
619
|
+
[1m[35m (0.5ms)[0m COMMIT
|
620
|
+
Migrating to CreateBitCoreSlides (20140417174159)
|
621
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
622
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
623
|
+
[1m[35m (2.9ms)[0m 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)
|
624
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_slides
|
625
|
+
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
626
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
627
|
+
[0m
|
628
|
+
[1m[35m (0.9ms)[0m ALTER TABLE bit_core_slides
|
629
|
+
ADD CONSTRAINT fk_slideshows_slides
|
630
|
+
FOREIGN KEY (bit_core_slideshow_id)
|
631
|
+
REFERENCES bit_core_slideshows(id)
|
632
|
+
|
633
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
634
|
+
[1m[35m (0.5ms)[0m COMMIT
|
635
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
636
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
637
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
638
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
639
|
+
[1m[35m (0.3ms)[0m COMMIT
|
640
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
641
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
642
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
643
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
644
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
645
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
646
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
647
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
648
|
+
[1m[35m (0.3ms)[0m COMMIT
|
649
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
650
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
651
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
652
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
653
|
+
[1m[35m (0.3ms)[0m COMMIT
|
654
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
655
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
656
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
657
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
658
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
659
|
+
[1m[35m (0.4ms)[0m COMMIT
|
660
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
661
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
662
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
663
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_slideshows
|
664
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
665
|
+
FOREIGN KEY (arm_id)
|
666
|
+
REFERENCES arms(id)
|
667
|
+
[0m
|
668
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
669
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
670
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
671
|
+
[1m[35m (0.1ms)[0m BEGIN
|
672
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
673
|
+
[1m[35m (0.9ms)[0m ALTER TABLE bit_core_tools
|
674
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
675
|
+
FOREIGN KEY (arm_id)
|
676
|
+
REFERENCES arms(id)
|
677
|
+
|
678
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
679
|
+
[1m[35m (0.3ms)[0m COMMIT
|
680
|
+
Migrating to AddTypeToTools (20150130155627)
|
681
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
682
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
683
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
684
|
+
[1m[35m (0.3ms)[0m COMMIT
|
685
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
686
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
687
|
+
[1m[35m (3.9ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
688
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
689
|
+
[1m[35m (0.9ms)[0m COMMIT
|
690
|
+
Migrating to AddToolConstraint (20150210161229)
|
691
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
692
|
+
[1m[35mBitCore::Tool Load (0.5ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
693
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_tools
|
694
|
+
ADD CONSTRAINT fk_tools_arms
|
695
|
+
FOREIGN KEY (arm_id)
|
696
|
+
REFERENCES arms(id)
|
697
|
+
[0m
|
698
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
699
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
700
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
701
|
+
[1m[35m (0.1ms)[0m BEGIN
|
702
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
|
703
|
+
:from:
|
704
|
+
:to: false
|
705
|
+
'[0m
|
706
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
707
|
+
[1m[36m (3.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
708
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
709
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
710
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
711
|
+
[1m[35m (0.1ms)[0m BEGIN
|
712
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
713
|
+
[1m[36m (3.4ms)[0m [1mCREATE 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
|
714
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_tools
|
715
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
716
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
717
|
+
|
718
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
719
|
+
[1m[35m (0.8ms)[0m COMMIT
|
720
|
+
Migrating to CreateBitCoreContentModules (20140415211458)
|
721
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
722
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
723
|
+
[1m[35m (2.9ms)[0m 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)
|
724
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_content_modules
|
725
|
+
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
726
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
727
|
+
[0m
|
728
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_content_modules
|
729
|
+
ADD CONSTRAINT fk_content_modules_tools
|
730
|
+
FOREIGN KEY (bit_core_tool_id)
|
731
|
+
REFERENCES bit_core_tools(id)
|
732
|
+
|
733
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
734
|
+
[1m[35m (0.6ms)[0m COMMIT
|
735
|
+
Migrating to CreateBitCoreContentProviders (20140415213346)
|
736
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
737
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
738
|
+
[1m[35m (2.7ms)[0m 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)
|
739
|
+
[1m[36m (1.1ms)[0m [1m ALTER TABLE bit_core_content_providers
|
740
|
+
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
741
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
742
|
+
[0m
|
743
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_content_providers
|
744
|
+
ADD CONSTRAINT fk_content_providers_modules
|
745
|
+
FOREIGN KEY (bit_core_content_module_id)
|
746
|
+
REFERENCES bit_core_content_modules(id)
|
747
|
+
|
748
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
395
749
|
[1m[35m (0.6ms)[0m COMMIT
|
396
750
|
Migrating to CreateBitCoreSlideshows (20140417173056)
|
397
|
-
[1m[36m (0.
|
398
|
-
|
399
|
-
[1m[
|
751
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
752
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
753
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
754
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
755
|
+
[1m[35m (0.4ms)[0m COMMIT
|
756
|
+
Migrating to CreateBitCoreSlides (20140417174159)
|
757
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
758
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
759
|
+
[1m[35m (3.1ms)[0m 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)
|
760
|
+
[1m[36m (1.3ms)[0m [1m ALTER TABLE bit_core_slides
|
761
|
+
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
762
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
763
|
+
[0m
|
764
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_slides
|
765
|
+
ADD CONSTRAINT fk_slideshows_slides
|
766
|
+
FOREIGN KEY (bit_core_slideshow_id)
|
767
|
+
REFERENCES bit_core_slideshows(id)
|
768
|
+
|
769
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
770
|
+
[1m[35m (0.6ms)[0m COMMIT
|
771
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
772
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
773
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
774
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
775
|
+
[1m[35m (0.3ms)[0m COMMIT
|
776
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
777
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
778
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
779
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
780
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
781
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
782
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
783
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
784
|
+
[1m[35m (0.5ms)[0m COMMIT
|
785
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
786
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
787
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
788
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
789
|
+
[1m[35m (0.3ms)[0m COMMIT
|
790
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
791
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
792
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
793
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
794
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
795
|
+
[1m[35m (0.5ms)[0m COMMIT
|
796
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
797
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
798
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
799
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_slideshows
|
800
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
801
|
+
FOREIGN KEY (arm_id)
|
802
|
+
REFERENCES arms(id)
|
803
|
+
[0m
|
804
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
805
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
806
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
807
|
+
[1m[35m (0.1ms)[0m BEGIN
|
808
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
809
|
+
[1m[35m (0.8ms)[0m ALTER TABLE bit_core_tools
|
810
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
811
|
+
FOREIGN KEY (arm_id)
|
812
|
+
REFERENCES arms(id)
|
813
|
+
|
814
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
815
|
+
[1m[35m (0.3ms)[0m COMMIT
|
816
|
+
Migrating to AddTypeToTools (20150130155627)
|
817
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
818
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
819
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
820
|
+
[1m[35m (0.3ms)[0m COMMIT
|
821
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
822
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
823
|
+
[1m[35m (4.0ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
824
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
825
|
+
[1m[35m (0.9ms)[0m COMMIT
|
826
|
+
Migrating to AddToolConstraint (20150210161229)
|
827
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
828
|
+
[1m[35mBitCore::Tool Load (0.5ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
829
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_tools
|
830
|
+
ADD CONSTRAINT fk_tools_arms
|
831
|
+
FOREIGN KEY (arm_id)
|
832
|
+
REFERENCES arms(id)
|
833
|
+
[0m
|
834
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
835
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
836
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
837
|
+
[1m[35m (0.1ms)[0m BEGIN
|
838
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
|
839
|
+
:from:
|
840
|
+
:to: false
|
841
|
+
'[0m
|
842
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
843
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
844
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
845
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
846
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
847
|
+
[1m[35m (0.2ms)[0m BEGIN
|
848
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
849
|
+
[1m[36m (3.5ms)[0m [1mCREATE 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
|
850
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_tools
|
851
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
852
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
853
|
+
|
854
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
855
|
+
[1m[35m (0.7ms)[0m COMMIT
|
856
|
+
Migrating to CreateBitCoreContentModules (20140415211458)
|
857
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
858
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
859
|
+
[1m[35m (2.8ms)[0m 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)
|
860
|
+
[1m[36m (0.7ms)[0m [1m ALTER TABLE bit_core_content_modules
|
861
|
+
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
862
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
863
|
+
[0m
|
864
|
+
[1m[35m (1.1ms)[0m ALTER TABLE bit_core_content_modules
|
865
|
+
ADD CONSTRAINT fk_content_modules_tools
|
866
|
+
FOREIGN KEY (bit_core_tool_id)
|
867
|
+
REFERENCES bit_core_tools(id)
|
868
|
+
|
869
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
870
|
+
[1m[35m (0.6ms)[0m COMMIT
|
871
|
+
Migrating to CreateBitCoreContentProviders (20140415213346)
|
872
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
873
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
874
|
+
[1m[35m (3.8ms)[0m 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)
|
875
|
+
[1m[36m (1.1ms)[0m [1m ALTER TABLE bit_core_content_providers
|
876
|
+
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
877
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
878
|
+
[0m
|
879
|
+
[1m[35m (1.1ms)[0m ALTER TABLE bit_core_content_providers
|
880
|
+
ADD CONSTRAINT fk_content_providers_modules
|
881
|
+
FOREIGN KEY (bit_core_content_module_id)
|
882
|
+
REFERENCES bit_core_content_modules(id)
|
883
|
+
|
884
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
885
|
+
[1m[35m (0.5ms)[0m COMMIT
|
886
|
+
Migrating to CreateBitCoreSlideshows (20140417173056)
|
887
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
888
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
889
|
+
[1m[35m (4.8ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
890
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
400
891
|
[1m[35m (0.5ms)[0m COMMIT
|
401
892
|
Migrating to CreateBitCoreSlides (20140417174159)
|
402
|
-
[1m[36m (0.
|
403
|
-
|
404
|
-
[1m[
|
893
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
894
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
895
|
+
[1m[35m (3.7ms)[0m 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)
|
896
|
+
[1m[36m (1.3ms)[0m [1m ALTER TABLE bit_core_slides
|
405
897
|
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
406
898
|
DEFERRABLE INITIALLY IMMEDIATE
|
407
899
|
[0m
|
408
|
-
[1m[35m (
|
900
|
+
[1m[35m (1.7ms)[0m ALTER TABLE bit_core_slides
|
409
901
|
ADD CONSTRAINT fk_slideshows_slides
|
410
902
|
FOREIGN KEY (bit_core_slideshow_id)
|
411
903
|
REFERENCES bit_core_slideshows(id)
|
412
904
|
|
413
|
-
[1m[36mSQL (0.
|
905
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
906
|
+
[1m[35m (0.6ms)[0m COMMIT
|
907
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
908
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
909
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
910
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
911
|
+
[1m[35m (0.4ms)[0m COMMIT
|
912
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
913
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
914
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
915
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
916
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
917
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
918
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
919
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
920
|
+
[1m[35m (0.3ms)[0m COMMIT
|
921
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
922
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
923
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
924
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
925
|
+
[1m[35m (0.3ms)[0m COMMIT
|
926
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
927
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
928
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
929
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
930
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
931
|
+
[1m[35m (0.4ms)[0m COMMIT
|
932
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
933
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
934
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
935
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_slideshows
|
936
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
937
|
+
FOREIGN KEY (arm_id)
|
938
|
+
REFERENCES arms(id)
|
939
|
+
[0m
|
940
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
941
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
942
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
943
|
+
[1m[35m (0.1ms)[0m BEGIN
|
944
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
945
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_tools
|
946
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
947
|
+
FOREIGN KEY (arm_id)
|
948
|
+
REFERENCES arms(id)
|
949
|
+
|
950
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
951
|
+
[1m[35m (0.3ms)[0m COMMIT
|
952
|
+
Migrating to AddTypeToTools (20150130155627)
|
953
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
954
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
955
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
956
|
+
[1m[35m (0.3ms)[0m COMMIT
|
957
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
958
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
959
|
+
[1m[35m (4.0ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
960
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
414
961
|
[1m[35m (0.8ms)[0m COMMIT
|
415
|
-
|
416
|
-
[1m[36m (
|
417
|
-
[1m[
|
418
|
-
[1m[
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
[1m[
|
424
|
-
[1m[36m (
|
425
|
-
|
426
|
-
[1m[
|
427
|
-
[1m[
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
[1m[35m (0.
|
432
|
-
[1m[36m (
|
433
|
-
[1m[35m (
|
434
|
-
[1m[
|
435
|
-
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140417173056')
|
436
|
-
[1m[36m (4.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
437
|
-
[1m[35m (2.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
438
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
962
|
+
Migrating to AddToolConstraint (20150210161229)
|
963
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
964
|
+
[1m[35mBitCore::Tool Load (0.5ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
965
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_tools
|
966
|
+
ADD CONSTRAINT fk_tools_arms
|
967
|
+
FOREIGN KEY (arm_id)
|
968
|
+
REFERENCES arms(id)
|
969
|
+
[0m
|
970
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
971
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
972
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
973
|
+
[1m[35m (0.1ms)[0m BEGIN
|
974
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
|
975
|
+
:from:
|
976
|
+
:to: false
|
977
|
+
'[0m
|
978
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
979
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
980
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
981
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
439
982
|
Migrating to CreateBitCoreTools (20140415210052)
|
440
|
-
[1m[35m (0.
|
441
|
-
|
442
|
-
[1m[
|
983
|
+
[1m[35m (0.1ms)[0m BEGIN
|
984
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
985
|
+
[1m[36m (3.6ms)[0m [1mCREATE 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
|
986
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_tools
|
443
987
|
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
444
988
|
DEFERRABLE INITIALLY IMMEDIATE
|
445
989
|
|
446
|
-
[1m[36mSQL (0.
|
990
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
991
|
+
[1m[35m (0.7ms)[0m COMMIT
|
992
|
+
Migrating to CreateBitCoreContentModules (20140415211458)
|
993
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
994
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
995
|
+
[1m[35m (2.9ms)[0m 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)
|
996
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_modules
|
997
|
+
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
998
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
999
|
+
[0m
|
1000
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_content_modules
|
1001
|
+
ADD CONSTRAINT fk_content_modules_tools
|
1002
|
+
FOREIGN KEY (bit_core_tool_id)
|
1003
|
+
REFERENCES bit_core_tools(id)
|
1004
|
+
|
1005
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
447
1006
|
[1m[35m (0.6ms)[0m COMMIT
|
1007
|
+
Migrating to CreateBitCoreContentProviders (20140415213346)
|
1008
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1009
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
1010
|
+
[1m[35m (2.8ms)[0m 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)
|
1011
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_providers
|
1012
|
+
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
1013
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1014
|
+
[0m
|
1015
|
+
[1m[35m (0.9ms)[0m ALTER TABLE bit_core_content_providers
|
1016
|
+
ADD CONSTRAINT fk_content_providers_modules
|
1017
|
+
FOREIGN KEY (bit_core_content_module_id)
|
1018
|
+
REFERENCES bit_core_content_modules(id)
|
1019
|
+
|
1020
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
1021
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1022
|
+
Migrating to CreateBitCoreSlideshows (20140417173056)
|
1023
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1024
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
1025
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
1026
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
1027
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1028
|
+
Migrating to CreateBitCoreSlides (20140417174159)
|
1029
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1030
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
1031
|
+
[1m[35m (3.1ms)[0m 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)
|
1032
|
+
[1m[36m (0.7ms)[0m [1m ALTER TABLE bit_core_slides
|
1033
|
+
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
1034
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1035
|
+
[0m
|
1036
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_slides
|
1037
|
+
ADD CONSTRAINT fk_slideshows_slides
|
1038
|
+
FOREIGN KEY (bit_core_slideshow_id)
|
1039
|
+
REFERENCES bit_core_slideshows(id)
|
1040
|
+
|
1041
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
1042
|
+
[1m[35m (0.6ms)[0m COMMIT
|
1043
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
1044
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1045
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
1046
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
1047
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1048
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
1049
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1050
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
1051
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
1052
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
1053
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
1054
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
1055
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
1056
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1057
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
1058
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1059
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
1060
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
1061
|
+
[1m[35m (0.4ms)[0m COMMIT
|
1062
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
1063
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1064
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
1065
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
1066
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
1067
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1068
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
1069
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1070
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
1071
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_slideshows
|
1072
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
1073
|
+
FOREIGN KEY (arm_id)
|
1074
|
+
REFERENCES arms(id)
|
1075
|
+
[0m
|
1076
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
1077
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
1078
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
1079
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1080
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
1081
|
+
[1m[35m (0.8ms)[0m ALTER TABLE bit_core_tools
|
1082
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
1083
|
+
FOREIGN KEY (arm_id)
|
1084
|
+
REFERENCES arms(id)
|
1085
|
+
|
1086
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
1087
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1088
|
+
Migrating to AddTypeToTools (20150130155627)
|
1089
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1090
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
1091
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
1092
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1093
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
1094
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1095
|
+
[1m[35m (4.1ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
1096
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
1097
|
+
[1m[35m (0.9ms)[0m COMMIT
|
1098
|
+
Migrating to AddToolConstraint (20150210161229)
|
1099
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1100
|
+
[1m[35mBitCore::Tool Load (0.5ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
1101
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_tools
|
1102
|
+
ADD CONSTRAINT fk_tools_arms
|
1103
|
+
FOREIGN KEY (arm_id)
|
1104
|
+
REFERENCES arms(id)
|
1105
|
+
[0m
|
1106
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
1107
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
1108
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
1109
|
+
[1m[36m (9.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
1110
|
+
[1m[35m (2.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1111
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1112
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
1113
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1114
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
1115
|
+
[1m[36m (3.7ms)[0m [1mCREATE 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
|
1116
|
+
[1m[35m (1.3ms)[0m ALTER TABLE bit_core_tools
|
1117
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
1118
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1119
|
+
|
1120
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
1121
|
+
[1m[35m (0.7ms)[0m COMMIT
|
448
1122
|
Migrating to CreateBitCoreContentModules (20140415211458)
|
449
|
-
[1m[36m (0.
|
450
|
-
|
451
|
-
[1m[
|
1123
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1124
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
1125
|
+
[1m[35m (3.2ms)[0m 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)
|
1126
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_content_modules
|
452
1127
|
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
453
1128
|
DEFERRABLE INITIALLY IMMEDIATE
|
454
1129
|
[0m
|
455
|
-
[1m[35m (
|
1130
|
+
[1m[35m (1.3ms)[0m ALTER TABLE bit_core_content_modules
|
456
1131
|
ADD CONSTRAINT fk_content_modules_tools
|
457
1132
|
FOREIGN KEY (bit_core_tool_id)
|
458
1133
|
REFERENCES bit_core_tools(id)
|
459
1134
|
|
460
|
-
[1m[36mSQL (0.
|
1135
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
1136
|
+
[1m[35m (0.7ms)[0m COMMIT
|
1137
|
+
Migrating to CreateBitCoreContentProviders (20140415213346)
|
1138
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1139
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
1140
|
+
[1m[35m (3.0ms)[0m 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)
|
1141
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_content_providers
|
1142
|
+
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
1143
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1144
|
+
[0m
|
1145
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_content_providers
|
1146
|
+
ADD CONSTRAINT fk_content_providers_modules
|
1147
|
+
FOREIGN KEY (bit_core_content_module_id)
|
1148
|
+
REFERENCES bit_core_content_modules(id)
|
1149
|
+
|
1150
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
1151
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1152
|
+
Migrating to CreateBitCoreSlideshows (20140417173056)
|
1153
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1154
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
1155
|
+
[1m[35m (3.5ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
1156
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
1157
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1158
|
+
Migrating to CreateBitCoreSlides (20140417174159)
|
1159
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
1160
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
1161
|
+
[1m[35m (3.6ms)[0m 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)
|
1162
|
+
[1m[36m (1.2ms)[0m [1m ALTER TABLE bit_core_slides
|
1163
|
+
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
1164
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1165
|
+
[0m
|
1166
|
+
[1m[35m (1.4ms)[0m ALTER TABLE bit_core_slides
|
1167
|
+
ADD CONSTRAINT fk_slideshows_slides
|
1168
|
+
FOREIGN KEY (bit_core_slideshow_id)
|
1169
|
+
REFERENCES bit_core_slideshows(id)
|
1170
|
+
|
1171
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
461
1172
|
[1m[35m (0.6ms)[0m COMMIT
|
1173
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
1174
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1175
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
1176
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
1177
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1178
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
1179
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1180
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
1181
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
1182
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
1183
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
1184
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
1185
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
1186
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1187
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
1188
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1189
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
1190
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
1191
|
+
[1m[35m (0.4ms)[0m COMMIT
|
1192
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
1193
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1194
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
1195
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
1196
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
1197
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1198
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
1199
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1200
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
1201
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_slideshows
|
1202
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
1203
|
+
FOREIGN KEY (arm_id)
|
1204
|
+
REFERENCES arms(id)
|
1205
|
+
[0m
|
1206
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
1207
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
1208
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
1209
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1210
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
1211
|
+
[1m[35m (0.8ms)[0m ALTER TABLE bit_core_tools
|
1212
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
1213
|
+
FOREIGN KEY (arm_id)
|
1214
|
+
REFERENCES arms(id)
|
1215
|
+
|
1216
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
1217
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1218
|
+
Migrating to AddTypeToTools (20150130155627)
|
1219
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1220
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
1221
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
1222
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1223
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
1224
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1225
|
+
[1m[35m (4.1ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
1226
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
1227
|
+
[1m[35m (1.0ms)[0m COMMIT
|
1228
|
+
Migrating to AddToolConstraint (20150210161229)
|
1229
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1230
|
+
[1m[35mBitCore::Tool Load (0.4ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
1231
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_tools
|
1232
|
+
ADD CONSTRAINT fk_tools_arms
|
1233
|
+
FOREIGN KEY (arm_id)
|
1234
|
+
REFERENCES arms(id)
|
1235
|
+
[0m
|
1236
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
1237
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
1238
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
1239
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1240
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
|
1241
|
+
:from:
|
1242
|
+
:to: false
|
1243
|
+
'[0m
|
1244
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1245
|
+
[1m[36m (5.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
1246
|
+
[1m[35m (17.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1247
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1248
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
1249
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1250
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
1251
|
+
[1m[36m (3.6ms)[0m [1mCREATE 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
|
1252
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_tools
|
1253
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
1254
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1255
|
+
|
1256
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
1257
|
+
[1m[35m (0.8ms)[0m COMMIT
|
1258
|
+
Migrating to CreateBitCoreContentModules (20140415211458)
|
1259
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1260
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
1261
|
+
[1m[35m (3.2ms)[0m 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)
|
1262
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_content_modules
|
1263
|
+
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
1264
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1265
|
+
[0m
|
1266
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_content_modules
|
1267
|
+
ADD CONSTRAINT fk_content_modules_tools
|
1268
|
+
FOREIGN KEY (bit_core_tool_id)
|
1269
|
+
REFERENCES bit_core_tools(id)
|
1270
|
+
|
1271
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
1272
|
+
[1m[35m (0.7ms)[0m COMMIT
|
462
1273
|
Migrating to CreateBitCoreContentProviders (20140415213346)
|
463
|
-
[1m[36m (0.
|
464
|
-
|
465
|
-
[1m[
|
1274
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1275
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
1276
|
+
[1m[35m (2.9ms)[0m 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)
|
1277
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_providers
|
466
1278
|
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
467
1279
|
DEFERRABLE INITIALLY IMMEDIATE
|
468
1280
|
[0m
|
469
|
-
[1m[35m (
|
1281
|
+
[1m[35m (1.0ms)[0m ALTER TABLE bit_core_content_providers
|
470
1282
|
ADD CONSTRAINT fk_content_providers_modules
|
471
1283
|
FOREIGN KEY (bit_core_content_module_id)
|
472
1284
|
REFERENCES bit_core_content_modules(id)
|
@@ -474,124 +1286,303 @@ Migrating to CreateBitCoreContentProviders (20140415213346)
|
|
474
1286
|
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
475
1287
|
[1m[35m (0.6ms)[0m COMMIT
|
476
1288
|
Migrating to CreateBitCoreSlideshows (20140417173056)
|
477
|
-
[1m[36m (0.
|
478
|
-
|
1289
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
1290
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
1291
|
+
[1m[35m (3.5ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
1292
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
1293
|
+
[1m[35m (0.4ms)[0m COMMIT
|
1294
|
+
Migrating to CreateBitCoreSlides (20140417174159)
|
1295
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1296
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
1297
|
+
[1m[35m (8.0ms)[0m 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)
|
1298
|
+
[1m[36m (4.1ms)[0m [1m ALTER TABLE bit_core_slides
|
1299
|
+
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
1300
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1301
|
+
[0m
|
1302
|
+
[1m[35m (1.6ms)[0m ALTER TABLE bit_core_slides
|
1303
|
+
ADD CONSTRAINT fk_slideshows_slides
|
1304
|
+
FOREIGN KEY (bit_core_slideshow_id)
|
1305
|
+
REFERENCES bit_core_slideshows(id)
|
1306
|
+
|
1307
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
1308
|
+
[1m[35m (1.1ms)[0m COMMIT
|
1309
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
1310
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
1311
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
1312
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
1313
|
+
[1m[35m (0.4ms)[0m COMMIT
|
1314
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
1315
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1316
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
1317
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
1318
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
1319
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
1320
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
1321
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
1322
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1323
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
1324
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1325
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
1326
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
1327
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1328
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
1329
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1330
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
1331
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
1332
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
1333
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1334
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
1335
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1336
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
1337
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_slideshows
|
1338
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
1339
|
+
FOREIGN KEY (arm_id)
|
1340
|
+
REFERENCES arms(id)
|
1341
|
+
[0m
|
1342
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
1343
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
1344
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
1345
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1346
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
1347
|
+
[1m[35m (0.8ms)[0m ALTER TABLE bit_core_tools
|
1348
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
1349
|
+
FOREIGN KEY (arm_id)
|
1350
|
+
REFERENCES arms(id)
|
1351
|
+
|
1352
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
1353
|
+
[1m[35m (0.4ms)[0m COMMIT
|
1354
|
+
Migrating to AddTypeToTools (20150130155627)
|
1355
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1356
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
1357
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
1358
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1359
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
1360
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1361
|
+
[1m[35m (4.2ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
1362
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
1363
|
+
[1m[35m (0.9ms)[0m COMMIT
|
1364
|
+
Migrating to AddToolConstraint (20150210161229)
|
1365
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1366
|
+
[1m[35mBitCore::Tool Load (0.4ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
1367
|
+
[1m[36m (1.0ms)[0m [1m ALTER TABLE bit_core_tools
|
1368
|
+
ADD CONSTRAINT fk_tools_arms
|
1369
|
+
FOREIGN KEY (arm_id)
|
1370
|
+
REFERENCES arms(id)
|
1371
|
+
[0m
|
1372
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
1373
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
1374
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
1375
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1376
|
+
[1m[36m (1.0ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
|
1377
|
+
:from:
|
1378
|
+
:to: false
|
1379
|
+
'[0m
|
1380
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1381
|
+
[1m[36m (3.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
1382
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1383
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1384
|
+
Migrating to CreateBitCoreTools (20140415210052)
|
1385
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1386
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415210052_create_bit_core_tools.rb:7)
|
1387
|
+
[1m[36m (3.8ms)[0m [1mCREATE 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
|
1388
|
+
[1m[35m (1.3ms)[0m ALTER TABLE bit_core_tools
|
1389
|
+
ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
|
1390
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1391
|
+
|
1392
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415210052"]]
|
1393
|
+
[1m[35m (0.7ms)[0m COMMIT
|
1394
|
+
Migrating to CreateBitCoreContentModules (20140415211458)
|
1395
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1396
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415211458_create_bit_core_content_modules.rb:8)
|
1397
|
+
[1m[35m (3.0ms)[0m 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)
|
1398
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_modules
|
1399
|
+
ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
|
1400
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1401
|
+
[0m
|
1402
|
+
[1m[35m (1.2ms)[0m ALTER TABLE bit_core_content_modules
|
1403
|
+
ADD CONSTRAINT fk_content_modules_tools
|
1404
|
+
FOREIGN KEY (bit_core_tool_id)
|
1405
|
+
REFERENCES bit_core_tools(id)
|
1406
|
+
|
1407
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415211458"]]
|
1408
|
+
[1m[35m (0.6ms)[0m COMMIT
|
1409
|
+
Migrating to CreateBitCoreContentProviders (20140415213346)
|
1410
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1411
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140415213346_create_bit_core_content_providers.rb:10)
|
1412
|
+
[1m[35m (3.2ms)[0m 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)
|
1413
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_content_providers
|
1414
|
+
ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
|
1415
|
+
DEFERRABLE INITIALLY IMMEDIATE
|
1416
|
+
[0m
|
1417
|
+
[1m[35m (0.9ms)[0m ALTER TABLE bit_core_content_providers
|
1418
|
+
ADD CONSTRAINT fk_content_providers_modules
|
1419
|
+
FOREIGN KEY (bit_core_content_module_id)
|
1420
|
+
REFERENCES bit_core_content_modules(id)
|
1421
|
+
|
1422
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140415213346"]]
|
1423
|
+
[1m[35m (0.6ms)[0m COMMIT
|
1424
|
+
Migrating to CreateBitCoreSlideshows (20140417173056)
|
1425
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1426
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417173056_create_bit_core_slideshows.rb:6)
|
1427
|
+
[1m[35m (3.0ms)[0m CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
479
1428
|
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417173056"]]
|
480
1429
|
[1m[35m (0.5ms)[0m COMMIT
|
481
1430
|
Migrating to CreateBitCoreSlides (20140417174159)
|
482
|
-
[1m[36m (0.
|
483
|
-
|
484
|
-
[1m[
|
1431
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1432
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20140417174159_create_bit_core_slides.rb:11)
|
1433
|
+
[1m[35m (3.1ms)[0m 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)
|
1434
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_slides
|
485
1435
|
ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
|
486
1436
|
DEFERRABLE INITIALLY IMMEDIATE
|
487
1437
|
[0m
|
488
|
-
[1m[35m (
|
1438
|
+
[1m[35m (1.3ms)[0m ALTER TABLE bit_core_slides
|
489
1439
|
ADD CONSTRAINT fk_slideshows_slides
|
490
1440
|
FOREIGN KEY (bit_core_slideshow_id)
|
491
1441
|
REFERENCES bit_core_slideshows(id)
|
492
1442
|
|
493
|
-
[1m[36mSQL (0.
|
494
|
-
[1m[35m (0.
|
495
|
-
|
496
|
-
[1m[36m (
|
497
|
-
[1m[35m (
|
498
|
-
[1m[36mSQL (0.
|
499
|
-
[1m[35m (
|
500
|
-
|
501
|
-
[1m[
|
502
|
-
[1m[
|
503
|
-
[1m[
|
504
|
-
[1m[
|
505
|
-
[1m[
|
506
|
-
[1m[
|
507
|
-
[1m[
|
508
|
-
[1m[
|
509
|
-
|
510
|
-
[1m[36m (0.
|
511
|
-
[1m[35m (0.
|
512
|
-
[1m[
|
513
|
-
[1m[35m (0.
|
514
|
-
|
515
|
-
[1m[
|
516
|
-
|
517
|
-
[1m[35m (
|
518
|
-
[1m[36mSQL (0.
|
519
|
-
[1m[35m (
|
520
|
-
|
521
|
-
[1m[
|
522
|
-
[1m[
|
523
|
-
[1m[
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
[1m[
|
529
|
-
[1m[
|
530
|
-
|
531
|
-
[1m[35m (0.
|
532
|
-
[1m[36m (0.
|
533
|
-
[1m[35m (0.
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
[1m[36mSQL (0.
|
539
|
-
[1m[35m (
|
540
|
-
|
541
|
-
[1m[
|
542
|
-
[1m[
|
543
|
-
[1m[
|
544
|
-
[1m[
|
545
|
-
|
546
|
-
[1m[36m (
|
547
|
-
[1m[35m (
|
548
|
-
[1m[
|
549
|
-
[1m[35m (
|
550
|
-
|
551
|
-
[1m[
|
552
|
-
[1m[
|
553
|
-
[1m[
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
[1m[
|
559
|
-
[1m[
|
560
|
-
|
561
|
-
[1m[35m (
|
562
|
-
[1m[36m (
|
563
|
-
[1m[35m (
|
564
|
-
[1m[
|
565
|
-
[1m[35m (
|
566
|
-
[1m[
|
567
|
-
[1m[35m (
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
[1m[
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
[1m[35m (
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
1443
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140417174159"]]
|
1444
|
+
[1m[35m (0.7ms)[0m COMMIT
|
1445
|
+
Migrating to AddOptionsToSlides (20140620174146)
|
1446
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1447
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_slides" ADD "options" text
|
1448
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174146"]]
|
1449
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1450
|
+
Migrating to AddConfigFieldsToProviders (20140620174147)
|
1451
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1452
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
|
1453
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying[0m
|
1454
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
|
1455
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean[0m
|
1456
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ADD "locals" text
|
1457
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140620174147"]]
|
1458
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1459
|
+
Migrating to AddTypeToContentModules (20140625133118)
|
1460
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1461
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_modules" ADD "type" character varying
|
1462
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140625133118"]]
|
1463
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1464
|
+
Migrating to CreateBitCoreArms (20141205202720)
|
1465
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1466
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/bit_core/db/migrate/20141205202720_create_bit_core_arms.rb:7)
|
1467
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
|
1468
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202720"]]
|
1469
|
+
[1m[35m (0.5ms)[0m COMMIT
|
1470
|
+
Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
|
1471
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1472
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
|
1473
|
+
[1m[36m (0.8ms)[0m [1m ALTER TABLE bit_core_slideshows
|
1474
|
+
ADD CONSTRAINT fk_bit_core_slideshows_arms
|
1475
|
+
FOREIGN KEY (arm_id)
|
1476
|
+
REFERENCES arms(id)
|
1477
|
+
[0m
|
1478
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
|
1479
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
1480
|
+
Migrating to AddArmIdToBitCoreTools (20141205202740)
|
1481
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1482
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL[0m
|
1483
|
+
[1m[35m (0.7ms)[0m ALTER TABLE bit_core_tools
|
1484
|
+
ADD CONSTRAINT fk_bit_core_tools_arms
|
1485
|
+
FOREIGN KEY (arm_id)
|
1486
|
+
REFERENCES arms(id)
|
1487
|
+
|
1488
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141205202740"]]
|
1489
|
+
[1m[35m (0.4ms)[0m COMMIT
|
1490
|
+
Migrating to AddTypeToTools (20150130155627)
|
1491
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1492
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "bit_core_tools" ADD "type" character varying
|
1493
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150130155627"]]
|
1494
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1495
|
+
Migrating to AddIsVizToContentModules (20150131195914)
|
1496
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1497
|
+
[1m[35m (4.1ms)[0m ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
|
1498
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150131195914"]]
|
1499
|
+
[1m[35m (0.9ms)[0m COMMIT
|
1500
|
+
Migrating to AddToolConstraint (20150210161229)
|
1501
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1502
|
+
[1m[35mBitCore::Tool Load (0.5ms)[0m SELECT "bit_core_tools".* FROM "bit_core_tools"
|
1503
|
+
[1m[36m (0.9ms)[0m [1m ALTER TABLE bit_core_tools
|
1504
|
+
ADD CONSTRAINT fk_tools_arms
|
1505
|
+
FOREIGN KEY (arm_id)
|
1506
|
+
REFERENCES arms(id)
|
1507
|
+
[0m
|
1508
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
|
1509
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
1510
|
+
Migrating to ChangeShowNextNavColumnDefault (20160311210938)
|
1511
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1512
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT 'f'[0m
|
1513
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "bit_core_content_providers" ALTER "show_next_nav" SET NOT NULL
|
1514
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160311210938"]]
|
1515
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1516
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1517
|
+
[1m[35m (2.2ms)[0m 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
|
1518
|
+
FROM pg_constraint c
|
1519
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1520
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1521
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1522
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1523
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1524
|
+
WHERE c.contype = 'f'
|
1525
|
+
AND t1.relname = 'arms'
|
1526
|
+
AND t3.nspname = ANY (current_schemas(false))
|
1527
|
+
ORDER BY c.conname
|
1528
|
+
|
1529
|
+
[1m[36m (1.8ms)[0m [1mSELECT 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
|
1530
|
+
FROM pg_constraint c
|
1531
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1532
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1533
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1534
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1535
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1536
|
+
WHERE c.contype = 'f'
|
1537
|
+
AND t1.relname = 'bit_core_content_modules'
|
1538
|
+
AND t3.nspname = ANY (current_schemas(false))
|
1539
|
+
ORDER BY c.conname
|
1540
|
+
[0m
|
1541
|
+
[1m[35m (2.1ms)[0m 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
|
1542
|
+
FROM pg_constraint c
|
1543
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1544
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1545
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1546
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1547
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1548
|
+
WHERE c.contype = 'f'
|
1549
|
+
AND t1.relname = 'bit_core_content_providers'
|
1550
|
+
AND t3.nspname = ANY (current_schemas(false))
|
1551
|
+
ORDER BY c.conname
|
1552
|
+
|
1553
|
+
[1m[36m (1.8ms)[0m [1mSELECT 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
|
1554
|
+
FROM pg_constraint c
|
1555
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1556
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1557
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1558
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1559
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1560
|
+
WHERE c.contype = 'f'
|
1561
|
+
AND t1.relname = 'bit_core_slides'
|
1562
|
+
AND t3.nspname = ANY (current_schemas(false))
|
1563
|
+
ORDER BY c.conname
|
1564
|
+
[0m
|
1565
|
+
[1m[35m (1.9ms)[0m 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
|
1566
|
+
FROM pg_constraint c
|
1567
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1568
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1569
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1570
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1571
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1572
|
+
WHERE c.contype = 'f'
|
1573
|
+
AND t1.relname = 'bit_core_slideshows'
|
1574
|
+
AND t3.nspname = ANY (current_schemas(false))
|
1575
|
+
ORDER BY c.conname
|
1576
|
+
|
1577
|
+
[1m[36m (1.7ms)[0m [1mSELECT 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
|
1578
|
+
FROM pg_constraint c
|
1579
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1580
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1581
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1582
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1583
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1584
|
+
WHERE c.contype = 'f'
|
1585
|
+
AND t1.relname = 'bit_core_tools'
|
1586
|
+
AND t3.nspname = ANY (current_schemas(false))
|
1587
|
+
ORDER BY c.conname
|
1588
|
+
[0m
|