gollumsf/doctrine-tinyint

Doctrine MYSQL 的 tinyint 类型

v1.0.8 2022-05-20 21:56 UTC

This package is auto-updated.

Last update: 2024-09-06 14:37:23 UTC


README

Doctrine MYSQL 的 tinyint 类型

安装

composer require gollumsf/doctrine-tinyint

配置

doctrine:
    dbal:
        types:
            tinyint:  GollumSF\Doctrine\TinyInt

使用

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;
use GollumSF\Doctrine\TinyInt;

#[ORM\Entity]
#[ORM\Table(name: 'entities')]
class Entity {
	
	#[Column(name: 'tinyint', type: TinyInt::TINYINT)]
	private int $tinyint;
	
	/////////
	// ... //
	/////////
	
}