db/schema.rb in refinerycms-0.9.5.31 vs db/schema.rb in refinerycms-0.9.6

- old
+ new

@@ -7,11 +7,11 @@ # all the migrations 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 to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20100127004649) do +ActiveRecord::Schema.define(:version => 20100204011654) do create_table "images", :force => true do |t| t.integer "parent_id" t.string "content_type" t.string "filename" @@ -68,29 +68,25 @@ create_table "pages", :force => true do |t| t.string "title" t.integer "parent_id" t.integer "position" t.string "path" - t.integer "image_id" t.datetime "created_at" t.datetime "updated_at" t.string "meta_keywords" t.text "meta_description" - t.boolean "show_in_menu", :default => true + t.boolean "show_in_menu", :default => true t.string "link_url" t.string "menu_match" - t.boolean "deletable", :default => true + t.boolean "deletable", :default => true t.string "custom_title" - t.string "custom_title_type", :default => "none" - t.integer "custom_title_image_id" - t.boolean "draft", :default => false + t.string "custom_title_type", :default => "none" + t.boolean "draft", :default => false t.string "browser_title" - t.boolean "skip_to_first_child", :default => false + t.boolean "skip_to_first_child", :default => false end - add_index "pages", ["custom_title_image_id"], :name => "index_pages_on_custom_title_image_id" add_index "pages", ["id"], :name => "index_pages_on_id" - add_index "pages", ["image_id"], :name => "index_pages_on_image_id" add_index "pages", ["parent_id"], :name => "index_pages_on_parent_id" create_table "refinery_settings", :force => true do |t| t.string "name" t.text "value"