diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2012-11-29 05:30:31 -0800 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2012-11-29 05:30:31 -0800 |
commit | 9715d0a30a9df2cf54cb49e6db854fc0c419bdb9 (patch) | |
tree | 62ad2af65e3ce60aecc95bb7be50a4ddc686ca01 /guides | |
parent | e6b8452e58a4f7d92bce13bef6060ec9fa6f7d60 (diff) | |
download | rails-9715d0a30a9df2cf54cb49e6db854fc0c419bdb9.tar.gz rails-9715d0a30a9df2cf54cb49e6db854fc0c419bdb9.tar.bz2 rails-9715d0a30a9df2cf54cb49e6db854fc0c419bdb9.zip |
Migrations: add 'Active Record' to title
Other guides that talk about Active Record specific features include the
name of the library in the title, this one should too for consistency.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/migrations.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md index 471fcf5663..e6d2f6e0a9 100644 --- a/guides/source/migrations.md +++ b/guides/source/migrations.md @@ -1,5 +1,5 @@ -Migrations -========== +Active Record Migrations +======================== Migrations are a feature of Active Record that allows you to evolve your database schema over time. Rather than write schema modifications in pure SQL, |