README.md in evil-seed-0.4.0 vs README.md in evil-seed-0.5.0

- old
+ new

@@ -86,9 +86,17 @@ config.anonymize("User") do name { Faker::Name.name } email { Faker::Internet.email } login { |login| "#{login}-test" } end + + # You can ignore columns for any model. This is specially useful when working + # with encrypted columns. + # + # This will remove the columns even if the model is not a root node and is + # dumped via an association. + config.ignore_columns("Profile", :name) +end ``` ### Creating dump Just call the `#dump` method and pass a path where you want your SQL dump file to appear!