diff options
author | Zachary Scott <e@zzak.io> | 2014-12-14 20:30:58 -0500 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-14 20:30:58 -0500 |
commit | 67fe22d8f97431a861c3c561bb8d486d21c01546 (patch) | |
tree | db5378d60360cd08491ca1e624d7bd094dc7d718 /guides/source | |
parent | d06b473a5ce5027e5b24d72cc873786bac24542f (diff) | |
download | rails-67fe22d8f97431a861c3c561bb8d486d21c01546.tar.gz rails-67fe22d8f97431a861c3c561bb8d486d21c01546.tar.bz2 rails-67fe22d8f97431a861c3c561bb8d486d21c01546.zip |
Use generic timestamp for generated migration file. [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 7f5caf6096..7c40529a30 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -667,8 +667,8 @@ rake commands to run migrations, and it's possible to undo a migration after it's been applied to your database. Migration filenames include a timestamp to ensure that they're processed in the order that they were created. -If you look in the `db/migrate/20140120191729_create_articles.rb` file (remember, -yours will have a slightly different name), here's what you'll find: +If you look in the `db/migrate/YYYYMMDDHHMMSS_create_articles.rb` file +(remember, yours will have a slightly different name), here's what you'll find: ```ruby class CreateArticles < ActiveRecord::Migration |