1
0
Fork 0
mirror of synced 2025-04-01 12:26:11 +03:00
doctrine2/tests/Doctrine/Tests/Models/Generic/BooleanModel.php

20 lines
No EOL
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;
}