bit_core 1.4.6 → 1.4.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require "spec_helper"
2
3
 
3
4
  module BitCore
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require "spec_helper"
2
3
 
3
4
  module BitCore
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require "spec_helper"
2
3
 
3
4
  module BitCore
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require "spec_helper"
2
3
 
3
4
  module BitCore
@@ -12,13 +13,34 @@ module BitCore
12
13
  it "should render markdown as html" do
13
14
  subject.body = "# header"
14
15
 
15
- expect(subject.render_body).to match(/<h1>header<\/h1>/)
16
+ expect(subject.render_body).to match(%r{<h1>header<\/h1>})
16
17
  end
17
18
 
18
19
  it "should escape html" do
19
20
  subject.body = "<div>my content</div>"
20
21
 
21
- expect(subject.render_body).to match(/<p>my content<\/p>/)
22
+ expect(subject.render_body).to match(%r{<p>my content<\/p>})
23
+ end
24
+ end
25
+
26
+ describe "when validated" do
27
+ context "if the options attribute is present" do
28
+ it "normalizes it" do
29
+ hashable = Struct.new("Hashable", :to_h).new("foo": "bar")
30
+ subject.options = hashable
31
+ subject.valid?
32
+
33
+ expect(subject.options).to eq("foo": "bar")
34
+ end
35
+ end
36
+
37
+ context "if the options attribute isn't present" do
38
+ it "leaves it as nil" do
39
+ subject.options = nil
40
+ subject.valid?
41
+
42
+ expect(subject.options).to be_nil
43
+ end
22
44
  end
23
45
  end
24
46
 
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require "spec_helper"
2
3
 
3
4
  module BitCore
@@ -1,16 +1,17 @@
1
+ # frozen_string_literal: true
1
2
  ENV["RAILS_ENV"] ||= "test"
2
3
 
3
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
4
5
  require "rspec/rails"
5
6
 
6
7
  Rails.backtrace_cleaner.remove_silencers!
7
8
 
8
9
  # Load support files
9
- Dir["#{ File.dirname(__FILE__) }/support/**/*.rb"].each { |f| require f }
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
10
11
 
11
12
  RSpec.configure do |config|
12
13
  config.mock_with :rspec
13
- config.fixture_path = "#{ File.dirname(__FILE__) }/fixtures"
14
+ config.fixture_path = "#{File.dirname(__FILE__)}/fixtures"
14
15
  config.use_transactional_fixtures = true
15
16
  config.infer_base_class_for_anonymous_controllers = false
16
17
  config.order = "random"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bit_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.6
4
+ version: 1.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Carty-Fickes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-04 00:00:00.000000000 Z
11
+ date: 2016-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redcarpet
@@ -78,6 +78,20 @@ dependencies:
78
78
  - - "~>"
79
79
  - !ruby/object:Gem::Version
80
80
  version: '3.0'
81
+ - !ruby/object:Gem::Dependency
82
+ name: rubocop
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - '='
86
+ - !ruby/object:Gem::Version
87
+ version: '0.40'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - '='
93
+ - !ruby/object:Gem::Version
94
+ version: '0.40'
81
95
  description: Models, migrations, etc.
82
96
  email:
83
97
  - ericcf@northwestern.edu
@@ -150,7 +164,6 @@ files:
150
164
  - spec/dummy/config/routes.rb
151
165
  - spec/dummy/config/secrets.yml
152
166
  - spec/dummy/db/schema.rb
153
- - spec/dummy/log/development.log
154
167
  - spec/dummy/log/test.log
155
168
  - spec/dummy/public/404.html
156
169
  - spec/dummy/public/422.html
@@ -168,7 +181,7 @@ files:
168
181
  - spec/models/bit_core/slide_spec.rb
169
182
  - spec/models/bit_core/slideshow_spec.rb
170
183
  - spec/spec_helper.rb
171
- homepage: https://github.com/nupmmarkbegale/bit_core
184
+ homepage: https://github.com/NU-CBITS/bit_core
172
185
  licenses:
173
186
  - MIT
174
187
  metadata: {}
@@ -188,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
188
201
  version: '0'
189
202
  requirements: []
190
203
  rubyforge_project:
191
- rubygems_version: 2.4.6
204
+ rubygems_version: 2.6.4
192
205
  signing_key:
193
206
  specification_version: 4
194
207
  summary: Shared models and business logic for bit apps.
@@ -220,7 +233,6 @@ test_files:
220
233
  - spec/dummy/config/secrets.yml
221
234
  - spec/dummy/config.ru
222
235
  - spec/dummy/db/schema.rb
223
- - spec/dummy/log/development.log
224
236
  - spec/dummy/log/test.log
225
237
  - spec/dummy/public/404.html
226
238
  - spec/dummy/public/422.html
