spec/dummy/db/schema.rb in enju_export-0.0.1 vs spec/dummy/db/schema.rb in enju_export-0.0.2

- old
+ new

@@ -9,19 +9,22 @@ # 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 => 20120610075759) do +ActiveRecord::Schema.define(:version => 20120621224846) do create_table "export_files", :force => true do |t| t.string "export_file_name" t.string "export_content_type" t.string "export_file_size" t.string "state" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false + t.integer "user_id" end + + add_index "export_files", ["user_id"], :name => "index_export_files_on_user_id" create_table "roles", :force => true do |t| t.string "name" t.text "display_name" t.text "note"