1
0
mirror of synced 2025-01-19 06:51:40 +03:00

[2.0] DDC-84 - Add Mysql Platform unittests for incremental changes of the metadata for the schematool update function. Fixed some quirks in the Unit-Test suite alongside, Fixed changes of length in SchemaTool update - Changes in two files were missing.

This commit is contained in:
beberlei 2009-10-31 22:24:29 +00:00
parent 4d3c4a704a
commit e2962c73dc
2 changed files with 6 additions and 1 deletions

View File

@ -33,6 +33,11 @@ class CmsAddress
*/ */
public $city; public $city;
/**
* Testfield for Schema Updating Tests.
*/
public $street;
/** /**
* @OneToOne(targetEntity="CmsUser") * @OneToOne(targetEntity="CmsUser")
* @JoinColumn(name="user_id", referencedColumnName="id") * @JoinColumn(name="user_id", referencedColumnName="id")

View File

@ -14,7 +14,7 @@ class DecimalModel
*/ */
public $id; public $id;
/** /**
* @Column(type="decimal", scale=5, precision=2) * @Column(type="decimal", scale=2, precision=5)
*/ */
public $decimal; public $decimal;
} }