aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-14 20:42:38 -0500
committerZachary Scott <e@zzak.io>2014-12-14 20:42:38 -0500
commit6b96a1eae12dc0065d2e2d79f9b9f6929bf04a80 (patch)
tree782f98a3d1779143b836e241b5c554d0ce6ddfbf /guides/source/getting_started.md
parent7607687c9166f8b2f8aa4d107bdbaadb99d4bb43 (diff)
downloadrails-6b96a1eae12dc0065d2e2d79f9b9f6929bf04a80.tar.gz
rails-6b96a1eae12dc0065d2e2d79f9b9f6929bf04a80.tar.bz2
rails-6b96a1eae12dc0065d2e2d79f9b9f6929bf04a80.zip
Add `null` option to timestamps as migration generator does [ci skip]
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index c2a0fde54e..a5e35f75a0 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -677,7 +677,7 @@ class CreateArticles < ActiveRecord::Migration
t.string :title
t.text :text
- t.timestamps
+ t.timestamps null: false
end
end
end
@@ -1539,7 +1539,7 @@ class CreateComments < ActiveRecord::Migration
# this line adds an integer column called `article_id`.
t.references :article, index: true
- t.timestamps
+ t.timestamps null: false
end
end
end