BUGFIX: Add double quotes to index columns for more reliable DB-schema management.

This commit is contained in:
Sam Minnee 2012-08-21 16:24:05 +12:00
parent dd302a68a7
commit 296ee1fa0f

View File

@ -384,7 +384,7 @@ class Versioned extends DataExtension {
$versionIndexes = array_merge(
array(
'RecordID_Version' => array('type' => 'unique', 'value' => 'RecordID,Version'),
'RecordID_Version' => array('type' => 'unique', 'value' => '"RecordID","Version"'),
'RecordID' => true,
'Version' => true,
),