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

Fix migration example in README

This commit is contained in:
Mark Campbell 2013-04-03 11:43:32 -04:00
parent 636a25f45d
commit 0bb5925da6

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