aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAlex Robbin <alex@robbinsweb.biz>2013-03-07 23:24:27 -0500
committerAlex Robbin <alex@robbinsweb.biz>2013-03-07 23:24:27 -0500
commit9b27e13c05a1896bfe0fbd65c496de33251cad35 (patch)
tree914403372dccd5cf569db9726cc998277c1661d3 /guides
parentb045b5c1636b61cb38d87ac761289fe0794b0f20 (diff)
downloadrails-9b27e13c05a1896bfe0fbd65c496de33251cad35.tar.gz
rails-9b27e13c05a1896bfe0fbd65c496de33251cad35.tar.bz2
rails-9b27e13c05a1896bfe0fbd65c496de33251cad35.zip
remove the new metadata note in Rails 4 upgrade guide
this was pulled out of Rails 4, see rails/rails#8399 for the discussion
Diffstat (limited to 'guides')
-rw-r--r--guides/source/4_0_release_notes.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md
index 463da488f2..37afb25181 100644
--- a/guides/source/4_0_release_notes.md
+++ b/guides/source/4_0_release_notes.md
@@ -178,12 +178,6 @@ Please refer to the [Changelog](https://github.com/rails/rails/blob/master/activ
If migrating down, the given migration / block is run normally.
See the [Guide on Migration](https://github.com/rails/rails/blob/master/guides/source/migrations.md#reverting-previous-migrations)
-* Adds some metadata columns to `schema_migrations` table.
-
- * `migrated_at`
- * `fingerprint` - an md5 hash of the migration.
- * `name` - the filename minus version and extension.
-
* Adds PostgreSQL array type support. Any datatype can be used to create an array column, with full migration and schema dumper support.
* Add `Relation#load` to explicitly load the record and return `self`.