Merge pull request #529 from francisbesset/options_join_columns
[DDC-2182] Options join columns
This commit is contained in:
commit
df1336dd26
@ -399,13 +399,13 @@ class SchemaTool
|
|||||||
|
|
||||||
unset($mapping['options']['unsigned']);
|
unset($mapping['options']['unsigned']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($mapping['options']['fixed'])) {
|
if (isset($mapping['options']['fixed'])) {
|
||||||
$options['fixed'] = $mapping['options']['fixed'];
|
$options['fixed'] = $mapping['options']['fixed'];
|
||||||
|
|
||||||
unset($mapping['options']['fixed']);
|
unset($mapping['options']['fixed']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$options['customSchemaOptions'] = $mapping['options'];
|
$options['customSchemaOptions'] = $mapping['options'];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -576,6 +576,10 @@ class SchemaTool
|
|||||||
$columnOptions['notnull'] = !$joinColumn['nullable'];
|
$columnOptions['notnull'] = !$joinColumn['nullable'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($fieldMapping['options'])) {
|
||||||
|
$columnOptions['options'] = $fieldMapping['options'];
|
||||||
|
}
|
||||||
|
|
||||||
if ($fieldMapping['type'] == "string" && isset($fieldMapping['length'])) {
|
if ($fieldMapping['type'] == "string" && isset($fieldMapping['length'])) {
|
||||||
$columnOptions['length'] = $fieldMapping['length'];
|
$columnOptions['length'] = $fieldMapping['length'];
|
||||||
} elseif ($fieldMapping['type'] == "decimal") {
|
} elseif ($fieldMapping['type'] == "decimal") {
|
||||||
@ -609,7 +613,7 @@ class SchemaTool
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$blacklistedFks[$compositeName] = true;
|
$blacklistedFks[$compositeName] = true;
|
||||||
} elseif (!isset($blacklistedFks[$compositeName])) {
|
} elseif (!isset($blacklistedFks[$compositeName])) {
|
||||||
$addedFks[$compositeName] = array('foreignTableName' => $foreignTableName, 'foreignColumns' => $foreignColumns);
|
$addedFks[$compositeName] = array('foreignTableName' => $foreignTableName, 'foreignColumns' => $foreignColumns);
|
||||||
$theJoinTable->addUnnamedForeignKeyConstraint(
|
$theJoinTable->addUnnamedForeignKeyConstraint(
|
||||||
|
52
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2182Test.php
Normal file
52
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2182Test.php
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||||||
|
|
||||||
|
use Doctrine\ORM\UnitOfWork;
|
||||||
|
|
||||||
|
require_once __DIR__ . '/../../../TestInit.php';
|
||||||
|
|
||||||
|
class DDC2182Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
{
|
||||||
|
public function testPassColumnOptionsToJoinColumns()
|
||||||
|
{
|
||||||
|
if ($this->_em->getConnection()->getDatabasePlatform()->getName() != 'mysql') {
|
||||||
|
$this->markTestSkipped("This test is useful for all databases, but designed only for mysql.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql = $this->_schemaTool->getCreateSchemaSql(array(
|
||||||
|
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC2182OptionParent'),
|
||||||
|
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC2182OptionChild'),
|
||||||
|
));
|
||||||
|
|
||||||
|
$this->assertEquals("CREATE TABLE DDC2182OptionParent (id INT UNSIGNED NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE = InnoDB", $sql[0]);
|
||||||
|
$this->assertEquals("CREATE TABLE DDC2182OptionChild (id VARCHAR(255) NOT NULL, parent_id INT UNSIGNED DEFAULT NULL, INDEX IDX_B314D4AD727ACA70 (parent_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE = InnoDB", $sql[1]);
|
||||||
|
$this->assertEquals("ALTER TABLE DDC2182OptionChild ADD CONSTRAINT FK_B314D4AD727ACA70 FOREIGN KEY (parent_id) REFERENCES DDC2182OptionParent (id)", $sql[2]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Entity
|
||||||
|
* @Table
|
||||||
|
*/
|
||||||
|
class DDC2182OptionParent
|
||||||
|
{
|
||||||
|
/** @Id @Column(type="integer", options={"unsigned": true}) */
|
||||||
|
private $id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Entity
|
||||||
|
* @Table
|
||||||
|
*/
|
||||||
|
class DDC2182OptionChild
|
||||||
|
{
|
||||||
|
/** @Id @Column */
|
||||||
|
private $id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ManyToOne(targetEntity="DDC2182OptionParent")
|
||||||
|
* @JoinColumn(referencedColumnName="id")
|
||||||
|
*/
|
||||||
|
private $parent;
|
||||||
|
}
|
@ -44,8 +44,8 @@ class SchemaToolTest extends \Doctrine\Tests\OrmTestCase
|
|||||||
$schema = $schemaTool->getSchemaFromMetadata($classes);
|
$schema = $schemaTool->getSchemaFromMetadata($classes);
|
||||||
|
|
||||||
$expected = array('foo' => 'bar', 'baz' => array('key' => 'val'));
|
$expected = array('foo' => 'bar', 'baz' => array('key' => 'val'));
|
||||||
|
|
||||||
$this->assertEquals($expected, $schema->getTable('TestEntityWithAnnotationOptionsAttribute')->getOptions(), "options annotation are passed to the tables optionss");
|
$this->assertEquals($expected, $schema->getTable('TestEntityWithAnnotationOptionsAttribute')->getOptions(), "options annotation are passed to the tables options");
|
||||||
$this->assertEquals($expected, $schema->getTable('TestEntityWithAnnotationOptionsAttribute')->getColumn('test')->getCustomSchemaOptions(), "options annotation are passed to the columns customSchemaOptions");
|
$this->assertEquals($expected, $schema->getTable('TestEntityWithAnnotationOptionsAttribute')->getColumn('test')->getCustomSchemaOptions(), "options annotation are passed to the columns customSchemaOptions");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user