diff --git a/db/migrate/20130810061810_change_type_in_workouts.rb b/db/migrate/20130810061810_change_type_in_workouts.rb new file mode 100644 index 0000000..1b412ae --- /dev/null +++ b/db/migrate/20130810061810_change_type_in_workouts.rb @@ -0,0 +1,9 @@ +class ChangeTypeInWorkouts < ActiveRecord::Migration + def self.up + change_column :workouts, :date, :date + end + + def self.down + change_column :workouts, :date, :datetime + end +end diff --git a/db/schema.rb b/db/schema.rb index 1454a16..663d234 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,10 +11,10 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20130805003121) do +ActiveRecord::Schema.define(version: 20130810061810) do create_table "workouts", force: true do |t| - t.datetime "date" + t.date "date" t.datetime "created_at" t.datetime "updated_at" end diff --git a/spec/features/workouts_spec.rb b/spec/features/workouts_spec.rb index 75549c8..ca16488 100644 --- a/spec/features/workouts_spec.rb +++ b/spec/features/workouts_spec.rb @@ -1,7 +1,7 @@ require 'spec_helper' describe "Workouts" do - before :all do + before :each do @workout = FactoryGirl.create(:workout) end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index aa433fa..0fb565c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -28,7 +28,7 @@ RSpec.configure do |config| # If you're not using ActiveRecord, or you'd prefer not to run each of your # examples within a transaction, remove the following line or assign false # instead of true. - config.use_transactional_fixtures = true + config.use_transactional_fixtures = false # If true, the base class of anonymous controllers will be inferred # automatically. This will be the default behavior in future versions of