mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #9817 from creative-commoners/pulls/4/fix-dbcomposite-indexspecs
FIX DBComposite getIndexSpecs method
This commit is contained in:
commit
ed5c1488c8
@ -331,7 +331,7 @@ abstract class DBComposite extends DBField
|
||||
if ($type = $this->getIndexType()) {
|
||||
$columns = array_map(function ($name) {
|
||||
return $this->getName() . $name;
|
||||
}, array_keys((array) static::config()->get('composite_db')));
|
||||
}, array_keys((array) $this->compositeDatabaseFields()));
|
||||
|
||||
return [
|
||||
'type' => $type,
|
||||
|
Loading…
Reference in New Issue
Block a user