Luís Cobucci
|
fda6fdd9fb
|
Use "::class" syntax on "tests" directory
|
2016-12-08 18:13:39 +01:00 |
|
Luís Cobucci
|
74c8a08828
|
Use short-array syntax on "tests" directory
|
2016-12-07 23:33:41 +01:00 |
|
Mikhail Shamin
|
b173763bbb
|
Remove full qualified class names in tests
|
2016-05-11 03:00:44 +07:00 |
|
Mikhail Shamin
|
bf322b903d
|
Optimize imports. Remove full qualified class names
|
2016-05-11 01:55:12 +07:00 |
|
Patrick Poulain
|
9461839d42
|
Fix PostgreSql Tests
|
2016-02-15 21:07:09 +01:00 |
|
Javier Spagnoletti
|
97cc49033e
|
Updated syntax for ``integer ` and `boolean `` types
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets |
| License | MIT
| Doc PR |
Used short syntax for ```integer``` and ```boolean``` types.
**Before**
```php
/**
* @var integer
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var boolean
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
**After**
```php
/**
* @var int
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var bool
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
|
2015-07-14 15:30:13 -03:00 |
|
Giorgio Premi
|
6cb3fa8fb7
|
Removed all useless occurrence of require_once TestInit.php
|
2014-04-07 14:43:25 +02:00 |
|
Guilherme Blanco
|
b314476599
|
ORM side fixes.
|
2013-08-08 22:01:26 -04:00 |
|
Benjamin Eberlei
|
4aafeaf7a6
|
Fix test on PostgreSQL
|
2012-07-09 09:55:41 +02:00 |
|
Benjamin Eberlei
|
6e924f2a2c
|
[DDC-1657] Prove that DBAL changes also work in ORM, not leading to drop sequence statements on postgresql with SERIAL pks.
|
2012-07-08 18:22:38 +02:00 |
|
Benjamin Eberlei
|
01697fee3d
|
Fix failing PostgreSQL tests
|
2011-11-12 22:16:39 +01:00 |
|
Benjamin Eberlei
|
42c5382a03
|
DDC-1172 - Handle sequence dropping in SchemaTool.
|
2011-06-16 22:34:04 +02:00 |
|
Benjamin Eberlei
|
78aa893efd
|
Adjust tests to changes in DBAL dependency with regard to automatic foreign key and index naming.
|
2011-03-05 10:08:30 +01:00 |
|
Benjamin Eberlei
|
97b80d69f1
|
Fix several test-issues after upgrading dependencies and a Bug in a SchemaTool and DatabaseDriver
|
2010-11-18 23:07:32 +01:00 |
|
Roman S. Borschel
|
506973a92e
|
[DDC-757] Fixed. Also fixed some failing postgres tests due to changes to the default allocation size for sequences.
|
2010-08-26 13:47:37 +02:00 |
|
Benjamin Eberlei
|
98785122d3
|
DDC-562 - Finally able to generate Unique Constraint on @OneToOne foreign keys
|
2010-08-10 22:07:43 +02:00 |
|
Benjamin Eberlei
|
427d4eed29
|
DDC-541 - Schema Table now return Pk, then Fk, then normal columns in that order
|
2010-05-01 03:57:58 +02:00 |
|
beberlei
|
839603dafe
|
[2.0] DDC-365 - Added tests for several missing column types - also showing that decimals come and go correctly into the database.
|
2010-02-26 19:39:12 +00:00 |
|
beberlei
|
595993b7aa
|
[2.0] DDC-301 - Fix side-effect to test which caused test-failure because of previous commit.
|
2010-02-04 19:25:37 +00:00 |
|
beberlei
|
731c9718aa
|
[2.0] DDC-40 - Matching annotations <-> auto sequence expectations.
|
2009-12-11 00:56:47 +00:00 |
|
jwage
|
7c56bfa156
|
[2.0] Fixes issue with unique annotation on columns (closes #2476)
|
2009-09-08 18:12:01 +00:00 |
|
romanb
|
f0da001770
|
[2.0] Fixed and enhanced tests.
|
2009-09-05 09:22:34 +00:00 |
|
romanb
|
b1d34fca1c
|
[2.0] Work on SchemaTool and DBAL.
|
2009-08-21 18:13:22 +00:00 |
|