From bc1e1dde5b42561a83b2fbeec1075812f4174bce Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 24 Mar 2012 19:50:25 -0500 Subject: [PATCH] Improving change log. --- changes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changes.md b/changes.md index d78e7a8f..e55d69fd 100644 --- a/changes.md +++ b/changes.md @@ -54,7 +54,7 @@ Simply add a **parent::__construct();** to to any of your controllers that have ### Prefix Laravel migration created indexes with their table name. -If you have created indexes on tables using the Laravel migration system and you used to the default index naming scheme provided by Laravel, prefix the index names with their table name on your database. +If you have created indexes on tables using the Laravel migration system and you used to the default index naming scheme provided by Laravel, prefix the index names with their table name on your database. So, if the current index name is "id_unique" on the "users" table, make the index name "users_id_unique". ### Update Eloquent many-to-many tables.