1
0
mirror of synced 2025-02-03 22:09:26 +03:00
doctrine2/tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.DDC1170Entity.php

21 lines
402 B
PHP
Raw Normal View History

2011-12-05 17:35:49 -02:00
<?php
use Doctrine\ORM\Mapping\ClassMetadataInfo;
$metadata->mapField(
[
2011-12-05 17:35:49 -02:00
'id' => true,
'fieldName' => 'id',
'columnDefinition' => 'INT unsigned NOT NULL',
]
);
2011-12-05 17:35:49 -02:00
$metadata->mapField(
[
2011-12-05 17:35:49 -02:00
'fieldName' => 'value',
'columnDefinition' => 'VARCHAR(255) NOT NULL'
]
);
2011-12-05 17:35:49 -02:00
$metadata->setIdGeneratorType(ClassMetadataInfo::GENERATOR_TYPE_NONE);