diff options
author | yui-knk <spiketeika@gmail.com> | 2015-03-22 19:18:00 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-03-22 19:18:00 +0900 |
commit | 4f578ec36a02533d1959ddf4592e5cb4bc38be84 (patch) | |
tree | 5e3623139e13abe1489f2bb0172897183204ee5e /guides | |
parent | fdf55619652fc5200d000241c545323c46bd6b79 (diff) | |
download | rails-4f578ec36a02533d1959ddf4592e5cb4bc38be84.tar.gz rails-4f578ec36a02533d1959ddf4592e5cb4bc38be84.tar.bz2 rails-4f578ec36a02533d1959ddf4592e5cb4bc38be84.zip |
[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 |