test/dummy/db/schema.rb in vision-0.0.1.alpha1 vs test/dummy/db/schema.rb in vision-0.0.1.beta

- old
+ new

@@ -9,24 +9,48 @@ # 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 => 20130211073237) do +ActiveRecord::Schema.define(:version => 20130221135127) do + create_table "posts", :force => true do |t| + t.string "name" + t.text "description" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + + create_table "redactor_assets", :force => true do |t| + t.integer "user_id" + t.string "data_file_name", :null => false + t.string "data_content_type" + t.integer "data_file_size" + t.integer "assetable_id" + t.string "assetable_type", :limit => 30 + t.string "type", :limit => 30 + t.integer "width" + t.integer "height" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + + add_index "redactor_assets", ["assetable_type", "assetable_id"], :name => "idx_redactor_assetable" + add_index "redactor_assets", ["assetable_type", "type", "assetable_id"], :name => "idx_redactor_assetable_type" + create_table "users", :force => true do |t| + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "email", :default => "", :null => false t.string "encrypted_password", :default => "", :null => false t.string "reset_password_token" t.datetime "reset_password_sent_at" t.datetime "remember_created_at" t.integer "sign_in_count", :default => 0 t.datetime "current_sign_in_at" t.datetime "last_sign_in_at" t.string "current_sign_in_ip" t.string "last_sign_in_ip" - t.datetime "created_at", :null => false - t.datetime "updated_at", :null => false end add_index "users", ["email"], :name => "index_users_on_email", :unique => true add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true