PR #188 make sure data synchro does not change enum db type (default value)

This commit is contained in:
odain
2021-04-01 18:29:45 +02:00
parent a997e528ec
commit 3afa783ba8

View File

@@ -5314,7 +5314,7 @@ class AttributeEnum extends AttributeString
// Right now the function is not passed the "target" SQL table, but if we improve this in the future
// we may call $this->GetSQLColHelper(true, true, $sDBTable); to take into account the actual 'enum' values
// in this table
return array($this->GetCode() => $this->GetSQLColHelper(true, false));
return array($this->GetCode() => $this->GetSQLColHelper(false, false));
}
/**