Merge pull request #21354 from yui-knk/fix/migration_file_timestamp

[ci skip] Fix migration file's timestamp
This commit is contained in:
Robin Dupret 2015-08-24 19:04:50 +02:00
commit be19bf3728
2 changed files with 2 additions and 2 deletions

View File

@ -459,7 +459,7 @@ module ActiveRecord
# Or equivalently, if +TenderloveMigration+ is defined as in the
# documentation for Migration:
#
# require_relative '2012121212_tenderlove_migration'
# require_relative '20121212123456_tenderlove_migration'
#
# class FixupTLMigration < ActiveRecord::Migration
# def change

View File

@ -652,7 +652,7 @@ can't be done.
You can use Active Record's ability to rollback migrations using the `revert` method:
```ruby
require_relative '2012121212_example_migration'
require_relative '20121212123456_example_migration'
class FixupExampleMigration < ActiveRecord::Migration
def change