Fix migration example in README

This commit is contained in:
Mark Campbell 2013-04-03 11:43:32 -04:00
parent 636a25f45d
commit 0bb5925da6
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ class AddJobState < ActiveRecord::Migration
end
def self.down
remove_column :job, :aasm_state
remove_column :jobs, :aasm_state
end
end
```