- 01 Jan, 2018 10 commits
-
-
Adrien Crivelli authored
-
Adrien Crivelli authored
-
Adrien Crivelli authored
We prefer to test across all platforms at once with `SchemaManagerFunctionalTestCase::testEscapedDefaultValueMustBePreserved()` rather than to test only a single specific platform.
-
Adrien Crivelli authored
-
Adrien Crivelli authored
-
Adrien Crivelli authored
-
Adrien Crivelli authored
-
Adrien Crivelli authored
-
Adrien Crivelli authored
-
Adrien Crivelli authored
It is now possible to use `\` in non-escaped default values for a column, and it will be automatically escaped for platforms that need it. Previously this lead to a confusion when diffing actual and expected schema leading to perpetual out of sync schema. Before: ```php /** * @ORM\Column(options={"default" = "Foo\\Bar"})) */ private $name; ``` After: ```php /** * @ORM\Column(options={"default" = "Foo\Bar"})) */ private $name; ``` And the result in database will be a default value exactly as written in the annotation, that is `Foo\Bar`.
-
- 29 Dec, 2017 4 commits
-
-
Marco Pivetta authored
Travis: Test against lowest and dev dependencies
-
Marco Pivetta authored
Removed the "OCI8: SQL Queries with Question Marks" section
-
Marco Pivetta authored
Enabled testFetchLongBlob() for PDO SQL Server driver
-
Michael Moravec authored
-
- 26 Dec, 2017 3 commits
-
-
Marco Pivetta authored
PostgreSQL 10 support
-
Sergei Morozov authored
-
Simon Podlipsky authored
-
- 24 Dec, 2017 2 commits
-
-
Marco Pivetta authored
Removed pre-7.1 quirks
-
Michael Moravec authored
-
- 22 Dec, 2017 2 commits
-
-
Marco Pivetta authored
Incremental check for coding standards in pull requests
-
Sergei Morozov authored
-
- 20 Dec, 2017 3 commits
-
-
Marco Pivetta authored
Combine consecutives unsets
-
Michael Moravec authored
-
Michael Moravec authored
Added test case for resource as parameter
-
- 19 Dec, 2017 1 commit
-
-
Gabriel Caruso authored
-
- 17 Dec, 2017 2 commits
-
-
Sergei Morozov authored
Fixes #2917.
-
Marco Pivetta authored
Clean up note on query builder setParameter documentation
-
- 16 Dec, 2017 1 commit
-
-
Marco Pivetta authored
Clean elses
-
- 15 Dec, 2017 1 commit
-
-
Jonathan Vollebregt authored
-
- 14 Dec, 2017 1 commit
-
-
Gabriel Caruso authored
-
- 09 Dec, 2017 2 commits
-
-
Marco Pivetta authored
Refactoring tests
-
Marco Pivetta authored
Use Null Coalesce Operator
-
- 08 Dec, 2017 4 commits
-
-
Marco Pivetta authored
Improve deprecation wording in `Doctrine\DBAL\Schema\Column#setOptions()`
-
Grégoire Paris authored
People that are starting a new project will immediately know what this is about, but people upgrading doctrine might get a lot of these and should have a better clue regarding what this is about.
-
Marco Pivetta authored
Validate options
-
Tomáš Holan authored
-
- 07 Dec, 2017 4 commits
-
-
Grégoire Paris authored
People do not need to know that this will be implemented as an exception.
-
Grégoire Paris authored
-
Gabriel Caruso authored
-
Tomáš Holan authored
-