1
0
mirror of synced 2025-02-01 04:51:45 +03:00

14 lines
238 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\NullDefault;
2014-12-08 01:34:30 +01:00
/** @Entity */
class NullDefaultColumn
{
2014-12-08 01:34:30 +01:00
/** @Id @GeneratedValue @Column(type="integer") */
public $id;
2014-12-08 01:34:30 +01:00
/** @Column(options={"default":NULL}) */
public $nullDefault;
}