[2.0] Removing index, fk and table name formatting from DBAL configuration class
This commit is contained in:
parent
9dfab03ee0
commit
4b43a8c267
@ -48,10 +48,7 @@ class Configuration
|
|||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->_attributes = array(
|
$this->_attributes = array(
|
||||||
'quoteIdentifiers' => false,
|
'quoteIdentifiers' => false
|
||||||
'indexNameFormat' => '%s_idx',
|
|
||||||
'sequenceNameFormat' => '%s_seq',
|
|
||||||
'tableNameFormat' => '%s'
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -62,40 +59,7 @@ class Configuration
|
|||||||
|
|
||||||
public function setQuoteIdentifiers($bool)
|
public function setQuoteIdentifiers($bool)
|
||||||
{
|
{
|
||||||
$this->_attributes['quoteIdentifiers'] = (bool)$bool;
|
$this->_attributes['quoteIdentifiers'] = (bool) $bool;
|
||||||
}
|
|
||||||
|
|
||||||
public function getIndexNameFormat()
|
|
||||||
{
|
|
||||||
return $this->_attributes['indexNameFormat'];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setIndexNameFormat($format)
|
|
||||||
{
|
|
||||||
//TODO: check format?
|
|
||||||
$this->_attributes['indexNameFormat'] = $format;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSequenceNameFormat()
|
|
||||||
{
|
|
||||||
return $this->_attributes['sequenceNameFormat'];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setSequenceNameFormat($format)
|
|
||||||
{
|
|
||||||
//TODO: check format?
|
|
||||||
$this->_attributes['sequenceNameFormat'] = $format;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getTableNameFormat()
|
|
||||||
{
|
|
||||||
return $this->_attributes['tableNameFormat'];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setTableNameFormat($format)
|
|
||||||
{
|
|
||||||
//TODO: check format?
|
|
||||||
$this->_attributes['tableNameFormat'] = $format;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setCustomTypes(array $types)
|
public function setCustomTypes(array $types)
|
||||||
|
Loading…
Reference in New Issue
Block a user