diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-08-22 15:46:04 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-08-22 15:46:04 -0300 |
commit | df84e9867219e9311aef6f4efd5dd9ec675bee5c (patch) | |
tree | 69e1aaa4201ca87ad671a90adfc60bf8ae9eb58a /guides | |
parent | d25a5ce256c56d2f9e140aaf59f48945ddfcac1a (diff) | |
download | rails-df84e9867219e9311aef6f4efd5dd9ec675bee5c.tar.gz rails-df84e9867219e9311aef6f4efd5dd9ec675bee5c.tar.bz2 rails-df84e9867219e9311aef6f4efd5dd9ec675bee5c.zip |
Remove the SchemaDumper options and change the default behavior
Now the schema dumper by default doesn't align the types and arguments
in the ruby format anymore.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 3e27dfafa0..7239105b29 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -368,11 +368,9 @@ The MySQL adapter adds one additional configuration option: * `ActiveRecord::ConnectionAdapters::Mysql2Adapter.emulate_booleans` controls whether Active Record will consider all `tinyint(1)` columns as booleans. Defaults to `true`. -The schema dumper adds additional configuration options: +The schema dumper adds one additional configuration option: * `ActiveRecord::SchemaDumper.ignore_tables` accepts an array of tables that should _not_ be included in any generated schema file. This setting is ignored unless `config.active_record.schema_format == :ruby`. -* `ActiveRecord::SchemaDumper.standardized_argument_widths` configures whether colum arguments should be lined up or not in dump. By default this is `true`. This setting is ignored unless `config.active_record.schema_format == :ruby`. -* `ActiveRecord::SchemaDumper.standardized_type_widths` configures whether colum types should be lined up or not in dump. By default this is `true`. This setting is ignored unless `config.active_record.schema_format == :ruby`. ### Configuring Action Controller |