diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2015-03-22 10:28:23 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2015-03-22 10:28:23 +0000 |
commit | 055ef4b62366c4d92774df7f65f8de7427ba4aaa (patch) | |
tree | 5e3623139e13abe1489f2bb0172897183204ee5e /guides | |
parent | fdf55619652fc5200d000241c545323c46bd6b79 (diff) | |
parent | 4f578ec36a02533d1959ddf4592e5cb4bc38be84 (diff) | |
download | rails-055ef4b62366c4d92774df7f65f8de7427ba4aaa.tar.gz rails-055ef4b62366c4d92774df7f65f8de7427ba4aaa.tar.bz2 rails-055ef4b62366c4d92774df7f65f8de7427ba4aaa.zip |
Merge pull request #19454 from yui-knk/fix/guide_migrations
[ci skip] Change `the null` to `a not null constraint`
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_migrations.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md index 0e6c8c4f4a..ff0235b135 100644 --- a/guides/source/active_record_migrations.md +++ b/guides/source/active_record_migrations.md @@ -425,7 +425,7 @@ change_column :products, :part_number, :text This changes the column `part_number` on products table to be a `:text` field. Besides `change_column`, the `change_column_null` and `change_column_default` -methods are used specifically to change the null and default values of a +methods are used specifically to change a not null constraint and default values of a column. ```ruby |