Improving change log.

This commit is contained in:
Taylor Otwell 2012-03-24 19:50:25 -05:00
parent d9773d48ae
commit bc1e1dde5b
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ ### Call the parent controller's constructor from your controller.
### 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.