From 4b43a8c2675fda6bd359e8233f37baac3608c956 Mon Sep 17 00:00:00 2001 From: jwage Date: Tue, 17 Feb 2009 23:26:46 +0000 Subject: [PATCH] [2.0] Removing index, fk and table name formatting from DBAL configuration class --- lib/Doctrine/DBAL/Configuration.php | 48 ++++------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/lib/Doctrine/DBAL/Configuration.php b/lib/Doctrine/DBAL/Configuration.php index a7ad07f4f..dc9dab229 100644 --- a/lib/Doctrine/DBAL/Configuration.php +++ b/lib/Doctrine/DBAL/Configuration.php @@ -48,63 +48,27 @@ class Configuration public function __construct() { $this->_attributes = array( - 'quoteIdentifiers' => false, - 'indexNameFormat' => '%s_idx', - 'sequenceNameFormat' => '%s_seq', - 'tableNameFormat' => '%s' + 'quoteIdentifiers' => false ); } - + public function getQuoteIdentifiers() { return $this->_attributes['quoteIdentifiers']; } - + 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) { foreach ($types as $name => $typeClassName) { Type::addCustomType($name, $typeClassName); } } - + public function setTypeOverrides(array $overrides) { foreach ($override as $name => $typeClassName) {