db/schema.rb in refinerycms-0.9.5.29 vs db/schema.rb in refinerycms-0.9.5.30

- 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 => 20091207033335) do +ActiveRecord::Schema.define(:version => 20100114092849) do create_table "images", :force => true do |t| t.integer "parent_id" t.string "content_type" t.string "filename" @@ -120,9 +120,20 @@ t.datetime "created_at" end add_index "slugs", ["name", "sluggable_type", "scope", "sequence"], :name => "index_slugs_on_name_and_sluggable_type_and_scope_and_sequence", :unique => true add_index "slugs", ["sluggable_id"], :name => "index_slugs_on_sluggable_id" + + create_table "themes", :force => true do |t| + t.integer "size" + t.string "content_type" + t.string "filename" + t.string "title" + t.text "description" + t.text "license" + t.datetime "created_at" + t.datetime "updated_at" + end create_table "user_plugins", :force => true do |t| t.integer "user_id" t.string "title" t.integer "position"