Commit 51a0a912 authored by guilhermeblanco's avatar guilhermeblanco

[2.0] Other fixes, removed E_FATAL of duplicate declaration and added test for Boolean type

parent 3ef0bf50
<?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;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment