* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Propel\PropelBundle\Tests\Fixtures; use Propel\Runtime\Util\PropelColumnTypes; class Column { private $name; private $type; public function __construct($name, $type) { $this->name = $name; $this->type = $type; } public function getType() { return $this->type; } public function isTextType() { if (!$this->type) { return false; } switch ($this->type) { case PropelColumnTypes::CHAR: case PropelColumnTypes::VARCHAR: case PropelColumnTypes::LONGVARCHAR: case PropelColumnTypes::BLOB: case PropelColumnTypes::CLOB: case PropelColumnTypes::CLOB_EMU: return true; } return false; } public function getSize() { return $this->isTextType() ? 255 : 0; } public function isNotNull() { return ('id' === $this->name); } }