aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_migrations.md
diff options
context:
space:
mode:
authorKen Greeff <ken@kengreeff.com>2019-03-27 11:57:33 +1100
committerRafael França <rafaelmfranca@gmail.com>2019-03-26 20:57:33 -0400
commit00690b27e5c3b1beaa9f6e73fec9e9a1c639f748 (patch)
tree01979e79ac47a23da9966ecac2902b00dcc8d86b /guides/source/active_record_migrations.md
parentbde5f3bfc6c16fd9f0c1acff2976a4bfff50b02f (diff)
downloadrails-00690b27e5c3b1beaa9f6e73fec9e9a1c639f748.tar.gz
rails-00690b27e5c3b1beaa9f6e73fec9e9a1c639f748.tar.bz2
rails-00690b27e5c3b1beaa9f6e73fec9e9a1c639f748.zip
Schema version documentation (#35762)
* Update active_record_migrations.md * Change year to match others [Ken Greeff + Rafael Mendonça França]
Diffstat (limited to 'guides/source/active_record_migrations.md')
-rw-r--r--guides/source/active_record_migrations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md
index be0bc495f7..50d4a4c57d 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -948,7 +948,7 @@ If `:ruby` is selected, then the schema is stored in `db/schema.rb`. If you look
at this file you'll find that it looks an awful lot like one very big migration:
```ruby
-ActiveRecord::Schema.define(version: 20080906171750) do
+ActiveRecord::Schema.define(version: 2008_09_06_171750) do
create_table "authors", force: true do |t|
t.string "name"
t.datetime "created_at"