12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
-
-
- namespace Doctrine\DBAL\Schema;
-
-
- class SchemaConfig
- {
-
-
- protected $_hasExplicitForeignKeyIndexes = false;
-
-
-
- protected $_maxIdentifierLength = 63;
-
-
-
- public function hasExplicitForeignKeyIndexes()
- {
- return $this->_hasExplicitForeignKeyIndexes;
- }
-
-
-
- public function setExplicitForeignKeyIndexes($flag)
- {
- $this->_hasExplicitForeignKeyIndexes = (bool)$flag;
- }
-
-
-
- public function setMaxIdentifierLength($length)
- {
- $this->_maxIdentifierLength = (int)$length;
- }
-
-
-
- public function getMaxIdentifierLength()
- {
- return $this->_maxIdentifierLength;
- }
- }
|