1
0
mirror of synced 2025-01-19 06:51:40 +03:00

20 lines
302 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Generic;
/**
* @Entity
* @Table(name="boolean_model")
*/
2009-09-05 09:22:34 +00:00
class BooleanModel
{
/**
* @Id @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
public $id;
/**
2009-09-05 09:22:34 +00:00
* @Column(type="boolean")
*/
2009-09-05 09:22:34 +00:00
public $booleanField;
}