spec/dummy/db/schema.rb in bit_player-0.1.1 vs spec/dummy/db/schema.rb in bit_player-0.1.2
- old
+ new
@@ -9,11 +9,11 @@
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20140305235008) do
+ActiveRecord::Schema.define(version: 20140306000537) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "bit_player_content_modules", force: true do |t|
@@ -48,14 +48,15 @@
add_index "bit_player_participant_statuses", ["participant_id"], name: "index_participant_statuses_on_participant_id", using: :btree
create_table "bit_player_slides", force: true do |t|
t.string "title"
- t.text "body", null: false
- t.integer "position", default: 1, null: false
- t.integer "bit_player_slideshow_id", null: false
+ t.text "body", null: false
+ t.integer "position", default: 1, null: false
+ t.integer "bit_player_slideshow_id", null: false
t.string "type"
t.text "options"
+ t.boolean "is_title_visible", default: true, null: false
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "bit_player_slides", ["bit_player_slideshow_id", "position"], name: "slide_position", unique: true, using: :btree