aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-12-30 00:18:50 +0100
committerXavier Noria <fxn@hashref.com>2009-12-30 00:18:50 +0100
commit9069761ef7f3dfef8d038756fbbcb00b9aef7813 (patch)
treedc1b07217417c620220459124d88395231d4baf1 /railties/guides
parentb476ab7e3af37f91a691b18d7ffdcc9349c8ec46 (diff)
downloadrails-9069761ef7f3dfef8d038756fbbcb00b9aef7813.tar.gz
rails-9069761ef7f3dfef8d038756fbbcb00b9aef7813.tar.bz2
rails-9069761ef7f3dfef8d038756fbbcb00b9aef7813.zip
fixes broken links in migrations guide
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/migrations.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile
index 5f49ac41f5..771c3e2523 100644
--- a/railties/guides/source/migrations.textile
+++ b/railties/guides/source/migrations.textile
@@ -582,7 +582,7 @@ The Active Record way claims that intelligence belongs in your models, not in th
Validations such as +validates_uniqueness_of+ are one way in which models can enforce data integrity. The +:dependent+ option on associations allows models to automatically destroy child objects when the parent is destroyed. Like anything which operates at the application level these cannot guarantee referential integrity and so some people augment them with foreign key constraints.
-Although Active Record does not provide any tools for working directly with such features, the +execute+ method can be used to execute arbitrary SQL. There are also a number of plugins such as "foreign_key_migrations":http://github.com/harukizaemon/foreign_key_migrations/tree/master which add foreign key support to Active Record (including support for dumping foreign keys in +db/schema.rb+).
+Although Active Record does not provide any tools for working directly with such features, the +execute+ method can be used to execute arbitrary SQL. There are also a number of plugins such as "foreign_key_migrations":http://github.com/harukizaemon/redhillonrails/tree/master/foreign_key_migrations/ which add foreign key support to Active Record (including support for dumping foreign keys in +db/schema.rb+).
h3. Changelog