@@ -1,1588 +0,0 @@
1
- ActiveRecord::SchemaMigration Load (27.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
- Migrating to CreateBitCoreTools (20140415210052)
3
-  (0.1ms) 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
-  (35.9ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
6
-  (0.2ms) ROLLBACK
7
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
- Migrating to CreateBitCoreTools (20140415210052)
9
-  (0.2ms) 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
-  (4.1ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
12
-  (0.1ms) ROLLBACK
13
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
- Migrating to CreateBitCoreTools (20140415210052)
15
-  (0.1ms) 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
-  (2.9ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
18
-  (0.1ms) ROLLBACK
19
-  (3.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
20
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
- Migrating to CreateBitCoreTools (20140415210052)
23
-  (0.2ms) 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
-  (3.8ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
26
-  (1.4ms) ALTER TABLE bit_core_tools
27
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
28
- DEFERRABLE INITIALLY IMMEDIATE
29
-
30
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
31
-  (5.3ms) COMMIT
32
- Migrating to CreateBitCoreContentModules (20140415211458)
33
-  (5.5ms) BEGIN
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
-  (19.2ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
36
-  (1.0ms)  ALTER TABLE bit_core_content_modules
37
- ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
38
- DEFERRABLE INITIALLY IMMEDIATE
39
- 
40
-  (1.4ms) ALTER TABLE bit_core_content_modules
41
- ADD CONSTRAINT fk_content_modules_tools
42
- FOREIGN KEY (bit_core_tool_id)
43
- REFERENCES bit_core_tools(id)
44
-
45
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
46
-  (0.6ms) COMMIT
47
- Migrating to CreateBitCoreContentProviders (20140415213346)
48
-  (5.8ms) BEGIN
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
-  (18.9ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)
51
-  (0.9ms)  ALTER TABLE bit_core_content_providers
52
- ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
53
- DEFERRABLE INITIALLY IMMEDIATE
54
- 
55
-  (1.1ms) ALTER TABLE bit_core_content_providers
56
- ADD CONSTRAINT fk_content_providers_modules
57
- FOREIGN KEY (bit_core_content_module_id)
58
- REFERENCES bit_core_content_modules(id)
59
-
60
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
61
-  (0.7ms) COMMIT
62
- Migrating to CreateBitCoreSlideshows (20140417173056)
63
-  (0.2ms) BEGIN
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
-  (3.0ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
66
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
67
-  (0.4ms) COMMIT
68
- Migrating to CreateBitCoreSlides (20140417174159)
69
-  (11.5ms) BEGIN
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
-  (14.3ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
72
-  (1.9ms)  ALTER TABLE bit_core_slides
73
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
74
- DEFERRABLE INITIALLY IMMEDIATE
75
- 
76
-  (1.9ms) ALTER TABLE bit_core_slides
77
- ADD CONSTRAINT fk_slideshows_slides
78
- FOREIGN KEY (bit_core_slideshow_id)
79
- REFERENCES bit_core_slideshows(id)
80
-
81
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
82
-  (0.8ms) COMMIT
83
- Migrating to AddOptionsToSlides (20140620174146)
84
-  (5.5ms) BEGIN
85
-  (0.4ms) ALTER TABLE "bit_core_slides" ADD "options" text
86
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
87
-  (5.7ms) COMMIT
88
- Migrating to AddConfigFieldsToProviders (20140620174147)
89
-  (0.1ms) BEGIN
90
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
91
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
92
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
93
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
94
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
95
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
96
-  (6.2ms) COMMIT
97
- Migrating to AddTypeToContentModules (20140625133118)
98
-  (0.1ms) BEGIN
99
-  (0.4ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
100
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
101
-  (12.4ms) COMMIT
102
- Migrating to CreateBitCoreArms (20141205202720)
103
-  (0.2ms) BEGIN
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
-  (15.3ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
106
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
107
-  (6.4ms) COMMIT
108
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
109
-  (5.8ms) BEGIN
110
-  (0.5ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
111
-  (0.9ms)  ALTER TABLE bit_core_slideshows
112
- ADD CONSTRAINT fk_bit_core_slideshows_arms
113
- FOREIGN KEY (arm_id)
114
- REFERENCES arms(id)
115
- 
116
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
117
-  (6.1ms) COMMIT
118
- Migrating to AddArmIdToBitCoreTools (20141205202740)
119
-  (0.3ms) BEGIN
120
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
121
-  (0.7ms) ALTER TABLE bit_core_tools
122
- ADD CONSTRAINT fk_bit_core_tools_arms
123
- FOREIGN KEY (arm_id)
124
- REFERENCES arms(id)
125
-
126
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
127
-  (10.8ms) COMMIT
128
- Migrating to AddTypeToTools (20150130155627)
129
-  (0.2ms) BEGIN
130
-  (0.5ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
131
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
132
-  (6.1ms) COMMIT
133
- Migrating to AddIsVizToContentModules (20150131195914)
134
-  (0.1ms) BEGIN
135
-  (14.5ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
136
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
137
-  (1.6ms) COMMIT
138
- Migrating to AddToolConstraint (20150210161229)
139
-  (0.2ms) BEGIN
140
- BitCore::Tool Load (0.4ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
141
-  (0.8ms)  ALTER TABLE bit_core_tools
142
- ADD CONSTRAINT fk_tools_arms
143
- FOREIGN KEY (arm_id)
144
- REFERENCES arms(id)
145
- 
146
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
147
-  (6.2ms) COMMIT
148
- Migrating to UpdateShowNextNavColumnDefault (20160311210938)
149
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
150
-  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
151
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
152
- Migrating to CreateBitCoreTools (20140415210052)
153
-  (0.2ms) 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
-  (4.4ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
156
-  (1.5ms) ALTER TABLE bit_core_tools
157
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
158
- DEFERRABLE INITIALLY IMMEDIATE
159
-
160
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
161
-  (0.7ms) COMMIT
162
- Migrating to CreateBitCoreContentModules (20140415211458)
163
-  (0.2ms) BEGIN
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
-  (3.0ms) 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
-  (0.9ms)  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
- 
170
-  (1.1ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
176
-  (0.7ms) COMMIT
177
- Migrating to CreateBitCoreContentProviders (20140415213346)
178
-  (0.2ms) BEGIN
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
-  (2.8ms) 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
-  (0.8ms)  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
- 
185
-  (0.9ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
191
-  (0.6ms) COMMIT
192
- Migrating to CreateBitCoreSlideshows (20140417173056)
193
-  (0.2ms) BEGIN
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
-  (2.9ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
196
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
197
-  (0.6ms) COMMIT
198
- Migrating to CreateBitCoreSlides (20140417174159)
199
-  (0.2ms) BEGIN
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
-  (3.0ms) 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
-  (0.8ms)  ALTER TABLE bit_core_slides
203
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
204
- DEFERRABLE INITIALLY IMMEDIATE
205
- 
206
-  (1.0ms) 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
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
212
-  (0.7ms) COMMIT
213
- Migrating to AddOptionsToSlides (20140620174146)
214
-  (0.2ms) BEGIN
215
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
216
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
217
-  (0.3ms) COMMIT
218
- Migrating to AddConfigFieldsToProviders (20140620174147)
219
-  (0.1ms) BEGIN
220
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
221
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
222
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
223
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
224
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
225
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
226
-  (0.3ms) COMMIT
227
- Migrating to AddTypeToContentModules (20140625133118)
228
-  (0.1ms) BEGIN
229
-  (0.2ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
230
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
231
-  (0.4ms) COMMIT
232
- Migrating to CreateBitCoreArms (20141205202720)
233
-  (0.1ms) BEGIN
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
-  (3.2ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
236
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
237
-  (0.5ms) COMMIT
238
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
239
-  (0.1ms) BEGIN
240
-  (0.3ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
241
-  (1.0ms)  ALTER TABLE bit_core_slideshows
242
- ADD CONSTRAINT fk_bit_core_slideshows_arms
243
- FOREIGN KEY (arm_id)
244
- REFERENCES arms(id)
245
- 
246
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
247
-  (0.5ms) COMMIT
248
- Migrating to AddArmIdToBitCoreTools (20141205202740)
249
-  (0.1ms) BEGIN
250
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
251
-  (0.8ms) ALTER TABLE bit_core_tools
252
- ADD CONSTRAINT fk_bit_core_tools_arms
253
- FOREIGN KEY (arm_id)
254
- REFERENCES arms(id)
255
-
256
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
257
-  (0.4ms) COMMIT
258
- Migrating to AddTypeToTools (20150130155627)
259
-  (0.1ms) BEGIN
260
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
261
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
262
-  (0.4ms) COMMIT
263
- Migrating to AddIsVizToContentModules (20150131195914)
264
-  (0.1ms) BEGIN
265
-  (4.0ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
266
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
267
-  (0.9ms) COMMIT
268
- Migrating to AddToolConstraint (20150210161229)
269
-  (0.1ms) BEGIN
270
- BitCore::Tool Load (0.4ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
271
-  (1.0ms)  ALTER TABLE bit_core_tools
272
- ADD CONSTRAINT fk_tools_arms
273
- FOREIGN KEY (arm_id)
274
- REFERENCES arms(id)
275
- 
276
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
277
-  (0.3ms) COMMIT
278
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
279
-  (0.1ms) BEGIN
280
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT 'f'
281
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160311210938"]]
282
-  (0.3ms) COMMIT
283
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
284
-  (2.5ms) 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
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
- 
296
-  (2.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-  (2.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- 
320
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- 
344
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
357
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
358
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
359
-  (0.3ms) BEGIN
360
-  (0.2ms) ROLLBACK
361
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
362
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
363
-  (2.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- 
375
-  (2.0ms) 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
-  (3.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- 
399
-  (2.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-  (2.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- 
423
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-  (5.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
436
-  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
437
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
438
- Migrating to CreateBitCoreTools (20140415210052)
439
-  (0.1ms) 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
-  (14.9ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
442
-  (6.9ms) ALTER TABLE bit_core_tools
443
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
444
- DEFERRABLE INITIALLY IMMEDIATE
445
-
446
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
447
-  (5.4ms) COMMIT
448
- Migrating to CreateBitCoreContentModules (20140415211458)
449
-  (5.7ms) BEGIN
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
-  (19.7ms) 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
-  (1.1ms)  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
- 
456
-  (1.2ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
462
-  (0.6ms) COMMIT
463
- Migrating to CreateBitCoreContentProviders (20140415213346)
464
-  (6.0ms) BEGIN
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
-  (19.6ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)
467
-  (1.2ms)  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
- 
471
-  (1.0ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
477
-  (0.5ms) COMMIT
478
- Migrating to CreateBitCoreSlideshows (20140417173056)
479
-  (6.0ms) BEGIN
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
-  (18.7ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
482
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
483
-  (0.5ms) COMMIT
484
- Migrating to CreateBitCoreSlides (20140417174159)
485
-  (5.9ms) BEGIN
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
-  (19.6ms) 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
-  (0.9ms)  ALTER TABLE bit_core_slides
489
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
490
- DEFERRABLE INITIALLY IMMEDIATE
491
- 
492
-  (1.0ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
498
-  (0.5ms) COMMIT
499
- Migrating to AddOptionsToSlides (20140620174146)
500
-  (5.4ms) BEGIN
501
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
502
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
503
-  (10.7ms) COMMIT
504
- Migrating to AddConfigFieldsToProviders (20140620174147)
505
-  (0.1ms) BEGIN
506
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
507
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
508
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
509
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
510
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
511
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
512
-  (6.2ms) COMMIT
513
- Migrating to AddTypeToContentModules (20140625133118)
514
-  (0.1ms) BEGIN
515
-  (0.3ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
516
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
517
-  (6.0ms) COMMIT
518
- Migrating to CreateBitCoreArms (20141205202720)
519
-  (0.1ms) BEGIN
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
-  (20.3ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
522
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
523
-  (5.2ms) COMMIT
524
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
525
-  (6.0ms) BEGIN
526
-  (0.3ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
527
-  (0.9ms)  ALTER TABLE bit_core_slideshows
528
- ADD CONSTRAINT fk_bit_core_slideshows_arms
529
- FOREIGN KEY (arm_id)
530
- REFERENCES arms(id)
531
- 
532
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
533
-  (6.0ms) COMMIT
534
- Migrating to AddArmIdToBitCoreTools (20141205202740)
535
-  (0.1ms) BEGIN
536
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
537
-  (1.0ms) ALTER TABLE bit_core_tools
538
- ADD CONSTRAINT fk_bit_core_tools_arms
539
- FOREIGN KEY (arm_id)
540
- REFERENCES arms(id)
541
-
542
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
543
-  (6.0ms) COMMIT
544
- Migrating to AddTypeToTools (20150130155627)
545
-  (0.2ms) BEGIN
546
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
547
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
548
-  (11.4ms) COMMIT
549
- Migrating to AddIsVizToContentModules (20150131195914)
550
-  (0.2ms) BEGIN
551
-  (21.8ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
552
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
553
-  (1.2ms) COMMIT
554
- Migrating to AddToolConstraint (20150210161229)
555
-  (0.1ms) BEGIN
556
- BitCore::Tool Load (0.4ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
557
-  (0.9ms)  ALTER TABLE bit_core_tools
558
- ADD CONSTRAINT fk_tools_arms
559
- FOREIGN KEY (arm_id)
560
- REFERENCES arms(id)
561
- 
562
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
563
-  (6.1ms) COMMIT
564
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
565
-  (0.1ms) BEGIN
566
-  (34.1ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
567
- :from:
568
- :to: false
569
- '
570
-  (0.1ms) ROLLBACK
571
-  (3.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
572
-  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
573
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
574
- Migrating to CreateBitCoreTools (20140415210052)
575
-  (0.2ms) 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
-  (3.8ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
578
-  (1.4ms) ALTER TABLE bit_core_tools
579
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
580
- DEFERRABLE INITIALLY IMMEDIATE
581
-
582
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
583
-  (0.8ms) COMMIT
584
- Migrating to CreateBitCoreContentModules (20140415211458)
585
-  (0.2ms) BEGIN
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
-  (2.8ms) 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
-  (0.8ms)  ALTER TABLE bit_core_content_modules
589
- ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
590
- DEFERRABLE INITIALLY IMMEDIATE
591
- 
592
-  (1.2ms) ALTER TABLE bit_core_content_modules
593
- ADD CONSTRAINT fk_content_modules_tools
594
- FOREIGN KEY (bit_core_tool_id)
595
- REFERENCES bit_core_tools(id)
596
-
597
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
598
-  (0.6ms) COMMIT
599
- Migrating to CreateBitCoreContentProviders (20140415213346)
600
-  (0.2ms) BEGIN
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
-  (3.3ms) 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
-  (0.9ms)  ALTER TABLE bit_core_content_providers
604
- ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
605
- DEFERRABLE INITIALLY IMMEDIATE
606
- 
607
-  (1.0ms) ALTER TABLE bit_core_content_providers
608
- ADD CONSTRAINT fk_content_providers_modules
609
- FOREIGN KEY (bit_core_content_module_id)
610
- REFERENCES bit_core_content_modules(id)
611
-
612
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
613
-  (0.5ms) COMMIT
614
- Migrating to CreateBitCoreSlideshows (20140417173056)
615
-  (0.3ms) BEGIN
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
-  (4.1ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
618
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
619
-  (0.5ms) COMMIT
620
- Migrating to CreateBitCoreSlides (20140417174159)
621
-  (0.2ms) BEGIN
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
-  (2.9ms) 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
-  (0.8ms)  ALTER TABLE bit_core_slides
625
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
626
- DEFERRABLE INITIALLY IMMEDIATE
627
- 
628
-  (0.9ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
634
-  (0.5ms) COMMIT
635
- Migrating to AddOptionsToSlides (20140620174146)
636
-  (0.2ms) BEGIN
637
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
638
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
639
-  (0.3ms) COMMIT
640
- Migrating to AddConfigFieldsToProviders (20140620174147)
641
-  (0.1ms) BEGIN
642
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
643
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
644
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
645
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
646
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
647
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
648
-  (0.3ms) COMMIT
649
- Migrating to AddTypeToContentModules (20140625133118)
650
-  (0.1ms) BEGIN
651
-  (0.3ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
652
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
653
-  (0.3ms) COMMIT
654
- Migrating to CreateBitCoreArms (20141205202720)
655
-  (0.1ms) BEGIN
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
-  (2.7ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
658
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
659
-  (0.4ms) COMMIT
660
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
661
-  (0.2ms) BEGIN
662
-  (0.3ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
663
-  (1.0ms)  ALTER TABLE bit_core_slideshows
664
- ADD CONSTRAINT fk_bit_core_slideshows_arms
665
- FOREIGN KEY (arm_id)
666
- REFERENCES arms(id)
667
- 
668
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
669
-  (0.3ms) COMMIT
670
- Migrating to AddArmIdToBitCoreTools (20141205202740)
671
-  (0.1ms) BEGIN
672
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
673
-  (0.9ms) ALTER TABLE bit_core_tools
674
- ADD CONSTRAINT fk_bit_core_tools_arms
675
- FOREIGN KEY (arm_id)
676
- REFERENCES arms(id)
677
-
678
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
679
-  (0.3ms) COMMIT
680
- Migrating to AddTypeToTools (20150130155627)
681
-  (0.1ms) BEGIN
682
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
683
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
684
-  (0.3ms) COMMIT
685
- Migrating to AddIsVizToContentModules (20150131195914)
686
-  (0.1ms) BEGIN
687
-  (3.9ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
688
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
689
-  (0.9ms) COMMIT
690
- Migrating to AddToolConstraint (20150210161229)
691
-  (0.1ms) BEGIN
692
- BitCore::Tool Load (0.5ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
693
-  (0.8ms)  ALTER TABLE bit_core_tools
694
- ADD CONSTRAINT fk_tools_arms
695
- FOREIGN KEY (arm_id)
696
- REFERENCES arms(id)
697
- 
698
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
699
-  (0.6ms) COMMIT
700
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
701
-  (0.1ms) BEGIN
702
-  (0.4ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
703
- :from:
704
- :to: false
705
- '
706
-  (0.1ms) ROLLBACK
707
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
708
-  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
709
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
710
- Migrating to CreateBitCoreTools (20140415210052)
711
-  (0.1ms) 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
-  (3.4ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
714
-  (1.2ms) ALTER TABLE bit_core_tools
715
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
716
- DEFERRABLE INITIALLY IMMEDIATE
717
-
718
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
719
-  (0.8ms) COMMIT
720
- Migrating to CreateBitCoreContentModules (20140415211458)
721
-  (0.2ms) BEGIN
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
-  (2.9ms) 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
-  (0.8ms)  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
- 
728
-  (1.2ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
734
-  (0.6ms) COMMIT
735
- Migrating to CreateBitCoreContentProviders (20140415213346)
736
-  (0.2ms) BEGIN
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
-  (2.7ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)
739
-  (1.1ms)  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
- 
743
-  (1.0ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
749
-  (0.6ms) COMMIT
750
- Migrating to CreateBitCoreSlideshows (20140417173056)
751
-  (0.2ms) BEGIN
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
-  (2.7ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
754
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
755
-  (0.4ms) COMMIT
756
- Migrating to CreateBitCoreSlides (20140417174159)
757
-  (0.2ms) BEGIN
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
-  (3.1ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
760
-  (1.3ms)  ALTER TABLE bit_core_slides
761
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
762
- DEFERRABLE INITIALLY IMMEDIATE
763
- 
764
-  (1.0ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
770
-  (0.6ms) COMMIT
771
- Migrating to AddOptionsToSlides (20140620174146)
772
-  (0.2ms) BEGIN
773
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
774
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
775
-  (0.3ms) COMMIT
776
- Migrating to AddConfigFieldsToProviders (20140620174147)
777
-  (0.1ms) BEGIN
778
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
779
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
780
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
781
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
782
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
783
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
784
-  (0.5ms) COMMIT
785
- Migrating to AddTypeToContentModules (20140625133118)
786
-  (0.1ms) BEGIN
787
-  (0.2ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
788
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
789
-  (0.3ms) COMMIT
790
- Migrating to CreateBitCoreArms (20141205202720)
791
-  (0.1ms) BEGIN
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
-  (2.8ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
794
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
795
-  (0.5ms) COMMIT
796
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
797
-  (0.1ms) BEGIN
798
-  (0.3ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
799
-  (0.8ms)  ALTER TABLE bit_core_slideshows
800
- ADD CONSTRAINT fk_bit_core_slideshows_arms
801
- FOREIGN KEY (arm_id)
802
- REFERENCES arms(id)
803
- 
804
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
805
-  (0.4ms) COMMIT
806
- Migrating to AddArmIdToBitCoreTools (20141205202740)
807
-  (0.1ms) BEGIN
808
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
809
-  (0.8ms) ALTER TABLE bit_core_tools
810
- ADD CONSTRAINT fk_bit_core_tools_arms
811
- FOREIGN KEY (arm_id)
812
- REFERENCES arms(id)
813
-
814
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
815
-  (0.3ms) COMMIT
816
- Migrating to AddTypeToTools (20150130155627)
817
-  (0.1ms) BEGIN
818
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
819
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
820
-  (0.3ms) COMMIT
821
- Migrating to AddIsVizToContentModules (20150131195914)
822
-  (0.1ms) BEGIN
823
-  (4.0ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
824
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
825
-  (0.9ms) COMMIT
826
- Migrating to AddToolConstraint (20150210161229)
827
-  (0.1ms) BEGIN
828
- BitCore::Tool Load (0.5ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
829
-  (0.9ms)  ALTER TABLE bit_core_tools
830
- ADD CONSTRAINT fk_tools_arms
831
- FOREIGN KEY (arm_id)
832
- REFERENCES arms(id)
833
- 
834
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
835
-  (0.5ms) COMMIT
836
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
837
-  (0.1ms) BEGIN
838
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
839
- :from:
840
- :to: false
841
- '
842
-  (0.1ms) ROLLBACK
843
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
844
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
845
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
846
- Migrating to CreateBitCoreTools (20140415210052)
847
-  (0.2ms) 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
-  (3.5ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
850
-  (1.2ms) ALTER TABLE bit_core_tools
851
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
852
- DEFERRABLE INITIALLY IMMEDIATE
853
-
854
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
855
-  (0.7ms) COMMIT
856
- Migrating to CreateBitCoreContentModules (20140415211458)
857
-  (0.2ms) BEGIN
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
-  (2.8ms) 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
-  (0.7ms)  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
- 
864
-  (1.1ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
870
-  (0.6ms) COMMIT
871
- Migrating to CreateBitCoreContentProviders (20140415213346)
872
-  (0.2ms) BEGIN
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
-  (3.8ms) 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
-  (1.1ms)  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
- 
879
-  (1.1ms) 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
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
885
-  (0.5ms) COMMIT
886
- Migrating to CreateBitCoreSlideshows (20140417173056)
887
-  (0.2ms) BEGIN
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
-  (4.8ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
890
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
891
-  (0.5ms) COMMIT
892
- Migrating to CreateBitCoreSlides (20140417174159)
893
-  (0.3ms) BEGIN
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
-  (3.7ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
896
-  (1.3ms)  ALTER TABLE bit_core_slides
897
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
898
- DEFERRABLE INITIALLY IMMEDIATE
899
- 
900
-  (1.7ms) ALTER TABLE bit_core_slides
901
- ADD CONSTRAINT fk_slideshows_slides
902
- FOREIGN KEY (bit_core_slideshow_id)
903
- REFERENCES bit_core_slideshows(id)
904
-
905
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
906
-  (0.6ms) COMMIT
907
- Migrating to AddOptionsToSlides (20140620174146)
908
-  (0.2ms) BEGIN
909
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
910
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
911
-  (0.4ms) COMMIT
912
- Migrating to AddConfigFieldsToProviders (20140620174147)
913
-  (0.2ms) BEGIN
914
-  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
915
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
916
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
917
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
918
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
919
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
920
-  (0.3ms) COMMIT
921
- Migrating to AddTypeToContentModules (20140625133118)
922
-  (0.1ms) BEGIN
923
-  (0.3ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
924
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
925
-  (0.3ms) COMMIT
926
- Migrating to CreateBitCoreArms (20141205202720)
927
-  (0.1ms) BEGIN
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
-  (2.7ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
930
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
931
-  (0.4ms) COMMIT
932
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
933
-  (0.2ms) BEGIN
934
-  (0.3ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
935
-  (0.9ms)  ALTER TABLE bit_core_slideshows
936
- ADD CONSTRAINT fk_bit_core_slideshows_arms
937
- FOREIGN KEY (arm_id)
938
- REFERENCES arms(id)
939
- 
940
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
941
-  (0.3ms) COMMIT
942
- Migrating to AddArmIdToBitCoreTools (20141205202740)
943
-  (0.1ms) BEGIN
944
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
945
-  (1.0ms) ALTER TABLE bit_core_tools
946
- ADD CONSTRAINT fk_bit_core_tools_arms
947
- FOREIGN KEY (arm_id)
948
- REFERENCES arms(id)
949
-
950
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
951
-  (0.3ms) COMMIT
952
- Migrating to AddTypeToTools (20150130155627)
953
-  (0.1ms) BEGIN
954
-  (0.2ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
955
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
956
-  (0.3ms) COMMIT
957
- Migrating to AddIsVizToContentModules (20150131195914)
958
-  (0.1ms) BEGIN
959
-  (4.0ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
960
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
961
-  (0.8ms) COMMIT
962
- Migrating to AddToolConstraint (20150210161229)
963
-  (0.1ms) BEGIN
964
- BitCore::Tool Load (0.5ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
965
-  (0.9ms)  ALTER TABLE bit_core_tools
966
- ADD CONSTRAINT fk_tools_arms
967
- FOREIGN KEY (arm_id)
968
- REFERENCES arms(id)
969
- 
970
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
971
-  (0.3ms) COMMIT
972
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
973
-  (0.1ms) BEGIN
974
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
975
- :from:
976
- :to: false
977
- '
978
-  (0.1ms) ROLLBACK
979
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
980
-  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
981
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
982
- Migrating to CreateBitCoreTools (20140415210052)
983
-  (0.1ms) 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
-  (3.6ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
986
-  (1.2ms) ALTER TABLE bit_core_tools
987
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
988
- DEFERRABLE INITIALLY IMMEDIATE
989
-
990
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
991
-  (0.7ms) COMMIT
992
- Migrating to CreateBitCoreContentModules (20140415211458)
993
-  (0.2ms) BEGIN
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
-  (2.9ms) 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
-  (0.9ms)  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
- 
1000
-  (1.2ms) 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
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
1006
-  (0.6ms) COMMIT
1007
- Migrating to CreateBitCoreContentProviders (20140415213346)
1008
-  (0.2ms) BEGIN
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
-  (2.8ms) 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
-  (0.9ms)  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
- 
1015
-  (0.9ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
1021
-  (0.5ms) COMMIT
1022
- Migrating to CreateBitCoreSlideshows (20140417173056)
1023
-  (0.2ms) BEGIN
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
-  (2.8ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1026
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
1027
-  (0.5ms) COMMIT
1028
- Migrating to CreateBitCoreSlides (20140417174159)
1029
-  (0.2ms) BEGIN
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
-  (3.1ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1032
-  (0.7ms)  ALTER TABLE bit_core_slides
1033
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
1034
- DEFERRABLE INITIALLY IMMEDIATE
1035
- 
1036
-  (1.0ms) 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
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
1042
-  (0.6ms) COMMIT
1043
- Migrating to AddOptionsToSlides (20140620174146)
1044
-  (0.2ms) BEGIN
1045
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
1046
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
1047
-  (0.3ms) COMMIT
1048
- Migrating to AddConfigFieldsToProviders (20140620174147)
1049
-  (0.1ms) BEGIN
1050
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
1051
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
1052
-  (0.1ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
1053
-  (0.1ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
1054
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
1055
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
1056
-  (0.3ms) COMMIT
1057
- Migrating to AddTypeToContentModules (20140625133118)
1058
-  (0.1ms) BEGIN
1059
-  (0.3ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
1060
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
1061
-  (0.4ms) COMMIT
1062
- Migrating to CreateBitCoreArms (20141205202720)
1063
-  (0.2ms) BEGIN
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
-  (2.8ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
1066
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
1067
-  (0.5ms) COMMIT
1068
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
1069
-  (0.1ms) BEGIN
1070
-  (0.2ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
1071
-  (0.8ms)  ALTER TABLE bit_core_slideshows
1072
- ADD CONSTRAINT fk_bit_core_slideshows_arms
1073
- FOREIGN KEY (arm_id)
1074
- REFERENCES arms(id)
1075
- 
1076
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
1077
-  (0.5ms) COMMIT
1078
- Migrating to AddArmIdToBitCoreTools (20141205202740)
1079
-  (0.1ms) BEGIN
1080
-  (0.4ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
1081
-  (0.8ms) ALTER TABLE bit_core_tools
1082
- ADD CONSTRAINT fk_bit_core_tools_arms
1083
- FOREIGN KEY (arm_id)
1084
- REFERENCES arms(id)
1085
-
1086
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
1087
-  (0.3ms) COMMIT
1088
- Migrating to AddTypeToTools (20150130155627)
1089
-  (0.1ms) BEGIN
1090
-  (0.2ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
1091
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
1092
-  (0.5ms) COMMIT
1093
- Migrating to AddIsVizToContentModules (20150131195914)
1094
-  (0.1ms) BEGIN
1095
-  (4.1ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
1096
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
1097
-  (0.9ms) COMMIT
1098
- Migrating to AddToolConstraint (20150210161229)
1099
-  (0.1ms) BEGIN
1100
- BitCore::Tool Load (0.5ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
1101
-  (0.9ms)  ALTER TABLE bit_core_tools
1102
- ADD CONSTRAINT fk_tools_arms
1103
- FOREIGN KEY (arm_id)
1104
- REFERENCES arms(id)
1105
- 
1106
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
1107
-  (0.4ms) COMMIT
1108
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
1109
-  (9.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1110
-  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1111
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1112
- Migrating to CreateBitCoreTools (20140415210052)
1113
-  (0.1ms) 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
-  (3.7ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
1116
-  (1.3ms) ALTER TABLE bit_core_tools
1117
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
1118
- DEFERRABLE INITIALLY IMMEDIATE
1119
-
1120
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
1121
-  (0.7ms) COMMIT
1122
- Migrating to CreateBitCoreContentModules (20140415211458)
1123
-  (0.2ms) BEGIN
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
-  (3.2ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1126
-  (1.0ms)  ALTER TABLE bit_core_content_modules
1127
- ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
1128
- DEFERRABLE INITIALLY IMMEDIATE
1129
- 
1130
-  (1.3ms) ALTER TABLE bit_core_content_modules
1131
- ADD CONSTRAINT fk_content_modules_tools
1132
- FOREIGN KEY (bit_core_tool_id)
1133
- REFERENCES bit_core_tools(id)
1134
-
1135
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
1136
-  (0.7ms) COMMIT
1137
- Migrating to CreateBitCoreContentProviders (20140415213346)
1138
-  (0.2ms) BEGIN
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
-  (3.0ms) 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
-  (0.8ms)  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
- 
1145
-  (1.2ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
1151
-  (0.5ms) COMMIT
1152
- Migrating to CreateBitCoreSlideshows (20140417173056)
1153
-  (0.2ms) BEGIN
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
-  (3.5ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1156
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
1157
-  (0.5ms) COMMIT
1158
- Migrating to CreateBitCoreSlides (20140417174159)
1159
-  (0.3ms) BEGIN
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
-  (3.6ms) 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
-  (1.2ms)  ALTER TABLE bit_core_slides
1163
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
1164
- DEFERRABLE INITIALLY IMMEDIATE
1165
- 
1166
-  (1.4ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
1172
-  (0.6ms) COMMIT
1173
- Migrating to AddOptionsToSlides (20140620174146)
1174
-  (0.2ms) BEGIN
1175
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
1176
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
1177
-  (0.3ms) COMMIT
1178
- Migrating to AddConfigFieldsToProviders (20140620174147)
1179
-  (0.1ms) BEGIN
1180
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
1181
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
1182
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
1183
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
1184
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
1185
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
1186
-  (0.3ms) COMMIT
1187
- Migrating to AddTypeToContentModules (20140625133118)
1188
-  (0.1ms) BEGIN
1189
-  (0.3ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
1190
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
1191
-  (0.4ms) COMMIT
1192
- Migrating to CreateBitCoreArms (20141205202720)
1193
-  (0.1ms) BEGIN
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
-  (2.5ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
1196
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
1197
-  (0.5ms) COMMIT
1198
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
1199
-  (0.2ms) BEGIN
1200
-  (0.3ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
1201
-  (1.0ms)  ALTER TABLE bit_core_slideshows
1202
- ADD CONSTRAINT fk_bit_core_slideshows_arms
1203
- FOREIGN KEY (arm_id)
1204
- REFERENCES arms(id)
1205
- 
1206
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
1207
-  (0.3ms) COMMIT
1208
- Migrating to AddArmIdToBitCoreTools (20141205202740)
1209
-  (0.2ms) BEGIN
1210
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
1211
-  (0.8ms) ALTER TABLE bit_core_tools
1212
- ADD CONSTRAINT fk_bit_core_tools_arms
1213
- FOREIGN KEY (arm_id)
1214
- REFERENCES arms(id)
1215
-
1216
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
1217
-  (0.3ms) COMMIT
1218
- Migrating to AddTypeToTools (20150130155627)
1219
-  (0.2ms) BEGIN
1220
-  (0.4ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
1221
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
1222
-  (0.3ms) COMMIT
1223
- Migrating to AddIsVizToContentModules (20150131195914)
1224
-  (0.1ms) BEGIN
1225
-  (4.1ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
1226
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
1227
-  (1.0ms) COMMIT
1228
- Migrating to AddToolConstraint (20150210161229)
1229
-  (0.2ms) BEGIN
1230
- BitCore::Tool Load (0.4ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
1231
-  (0.9ms)  ALTER TABLE bit_core_tools
1232
- ADD CONSTRAINT fk_tools_arms
1233
- FOREIGN KEY (arm_id)
1234
- REFERENCES arms(id)
1235
- 
1236
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
1237
-  (0.4ms) COMMIT
1238
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
1239
-  (0.1ms) BEGIN
1240
-  (0.4ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
1241
- :from:
1242
- :to: false
1243
- '
1244
-  (0.1ms) ROLLBACK
1245
-  (5.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1246
-  (17.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1247
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1248
- Migrating to CreateBitCoreTools (20140415210052)
1249
-  (0.2ms) 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
-  (3.6ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
1252
-  (1.2ms) ALTER TABLE bit_core_tools
1253
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
1254
- DEFERRABLE INITIALLY IMMEDIATE
1255
-
1256
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
1257
-  (0.8ms) COMMIT
1258
- Migrating to CreateBitCoreContentModules (20140415211458)
1259
-  (0.2ms) BEGIN
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
-  (3.2ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1262
-  (1.0ms)  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
- 
1266
-  (1.2ms) 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
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
1272
-  (0.7ms) COMMIT
1273
- Migrating to CreateBitCoreContentProviders (20140415213346)
1274
-  (0.2ms) BEGIN
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
-  (2.9ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1277
-  (0.9ms)  ALTER TABLE bit_core_content_providers
1278
- ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
1279
- DEFERRABLE INITIALLY IMMEDIATE
1280
- 
1281
-  (1.0ms) ALTER TABLE bit_core_content_providers
1282
- ADD CONSTRAINT fk_content_providers_modules
1283
- FOREIGN KEY (bit_core_content_module_id)
1284
- REFERENCES bit_core_content_modules(id)
1285
-
1286
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
1287
-  (0.6ms) COMMIT
1288
- Migrating to CreateBitCoreSlideshows (20140417173056)
1289
-  (0.3ms) BEGIN
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
-  (3.5ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1292
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
1293
-  (0.4ms) COMMIT
1294
- Migrating to CreateBitCoreSlides (20140417174159)
1295
-  (0.2ms) BEGIN
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
-  (8.0ms) 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
-  (4.1ms)  ALTER TABLE bit_core_slides
1299
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
1300
- DEFERRABLE INITIALLY IMMEDIATE
1301
- 
1302
-  (1.6ms) 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
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
1308
-  (1.1ms) COMMIT
1309
- Migrating to AddOptionsToSlides (20140620174146)
1310
-  (0.3ms) BEGIN
1311
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
1312
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
1313
-  (0.4ms) COMMIT
1314
- Migrating to AddConfigFieldsToProviders (20140620174147)
1315
-  (0.1ms) BEGIN
1316
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
1317
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
1318
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
1319
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
1320
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
1321
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
1322
-  (0.3ms) COMMIT
1323
- Migrating to AddTypeToContentModules (20140625133118)
1324
-  (0.1ms) BEGIN
1325
-  (0.2ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
1326
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
1327
-  (0.3ms) COMMIT
1328
- Migrating to CreateBitCoreArms (20141205202720)
1329
-  (0.1ms) BEGIN
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
-  (2.8ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
1332
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
1333
-  (0.5ms) COMMIT
1334
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
1335
-  (0.1ms) BEGIN
1336
-  (0.2ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
1337
-  (0.8ms)  ALTER TABLE bit_core_slideshows
1338
- ADD CONSTRAINT fk_bit_core_slideshows_arms
1339
- FOREIGN KEY (arm_id)
1340
- REFERENCES arms(id)
1341
- 
1342
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
1343
-  (0.4ms) COMMIT
1344
- Migrating to AddArmIdToBitCoreTools (20141205202740)
1345
-  (0.1ms) BEGIN
1346
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
1347
-  (0.8ms) ALTER TABLE bit_core_tools
1348
- ADD CONSTRAINT fk_bit_core_tools_arms
1349
- FOREIGN KEY (arm_id)
1350
- REFERENCES arms(id)
1351
-
1352
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
1353
-  (0.4ms) COMMIT
1354
- Migrating to AddTypeToTools (20150130155627)
1355
-  (0.1ms) BEGIN
1356
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
1357
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
1358
-  (0.3ms) COMMIT
1359
- Migrating to AddIsVizToContentModules (20150131195914)
1360
-  (0.1ms) BEGIN
1361
-  (4.2ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
1362
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
1363
-  (0.9ms) COMMIT
1364
- Migrating to AddToolConstraint (20150210161229)
1365
-  (0.1ms) BEGIN
1366
- BitCore::Tool Load (0.4ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
1367
-  (1.0ms)  ALTER TABLE bit_core_tools
1368
- ADD CONSTRAINT fk_tools_arms
1369
- FOREIGN KEY (arm_id)
1370
- REFERENCES arms(id)
1371
- 
1372
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
1373
-  (0.3ms) COMMIT
1374
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
1375
-  (0.2ms) BEGIN
1376
-  (1.0ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT '---
1377
- :from:
1378
- :to: false
1379
- '
1380
-  (0.1ms) ROLLBACK
1381
-  (3.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1382
-  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1383
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1384
- Migrating to CreateBitCoreTools (20140415210052)
1385
-  (0.1ms) 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
-  (3.8ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
1388
-  (1.3ms) ALTER TABLE bit_core_tools
1389
- ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
1390
- DEFERRABLE INITIALLY IMMEDIATE
1391
-
1392
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
1393
-  (0.7ms) COMMIT
1394
- Migrating to CreateBitCoreContentModules (20140415211458)
1395
-  (0.2ms) BEGIN
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
-  (3.0ms) 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
-  (0.9ms)  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
- 
1402
-  (1.2ms) 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
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
1408
-  (0.6ms) COMMIT
1409
- Migrating to CreateBitCoreContentProviders (20140415213346)
1410
-  (0.2ms) BEGIN
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
-  (3.2ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying NOT NULL, "source_content_type" character varying, "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1413
-  (0.9ms)  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
- 
1417
-  (0.9ms) 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
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
1423
-  (0.6ms) COMMIT
1424
- Migrating to CreateBitCoreSlideshows (20140417173056)
1425
-  (0.2ms) BEGIN
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
-  (3.0ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1428
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
1429
-  (0.5ms) COMMIT
1430
- Migrating to CreateBitCoreSlides (20140417174159)
1431
-  (0.2ms) BEGIN
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
-  (3.1ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying, "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1434
-  (0.8ms)  ALTER TABLE bit_core_slides
1435
- ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
1436
- DEFERRABLE INITIALLY IMMEDIATE
1437
- 
1438
-  (1.3ms) ALTER TABLE bit_core_slides
1439
- ADD CONSTRAINT fk_slideshows_slides
1440
- FOREIGN KEY (bit_core_slideshow_id)
1441
- REFERENCES bit_core_slideshows(id)
1442
-
1443
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
1444
-  (0.7ms) COMMIT
1445
- Migrating to AddOptionsToSlides (20140620174146)
1446
-  (0.2ms) BEGIN
1447
-  (0.3ms) ALTER TABLE "bit_core_slides" ADD "options" text
1448
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
1449
-  (0.3ms) COMMIT
1450
- Migrating to AddConfigFieldsToProviders (20140620174147)
1451
-  (0.1ms) BEGIN
1452
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "template_path" character varying
1453
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_class_name" character varying
1454
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "data_attributes" text
1455
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "show_next_nav" boolean
1456
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ADD "locals" text
1457
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
1458
-  (0.5ms) COMMIT
1459
- Migrating to AddTypeToContentModules (20140625133118)
1460
-  (0.1ms) BEGIN
1461
-  (0.2ms) ALTER TABLE "bit_core_content_modules" ADD "type" character varying
1462
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
1463
-  (0.3ms) COMMIT
1464
- Migrating to CreateBitCoreArms (20141205202720)
1465
-  (0.1ms) BEGIN
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
-  (3.2ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying, "is_social" boolean, "created_at" timestamp, "updated_at" timestamp)
1468
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202720"]]
1469
-  (0.5ms) COMMIT
1470
- Migrating to AddArmIdToBitCoreSlideshows (20141205202724)
1471
-  (0.2ms) BEGIN
1472
-  (0.2ms) ALTER TABLE "bit_core_slideshows" ADD "arm_id" integer NOT NULL
1473
-  (0.8ms)  ALTER TABLE bit_core_slideshows
1474
- ADD CONSTRAINT fk_bit_core_slideshows_arms
1475
- FOREIGN KEY (arm_id)
1476
- REFERENCES arms(id)
1477
- 
1478
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202724"]]
1479
-  (0.3ms) COMMIT
1480
- Migrating to AddArmIdToBitCoreTools (20141205202740)
1481
-  (0.1ms) BEGIN
1482
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "arm_id" integer NOT NULL
1483
-  (0.7ms) ALTER TABLE bit_core_tools
1484
- ADD CONSTRAINT fk_bit_core_tools_arms
1485
- FOREIGN KEY (arm_id)
1486
- REFERENCES arms(id)
1487
-
1488
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141205202740"]]
1489
-  (0.4ms) COMMIT
1490
- Migrating to AddTypeToTools (20150130155627)
1491
-  (0.1ms) BEGIN
1492
-  (0.3ms) ALTER TABLE "bit_core_tools" ADD "type" character varying
1493
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150130155627"]]
1494
-  (0.3ms) COMMIT
1495
- Migrating to AddIsVizToContentModules (20150131195914)
1496
-  (0.1ms) BEGIN
1497
-  (4.1ms) ALTER TABLE "bit_core_content_modules" ADD "is_viz" boolean DEFAULT 'f' NOT NULL
1498
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150131195914"]]
1499
-  (0.9ms) COMMIT
1500
- Migrating to AddToolConstraint (20150210161229)
1501
-  (0.2ms) BEGIN
1502
- BitCore::Tool Load (0.5ms) SELECT "bit_core_tools".* FROM "bit_core_tools"
1503
-  (0.9ms)  ALTER TABLE bit_core_tools
1504
- ADD CONSTRAINT fk_tools_arms
1505
- FOREIGN KEY (arm_id)
1506
- REFERENCES arms(id)
1507
- 
1508
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150210161229"]]
1509
-  (0.4ms) COMMIT
1510
- Migrating to ChangeShowNextNavColumnDefault (20160311210938)
1511
-  (0.1ms) BEGIN
1512
-  (0.3ms) ALTER TABLE "bit_core_content_providers" ALTER COLUMN "show_next_nav" SET DEFAULT 'f'
1513
-  (0.2ms) ALTER TABLE "bit_core_content_providers" ALTER "show_next_nav" SET NOT NULL
1514
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160311210938"]]
1515
-  (0.3ms) COMMIT
1516
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1517
-  (2.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- 
1541
-  (2.1ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
- 
1565
-  (1.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
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
-