README.md in fast_change_table-1.2.0 vs README.md in fast_change_table-1.3.0

- old
+ new

@@ -2,18 +2,20 @@ Use fast\_change\_table instead of change_table in your migrations on large tables of data. Uses a duplication pattern to speed things up. __Known issues:__ -* Currently fast\_change\_table does not supported in Rails 3 reversible migration method. +* Currently fast\_change\_table transformations do not support Rails 3 reversible migration method. __Usage:__ uses ordinary change_table syntax but adds two options * "replace\_keys" to remove all indexes; new indexes will be specified -- "disable\_keys" to remove indexes and apply them after data load; this is a tremendous performance enhancement for a dbms with fast index creation; it is active by default. set it to false to prevent its use +- "disable\_keys" to remove indexes and apply them after data load; this is a tremendous performance enhancement for a dbms with fast index creation; it is active by default. set it to false to prevent its usage + +the bulk option is set by default set it to false to prevent its usage. __Example:__ fast_change_table :table_name, :disable_keys => true do |t| t.change :old_string, :string, :limit => 64 \ No newline at end of file