38bfcc6a7a
When you forget about defining the ID/PK Column, then this ugly Notice appear. Now it will throw nice Exception.
22 lines
260 B
PHP
22 lines
260 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\DDC6412;
|
|
|
|
/**
|
|
* @Entity
|
|
*/
|
|
class DDC6412File
|
|
{
|
|
/**
|
|
* @Column(type="integer")
|
|
* @GeneratedValue
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* @Column(length=50, name="file_name")
|
|
*/
|
|
public $name;
|
|
}
|
|
|