Commit e5b3b196 authored by Taylor Otwell's avatar Taylor Otwell

Updated change-log. Prepend table names to default index names in schema.

parent 453d4154
......@@ -25,3 +25,4 @@ Changes for 3.1:
- Fixed table prefix bug.
- Added Form::macro method.
- Added Route::forward method.
- Prepend table name to default index names in schema.
\ No newline at end of file
......@@ -136,7 +136,7 @@ class Table {
// the index that can be used when dropping indexes.
if (is_null($name))
{
$name = implode('_', $columns).'_'.$type;
$name = $this->name.implode('_', $columns).'_'.$type;
}
return $this->command($type, compact('name', 'columns'));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment