20 lines
311 B
PHP
20 lines
311 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\Generic;
|
|
|
|
/**
|
|
* @Entity
|
|
* @Table(name="boolean_model")
|
|
*/
|
|
class DecimalModel
|
|
{
|
|
/**
|
|
* @Id @Column(type="integer")
|
|
* @GeneratedValue(strategy="AUTO")
|
|
*/
|
|
public $id;
|
|
/**
|
|
* @Column(type="boolean", default=true)
|
|
*/
|
|
public $boolean;
|
|
} |