mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-03 15:33:37 +03:00
70 lines
1.6 KiB
PHP
70 lines
1.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zend Framework (http://framework.zend.com/)
|
||
|
*
|
||
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
||
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
|
||
|
namespace Zend\Db\Sql\Ddl\Column;
|
||
|
|
||
|
class Decimal extends Column
|
||
|
{
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
protected $precision;
|
||
|
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
protected $scale;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $specification = '%s DECIMAL(%s) %s %s';
|
||
|
|
||
|
/**
|
||
|
* @param null|string $name
|
||
|
* @param int $precision
|
||
|
* @param null|int $scale
|
||
|
*/
|
||
|
public function __construct($name, $precision, $scale = null)
|
||
|
{
|
||
|
$this->name = $name;
|
||
|
$this->precision = $precision;
|
||
|
$this->scale = $scale;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getExpressionData()
|
||
|
{
|
||
|
$spec = $this->specification;
|
||
|
$params = array();
|
||
|
|
||
|
$types = array(self::TYPE_IDENTIFIER, self::TYPE_LITERAL);
|
||
|
$params[] = $this->name;
|
||
|
$params[] = $this->precision;
|
||
|
|
||
|
if ($this->scale !== null) {
|
||
|
$params[1] .= ', ' . $this->scale;
|
||
|
}
|
||
|
|
||
|
$types[] = self::TYPE_LITERAL;
|
||
|
$params[] = (!$this->isNullable) ? 'NOT NULL' : '';
|
||
|
|
||
|
$types[] = ($this->default !== null) ? self::TYPE_VALUE : self::TYPE_LITERAL;
|
||
|
$params[] = ($this->default !== null) ? $this->default : '';
|
||
|
|
||
|
return array(array(
|
||
|
$spec,
|
||
|
$params,
|
||
|
$types,
|
||
|
));
|
||
|
}
|
||
|
}
|