1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<?php
namespace Illuminate\Tests\Integration\Database\Fixtures;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\Type;
class TinyInteger extends Type
{
/**
* The name of the custom type.
*
* @var string
*/
const NAME = 'tinyinteger';
/**
* Gets the SQL declaration snippet for a field of this type.
*
* @param array $fieldDeclaration
* @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform
* @return string
*/
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
return 'TINYINT';
}
/**
* The name of the custom type.
*
* @return string
*/
public function getName()
{
return self::NAME;
}
}
|