bit_core 1.1.5 → 1.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6adedadc81269b42fae1d2e56c5692f3df414025
4
- data.tar.gz: 6a5a7322377bbb235e8e27d96e738b7d19feca6a
3
+ metadata.gz: 8594bf3fdb86a1b749fdb4db08fa8f151e610a16
4
+ data.tar.gz: 85df3418c21afb27d93bb8909523d885ce62cdb2
5
5
  SHA512:
6
- metadata.gz: f4aa5be9a8edcc773116b6ec6456f51bf45af38959f3bf5beeaeba465a0d8c5e6490786fd59b1ad2c1e5fbcee733a0ae86ca271ff826287c7c2ef40b25c3569e
7
- data.tar.gz: 225a15bb5760b0810a6ccd24b07dedb28446d57a2b924d80f17b2e6206e20a1c7110256838e53ea37a792083fbe63ce1c3dda7b830cc5f423e1516b3e847874a
6
+ metadata.gz: 00aacf67ed602ed8209142bbac95133b9330f574b47daa6d3a5fb377d9d24f78cbdb0678531183ce965bfcbf7dbb63489a0df55cefa14c0476aa304605807d91
7
+ data.tar.gz: a141017f153a8c311fb11fed6d669bb0ccc76b0fc082127de59b07a7e3fc3de43117e6c8cafcf32e715cc957721940dcc97bb3a9a23bde0f7edf8b8392bd2171
@@ -0,0 +1,5 @@
1
+ class AddTypeToContentModules < ActiveRecord::Migration
2
+ def change
3
+ add_column :bit_core_content_modules, :type, :string
4
+ end
5
+ end
@@ -1,4 +1,4 @@
1
1
  # nodoc
2
2
  module BitCore
3
- VERSION = "1.1.5"
3
+ VERSION = "1.1.6"
4
4
  end
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20140620174147) do
14
+ ActiveRecord::Schema.define(version: 20140625133118) do
15
15
 
16
16
  # These are extensions that must be enabled in order to support this database
17
17
  enable_extension "plpgsql"
@@ -22,6 +22,7 @@ ActiveRecord::Schema.define(version: 20140620174147) do
22
22
  t.integer "bit_core_tool_id", null: false
23
23
  t.datetime "created_at"
24
24
  t.datetime "updated_at"
25
+ t.string "type"
25
26
  end
26
27
 
27
28
  add_index "bit_core_content_modules", ["bit_core_tool_id", "position"], name: "bit_core_content_module_position", unique: true, using: :btree
