diff options
author | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2016-03-03 02:23:15 +0200 |
---|---|---|
committer | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2016-03-03 02:31:29 +0200 |
commit | 57dbf45675b39baf8359107caa08d30a77e7db59 (patch) | |
tree | db118b9664b09eba9dff2ed80f10fda18dbe4a52 /guides/source | |
parent | 1c315ad502feb685c65f921b3af12ad15a627dcd (diff) | |
download | rails-57dbf45675b39baf8359107caa08d30a77e7db59.tar.gz rails-57dbf45675b39baf8359107caa08d30a77e7db59.tar.bz2 rails-57dbf45675b39baf8359107caa08d30a77e7db59.zip |
Changed behaviour of timestamps helper by create_table migration generator [ci skip]
Diffstat (limited to 'guides/source')
-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 bd7dbd0f11..feb0de8eea 100644 --- a/guides/source/active_record_migrations.md +++ b/guides/source/active_record_migrations.md @@ -287,7 +287,7 @@ class CreateProducts < ActiveRecord::Migration[5.0] t.string :name t.text :description - t.timestamps null: false + t.timestamps end end end |