mirror of
https://github.com/silverstripe/silverstripe-postgresql
synced 2024-10-22 17:05:45 +02:00
FIXED: Minor typo in string concatenation
This commit is contained in:
parent
9924c8d53a
commit
ef4cd20cfa
@ -485,7 +485,7 @@ class PostgreSQLDatabase extends SS_Database {
|
||||
// Assume all indexes also contain the table name
|
||||
// MD5 the table/index name combo to keep it to a fixed length.
|
||||
// Exclude the prefix so that the trigger name can be easily generated from the index name
|
||||
$indexNamePG = "{$prefix}_" . md5("$tableName}_{$indexName}");
|
||||
$indexNamePG = "{$prefix}_" . md5("{$tableName}_{$indexName}");
|
||||
|
||||
// Limit to 63 characters
|
||||
if (strlen($indexNamePG) > 63)
|
||||
|
Loading…
Reference in New Issue
Block a user