1
0
mirror of synced 2025-01-18 22:41:43 +03:00

20 lines
321 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Generic;
/**
* @Entity
* @Table(name="date_time_model")
*/
class DecimalModel
{
/**
* @Id @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
public $id;
/**
* @Column(type="decimal", scale=5, precision=2)
*/
public $decimal;
}