1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

Merge pull request #62 from Nitrodist/master

Fix migration example in README
This commit is contained in:
Thorsten Böttger 2013-04-19 12:28:31 -07:00
commit 7d43893bbf

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
```