@@ -573,3 +573,25 @@ Migrating to CreateBitCoreSlides (20140417174159)
573
573
   (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140415211458')
574
574
   (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140415213346')
575
575
   (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140417173056')
576
+  (1121.7ms) DROP DATABASE IF EXISTS "dummy_test"
577
+  (247.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
578
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
579
+  (10.0ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
580
+  (1.7ms) CREATE UNIQUE INDEX "bit_core_content_module_position" ON "bit_core_content_modules" USING btree ("bit_core_tool_id", "position")
581
+  (7.9ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp, "template_path" character varying(255), "data_class_name" character varying(255), "data_attributes" text, "show_next_nav" boolean, "locals" text)
582
+  (1.7ms) CREATE UNIQUE INDEX "bit_core_content_provider_position" ON "bit_core_content_providers" USING btree ("bit_core_content_module_id", "position")
583
+  (6.4ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying(255) NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying(255), "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp, "options" text)
584
+  (1.7ms) CREATE UNIQUE INDEX "bit_core_slide_position" ON "bit_core_slides" USING btree ("bit_core_slideshow_id", "position")
585
+  (3.7ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
586
+  (4.1ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
587
+  (1.5ms) CREATE UNIQUE INDEX "bit_core_tool_position" ON "bit_core_tools" USING btree ("position")
588
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
589
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
590
+  (0.6ms) SELECT version FROM "schema_migrations"
591
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620174147')
592
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140415210052')
593
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140415211458')
594
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140415213346')
595
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140417173056')
596
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140417174159')
597
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620174146')
@@ -6500,3 +6500,269 @@ PG::InsufficientPrivilege: ERROR: permission denied: "RI_ConstraintTrigger_a_11
6500
6500
  BitCore::ContentProvider Exists (0.5ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6501
6501
  BitCore::ContentProvider Exists (0.5ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6502
6502
   (0.2ms) ROLLBACK
6503
+  (1.6ms) ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
6504
+  (0.3ms) BEGIN
6505
+ Fixture Delete (0.6ms) DELETE FROM "bit_core_slideshows"
6506
+ Fixture Insert (1.4ms) INSERT INTO "bit_core_slideshows" ("title", "created_at", "updated_at", "id") VALUES ('Slideshow 1', '2014-06-25 14:35:36', '2014-06-25 14:35:36', 504123193)
6507
+ Fixture Delete (0.6ms) DELETE FROM "bit_core_slides"
6508
+ Fixture Insert (0.7ms) INSERT INTO "bit_core_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_core_slideshow_id") VALUES (1, 'Slide 1', 'lorem...', '2014-06-25 14:35:36', '2014-06-25 14:35:36', 538050605, 504123193)
6509
+ Fixture Insert (0.4ms) INSERT INTO "bit_core_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_core_slideshow_id") VALUES (2, 'Slide 2', 'lorem...', '2014-06-25 14:35:36', '2014-06-25 14:35:36', 958091673, 504123193)
6510
+ Fixture Insert (0.3ms) INSERT INTO "bit_core_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_core_slideshow_id") VALUES (3, 'Slide 3', 'lorem...', '2014-06-25 14:35:36', '2014-06-25 14:35:36', 236740868, 504123193)
6511
+  (0.4ms) COMMIT
6512
+  (0.4ms) ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
6513
+  (0.2ms) BEGIN
6514
+ BitCore::Slideshow Load (0.5ms) SELECT "bit_core_slideshows".* FROM "bit_core_slideshows" WHERE "bit_core_slideshows"."id" = $1 LIMIT 1 [["id", 504123193]]
6515
+ BitCore::Slide Load (0.7ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 958091673]]
6516
+  (0.2ms) SAVEPOINT active_record_1
6517
+ SQL (0.3ms) DELETE FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 [["id", 958091673]]
6518
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6519
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position DESC LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6520
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."position" = 3 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6521
+  (0.2ms) SAVEPOINT active_record_1
6522
+ BitCore::Slide Exists (0.8ms) SELECT 1 AS one FROM "bit_core_slides" WHERE ("bit_core_slides"."position" = 2 AND "bit_core_slides"."id" != 236740868 AND "bit_core_slides"."bit_core_slideshow_id" = 504123193) LIMIT 1
6523
+ SQL (0.4ms) UPDATE "bit_core_slides" SET "position" = $1, "updated_at" = $2 WHERE "bit_core_slides"."id" = 236740868 [["position", 2], ["updated_at", "2014-06-25 14:35:36.318764"]]
6524
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6525
+  (0.4ms) SELECT COUNT(*) FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 [["bit_core_slideshow_id", 504123193]]
6526
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6527
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 538050605]]
6528
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6529
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 OFFSET 1 [["bit_core_slideshow_id", 504123193]]
6530
+ BitCore::Slide Load (0.3ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 236740868]]
6531
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 OFFSET 1 [["bit_core_slideshow_id", 504123193]]
6532
+  (0.2ms) ROLLBACK
6533
+  (0.1ms) BEGIN
6534
+ BitCore::Slideshow Load (0.3ms) SELECT "bit_core_slideshows".* FROM "bit_core_slideshows" WHERE "bit_core_slideshows"."id" = $1 LIMIT 1 [["id", 504123193]]
6535
+  (0.4ms) SELECT COUNT(*) FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 [["bit_core_slideshow_id", 504123193]]
6536
+ BitCore::Slide Exists (0.4ms) SELECT 1 AS one FROM "bit_core_slides" WHERE ("bit_core_slides"."position" = 4 AND "bit_core_slides"."bit_core_slideshow_id" = 504123193) LIMIT 1
6537
+  (0.1ms) ROLLBACK
6538
+  (0.1ms) BEGIN
6539
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 538050605]]
6540
+ BitCore::Slide Load (0.3ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 958091673]]
6541
+ BitCore::Slide Load (0.3ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 236740868]]
6542
+ BitCore::Slideshow Load (0.3ms) SELECT "bit_core_slideshows".* FROM "bit_core_slideshows" WHERE "bit_core_slideshows"."id" = $1 LIMIT 1 [["id", 504123193]]
6543
+  (0.1ms) SAVEPOINT active_record_1
6544
+  (0.4ms) SET CONSTRAINTS bit_core_slide_position DEFERRED
6545
+ PG::UndefinedObject: ERROR: constraint "bit_core_slide_position" does not exist
6546
+ : SET CONSTRAINTS bit_core_slide_position DEFERRED
6547
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
6548
+  (0.2ms) ROLLBACK
6549
+  (0.2ms) BEGIN
6550
+ BitCore::ContentProvider Exists (1.0ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6551
+ BitCore::ContentProvider Exists (0.6ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6552
+  (0.2ms) ROLLBACK
6553
+  (0.2ms) BEGIN
6554
+ BitCore::ContentProvider Exists (0.5ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6555
+ BitCore::ContentProvider Exists (1.0ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6556
+  (0.2ms) ROLLBACK
6557
+  (0.2ms) BEGIN
6558
+ BitCore::ContentProvider Exists (0.5ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6559
+ BitCore::ContentProvider Exists (0.6ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6560
+  (0.2ms) ROLLBACK
6561
+  (0.4ms) ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL
6562
+  (0.3ms) BEGIN
6563
+ Fixture Delete (0.7ms) DELETE FROM "bit_core_tools"
6564
+ Fixture Insert (1.0ms) INSERT INTO "bit_core_tools" ("title", "created_at", "updated_at", "id") VALUES ('Home', '2014-06-25 14:35:36', '2014-06-25 14:35:36', 836111569)
6565
+ Fixture Delete (1.0ms) DELETE FROM "bit_core_content_modules"
6566
+ Fixture Insert (1.2ms) INSERT INTO "bit_core_content_modules" ("title", "position", "created_at", "updated_at", "id", "bit_core_tool_id") VALUES ('Landing', 1, '2014-06-25 14:35:36', '2014-06-25 14:35:36', 437912910, 836111569)
6567
+ Fixture Insert (0.4ms) INSERT INTO "bit_core_content_modules" ("title", "position", "created_at", "updated_at", "id", "bit_core_tool_id") VALUES ('But wait, there''s more', 2, '2014-06-25 14:35:36', '2014-06-25 14:35:36', 511237275, 836111569)
6568
+ Fixture Delete (0.4ms) DELETE FROM "bit_core_content_providers"
6569
+ Fixture Insert (0.8ms) INSERT INTO "bit_core_content_providers" ("position", "type", "created_at", "updated_at", "id", "bit_core_content_module_id") VALUES (1, 'BitCore::ContentProviders::SlideshowProvider', '2014-06-25 14:35:36', '2014-06-25 14:35:36', 555816777, 437912910)
6570
+ Fixture Insert (0.4ms) INSERT INTO "bit_core_content_providers" ("position", "type", "created_at", "updated_at", "id", "bit_core_content_module_id") VALUES (1, 'BitCore::ContentProviders::SlideshowProvider', '2014-06-25 14:35:36', '2014-06-25 14:35:36', 46790607, 511237275)
6571
+  (0.4ms) COMMIT
6572
+  (0.4ms) ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL
6573
+  (0.2ms) BEGIN
6574
+ BitCore::ContentModule Load (0.5ms) SELECT "bit_core_content_modules".* FROM "bit_core_content_modules" WHERE "bit_core_content_modules"."id" = $1 LIMIT 1 [["id", 437912910]]
6575
+ BitCore::ContentProvider Load (0.7ms) SELECT "bit_core_content_providers".* FROM "bit_core_content_providers" WHERE "bit_core_content_providers"."bit_core_content_module_id" = $1 AND "bit_core_content_providers"."position" = 1 ORDER BY "bit_core_content_providers"."id" ASC LIMIT 1 [["bit_core_content_module_id", 437912910]]
6576
+  (0.2ms) ROLLBACK
6577
+  (0.2ms) BEGIN
6578
+ BitCore::ContentModule Load (0.4ms) SELECT "bit_core_content_modules".* FROM "bit_core_content_modules" WHERE "bit_core_content_modules"."id" = $1 LIMIT 1 [["id", 437912910]]
6579
+ BitCore::ContentProvider Load (0.5ms) SELECT "bit_core_content_providers".* FROM "bit_core_content_providers" WHERE "bit_core_content_providers"."bit_core_content_module_id" = $1 AND "bit_core_content_providers"."position" = 8 ORDER BY "bit_core_content_providers"."id" ASC LIMIT 1 [["bit_core_content_module_id", 437912910]]
6580
+  (0.2ms) ROLLBACK
6581
+  (0.2ms) BEGIN
6582
+  (0.2ms) ROLLBACK
6583
+  (0.2ms) BEGIN
6584
+  (0.1ms) ROLLBACK
6585
+  (0.1ms) BEGIN
6586
+  (0.2ms) ROLLBACK
6587
+  (4.3ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
6588
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6589
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
6590
+ Migrating to CreateBitCoreTools (20140415210052)
6591
+  (0.2ms) BEGIN
6592
+  (5.8ms) CREATE TABLE "bit_core_tools" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
6593
+  (2.3ms) ALTER TABLE bit_core_tools
6594
+ ADD CONSTRAINT bit_core_tool_position UNIQUE (position)
6595
+ DEFERRABLE INITIALLY IMMEDIATE
6596
+
6597
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415210052"]]
6598
+  (0.6ms) COMMIT
6599
+ Migrating to CreateBitCoreContentModules (20140415211458)
6600
+  (0.3ms) BEGIN
6601
+  (3.6ms) CREATE TABLE "bit_core_content_modules" ("id" serial primary key, "title" character varying(255) NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_tool_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
6602
+  (1.7ms)  ALTER TABLE bit_core_content_modules
6603
+ ADD CONSTRAINT bit_core_content_module_position UNIQUE (bit_core_tool_id, position)
6604
+ DEFERRABLE INITIALLY IMMEDIATE
6605
+ 
6606
+  (2.4ms) ALTER TABLE bit_core_content_modules
6607
+ ADD CONSTRAINT fk_content_modules_tools
6608
+ FOREIGN KEY (bit_core_tool_id)
6609
+ REFERENCES bit_core_tools(id)
6610
+
6611
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415211458"]]
6612
+  (0.7ms) COMMIT
6613
+ Migrating to CreateBitCoreContentProviders (20140415213346)
6614
+  (0.4ms) BEGIN
6615
+  (5.9ms) CREATE TABLE "bit_core_content_providers" ("id" serial primary key, "type" character varying(255) NOT NULL, "source_content_type" character varying(255), "source_content_id" integer, "bit_core_content_module_id" integer NOT NULL, "position" integer DEFAULT 1 NOT NULL, "created_at" timestamp, "updated_at" timestamp)
6616
+  (1.6ms)  ALTER TABLE bit_core_content_providers
6617
+ ADD CONSTRAINT bit_core_content_provider_position UNIQUE (bit_core_content_module_id, position)
6618
+ DEFERRABLE INITIALLY IMMEDIATE
6619
+ 
6620
+  (2.7ms) ALTER TABLE bit_core_content_providers
6621
+ ADD CONSTRAINT fk_content_providers_modules
6622
+ FOREIGN KEY (bit_core_content_module_id)
6623
+ REFERENCES bit_core_content_modules(id)
6624
+
6625
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140415213346"]]
6626
+  (0.6ms) COMMIT
6627
+ Migrating to CreateBitCoreSlideshows (20140417173056)
6628
+  (0.5ms) BEGIN
6629
+  (3.4ms) CREATE TABLE "bit_core_slideshows" ("id" serial primary key, "title" character varying(255) NOT NULL, "created_at" timestamp, "updated_at" timestamp)
6630
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417173056"]]
6631
+  (0.5ms) COMMIT
6632
+ Migrating to CreateBitCoreSlides (20140417174159)
6633
+  (0.3ms) BEGIN
6634
+  (5.8ms) CREATE TABLE "bit_core_slides" ("id" serial primary key, "title" character varying(255) NOT NULL, "body" text NOT NULL, "position" integer DEFAULT 1 NOT NULL, "bit_core_slideshow_id" integer NOT NULL, "type" character varying(255), "is_title_visible" boolean DEFAULT 't' NOT NULL, "created_at" timestamp, "updated_at" timestamp)
6635
+  (2.0ms)  ALTER TABLE bit_core_slides
6636
+ ADD CONSTRAINT bit_core_slide_position UNIQUE (bit_core_slideshow_id, position)
6637
+ DEFERRABLE INITIALLY IMMEDIATE
6638
+ 
6639
+  (2.7ms) ALTER TABLE bit_core_slides
6640
+ ADD CONSTRAINT fk_slideshows_slides
6641
+ FOREIGN KEY (bit_core_slideshow_id)
6642
+ REFERENCES bit_core_slideshows(id)
6643
+
6644
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140417174159"]]
6645
+  (0.6ms) COMMIT
6646
+ Migrating to AddOptionsToSlides (20140620174146)
6647
+  (0.4ms) BEGIN
6648
+  (0.7ms) ALTER TABLE "bit_core_slides" ADD COLUMN "options" text
6649
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174146"]]
6650
+  (0.5ms) COMMIT
6651
+ Migrating to AddConfigFieldsToProviders (20140620174147)
6652
+  (0.1ms) BEGIN
6653
+  (0.5ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "template_path" character varying(255)
6654
+  (0.4ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_class_name" character varying(255)
6655
+  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "data_attributes" text
6656
+  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "show_next_nav" boolean
6657
+  (0.3ms) ALTER TABLE "bit_core_content_providers" ADD COLUMN "locals" text
6658
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140620174147"]]
6659
+  (0.4ms) COMMIT
6660
+ Migrating to AddTypeToContentModules (20140625133118)
6661
+  (0.2ms) BEGIN
6662
+  (2.6ms) ALTER TABLE "bit_core_content_modules" ADD COLUMN "type" character varying(255)
6663
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140625133118"]]
6664
+  (0.4ms) COMMIT
6665
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6666
+  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL
6667
+ PG::InsufficientPrivilege: ERROR: permission denied: "RI_ConstraintTrigger_a_1337855" is a system trigger
6668
+ : ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL
6669
+  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER
6670
+  (0.3ms) BEGIN
6671
+ Fixture Delete (0.7ms) DELETE FROM "bit_core_slideshows"
6672
+ Fixture Insert (1.0ms) INSERT INTO "bit_core_slideshows" ("title", "created_at", "updated_at", "id") VALUES ('Slideshow 1', '2014-06-25 14:48:41', '2014-06-25 14:48:41', 504123193)
6673
+ Fixture Delete (0.6ms) DELETE FROM "bit_core_slides"
6674
+ Fixture Insert (1.2ms) INSERT INTO "bit_core_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_core_slideshow_id") VALUES (1, 'Slide 1', 'lorem...', '2014-06-25 14:48:41', '2014-06-25 14:48:41', 538050605, 504123193)
6675
+ Fixture Insert (0.5ms) INSERT INTO "bit_core_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_core_slideshow_id") VALUES (2, 'Slide 2', 'lorem...', '2014-06-25 14:48:41', '2014-06-25 14:48:41', 958091673, 504123193)
6676
+ Fixture Insert (0.5ms) INSERT INTO "bit_core_slides" ("position", "title", "body", "created_at", "updated_at", "id", "bit_core_slideshow_id") VALUES (3, 'Slide 3', 'lorem...', '2014-06-25 14:48:41', '2014-06-25 14:48:41', 236740868, 504123193)
6677
+  (0.5ms) COMMIT
6678
+  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL
6679
+ PG::InsufficientPrivilege: ERROR: permission denied: "RI_ConstraintTrigger_a_1337855" is a system trigger
6680
+ : ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL
6681
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER
6682
+  (0.1ms) BEGIN
6683
+ BitCore::Slideshow Load (0.5ms) SELECT "bit_core_slideshows".* FROM "bit_core_slideshows" WHERE "bit_core_slideshows"."id" = $1 LIMIT 1 [["id", 504123193]]
6684
+  (0.5ms) SELECT COUNT(*) FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 [["bit_core_slideshow_id", 504123193]]
6685
+ BitCore::Slide Exists (0.6ms) SELECT 1 AS one FROM "bit_core_slides" WHERE ("bit_core_slides"."position" = 4 AND "bit_core_slides"."bit_core_slideshow_id" = 504123193) LIMIT 1
6686
+  (0.2ms) ROLLBACK
6687
+  (0.1ms) BEGIN
6688
+ BitCore::Slideshow Load (0.4ms) SELECT "bit_core_slideshows".* FROM "bit_core_slideshows" WHERE "bit_core_slideshows"."id" = $1 LIMIT 1 [["id", 504123193]]
6689
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 958091673]]
6690
+  (0.2ms) SAVEPOINT active_record_1
6691
+ SQL (0.4ms) DELETE FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 [["id", 958091673]]
6692
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6693
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position DESC LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6694
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."position" = 3 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6695
+  (0.2ms) SAVEPOINT active_record_1
6696
+ BitCore::Slide Exists (0.9ms) SELECT 1 AS one FROM "bit_core_slides" WHERE ("bit_core_slides"."position" = 2 AND "bit_core_slides"."id" != 236740868 AND "bit_core_slides"."bit_core_slideshow_id" = 504123193) LIMIT 1
6697
+ SQL (0.6ms) UPDATE "bit_core_slides" SET "position" = $1, "updated_at" = $2 WHERE "bit_core_slides"."id" = 236740868 [["position", 2], ["updated_at", "2014-06-25 14:48:41.365223"]]
6698
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6699
+  (0.4ms) SELECT COUNT(*) FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 [["bit_core_slideshow_id", 504123193]]
6700
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6701
+ BitCore::Slide Load (0.3ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 538050605]]
6702
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193]]
6703
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 OFFSET 1 [["bit_core_slideshow_id", 504123193]]
6704
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 236740868]]
6705
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 ORDER BY position LIMIT 1 OFFSET 1 [["bit_core_slideshow_id", 504123193]]
6706
+  (0.3ms) ROLLBACK
6707
+  (0.2ms) BEGIN
6708
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 538050605]]
6709
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 958091673]]
6710
+ BitCore::Slide Load (0.3ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."id" = $1 LIMIT 1 [["id", 236740868]]
6711
+ BitCore::Slideshow Load (0.3ms) SELECT "bit_core_slideshows".* FROM "bit_core_slideshows" WHERE "bit_core_slideshows"."id" = $1 LIMIT 1 [["id", 504123193]]
6712
+  (0.2ms) SAVEPOINT active_record_1
6713
+  (0.3ms) SET CONSTRAINTS bit_core_slide_position DEFERRED
6714
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."id" = $2 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193], ["id", 236740868]]
6715
+ SQL (0.5ms) UPDATE "bit_core_slides" SET "position" = $1, "updated_at" = $2 WHERE "bit_core_slides"."id" = 236740868 [["position", 1], ["updated_at", "2014-06-25 14:48:41.384369"]]
6716
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."id" = $2 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193], ["id", 538050605]]
6717
+ SQL (0.4ms) UPDATE "bit_core_slides" SET "position" = $1, "updated_at" = $2 WHERE "bit_core_slides"."id" = 538050605 [["position", 2], ["updated_at", "2014-06-25 14:48:41.386970"]]
6718
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."id" = $2 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193], ["id", 958091673]]
6719
+ SQL (0.4ms) UPDATE "bit_core_slides" SET "position" = $1, "updated_at" = $2 WHERE "bit_core_slides"."id" = 958091673 [["position", 3], ["updated_at", "2014-06-25 14:48:41.389759"]]
6720
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6721
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."id" = $2 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193], ["id", 538050605]]
6722
+ BitCore::Slide Load (0.5ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."id" = $2 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193], ["id", 958091673]]
6723
+ BitCore::Slide Load (0.4ms) SELECT "bit_core_slides".* FROM "bit_core_slides" WHERE "bit_core_slides"."bit_core_slideshow_id" = $1 AND "bit_core_slides"."id" = $2 ORDER BY position LIMIT 1 [["bit_core_slideshow_id", 504123193], ["id", 236740868]]
6724
+  (0.2ms) ROLLBACK
6725
+  (0.5ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL
6726
+ PG::InsufficientPrivilege: ERROR: permission denied: "RI_ConstraintTrigger_a_1337855" is a system trigger
6727
+ : ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER ALL
6728
+  (0.5ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER USER;ALTER TABLE "bit_core_tools" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slides" DISABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" DISABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" DISABLE TRIGGER USER
6729
+  (0.3ms) BEGIN
6730
+ Fixture Delete (0.7ms) DELETE FROM "bit_core_tools"
6731
+ Fixture Insert (0.7ms) INSERT INTO "bit_core_tools" ("title", "created_at", "updated_at", "id") VALUES ('Home', '2014-06-25 14:48:41', '2014-06-25 14:48:41', 836111569)
6732
+ Fixture Delete (0.5ms) DELETE FROM "bit_core_content_modules"
6733
+ Fixture Insert (1.1ms) INSERT INTO "bit_core_content_modules" ("title", "position", "created_at", "updated_at", "id", "bit_core_tool_id") VALUES ('Landing', 1, '2014-06-25 14:48:41', '2014-06-25 14:48:41', 437912910, 836111569)
6734
+ Fixture Insert (0.4ms) INSERT INTO "bit_core_content_modules" ("title", "position", "created_at", "updated_at", "id", "bit_core_tool_id") VALUES ('But wait, there''s more', 2, '2014-06-25 14:48:41', '2014-06-25 14:48:41', 511237275, 836111569)
6735
+ Fixture Delete (0.7ms) DELETE FROM "bit_core_content_providers"
6736
+ Fixture Insert (1.1ms) INSERT INTO "bit_core_content_providers" ("position", "type", "created_at", "updated_at", "id", "bit_core_content_module_id") VALUES (1, 'BitCore::ContentProviders::SlideshowProvider', '2014-06-25 14:48:41', '2014-06-25 14:48:41', 555816777, 437912910)
6737
+ Fixture Insert (0.5ms) INSERT INTO "bit_core_content_providers" ("position", "type", "created_at", "updated_at", "id", "bit_core_content_module_id") VALUES (1, 'BitCore::ContentProviders::SlideshowProvider', '2014-06-25 14:48:41', '2014-06-25 14:48:41', 46790607, 511237275)
6738
+  (0.5ms) COMMIT
6739
+  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL
6740
+ PG::InsufficientPrivilege: ERROR: permission denied: "RI_ConstraintTrigger_a_1337855" is a system trigger
6741
+ : ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_tools" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slides" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER ALL;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER ALL
6742
+  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER USER;ALTER TABLE "bit_core_tools" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slides" ENABLE TRIGGER USER;ALTER TABLE "bit_core_slideshows" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_modules" ENABLE TRIGGER USER;ALTER TABLE "bit_core_content_providers" ENABLE TRIGGER USER
6743
+  (0.2ms) BEGIN
6744
+ BitCore::ContentModule Load (0.6ms) SELECT "bit_core_content_modules".* FROM "bit_core_content_modules" WHERE "bit_core_content_modules"."id" = $1 LIMIT 1 [["id", 437912910]]
6745
+ BitCore::ContentProvider Load (0.7ms) SELECT "bit_core_content_providers".* FROM "bit_core_content_providers" WHERE "bit_core_content_providers"."bit_core_content_module_id" = $1 AND "bit_core_content_providers"."position" = 1 ORDER BY "bit_core_content_providers"."id" ASC LIMIT 1 [["bit_core_content_module_id", 437912910]]
6746
+  (0.3ms) ROLLBACK
6747
+  (0.1ms) BEGIN
6748
+ BitCore::ContentModule Load (0.4ms) SELECT "bit_core_content_modules".* FROM "bit_core_content_modules" WHERE "bit_core_content_modules"."id" = $1 LIMIT 1 [["id", 437912910]]
6749
+ BitCore::ContentProvider Load (0.6ms) SELECT "bit_core_content_providers".* FROM "bit_core_content_providers" WHERE "bit_core_content_providers"."bit_core_content_module_id" = $1 AND "bit_core_content_providers"."position" = 8 ORDER BY "bit_core_content_providers"."id" ASC LIMIT 1 [["bit_core_content_module_id", 437912910]]
6750
+  (0.2ms) ROLLBACK
6751
+  (0.2ms) BEGIN
6752
+ BitCore::ContentProvider Exists (0.6ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6753
+ BitCore::ContentProvider Exists (0.6ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6754
+  (0.2ms) ROLLBACK
6755
+  (0.2ms) BEGIN
6756
+ BitCore::ContentProvider Exists (0.6ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6757
+ BitCore::ContentProvider Exists (0.5ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6758
+  (0.2ms) ROLLBACK
6759
+  (0.2ms) BEGIN
6760
+ BitCore::ContentProvider Exists (0.7ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6761
+ BitCore::ContentProvider Exists (0.6ms) SELECT 1 AS one FROM "bit_core_content_providers" WHERE ("bit_core_content_providers"."position" = 1 AND "bit_core_content_providers"."bit_core_content_module_id" IS NULL) LIMIT 1
6762
+  (0.2ms) ROLLBACK
6763
+  (0.2ms) BEGIN
6764
+  (0.2ms) ROLLBACK
6765
+  (0.1ms) BEGIN
6766
+  (0.2ms) ROLLBACK
6767
+  (0.1ms) BEGIN
6768
+  (0.1ms) ROLLBACK
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.1.5
4
+ version: 1.1.6
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: 2014-06-24 00:00:00.000000000 Z
11
+ date: 2014-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -110,6 +110,7 @@ files:
110
110
  - db/migrate/20140417174159_create_bit_core_slides.rb
111
111
  - db/migrate/20140620174146_add_options_to_slides.rb
112
112
  - db/migrate/20140620174147_add_config_fields_to_providers.rb
113
+ - db/migrate/20140625133118_add_type_to_content_modules.rb
113
114
  - lib/bit_core.rb
114
115
  - lib/bit_core/engine.rb
115
116
  - lib/bit_core/version.rb