- 16 Oct, 2018 2 commits
-
-
Ben Davies authored
-
Ben Davies authored
-
- 11 Jul, 2018 1 commit
-
-
Sergei Morozov authored
-
- 03 Jul, 2018 1 commit
-
-
Michael Moravec authored
-
- 01 Jul, 2018 1 commit
-
-
Vladimir Reznichenko authored
-
- 27 Jun, 2018 1 commit
-
-
Michael Moravec authored
-
- 19 Jun, 2018 2 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
Closes #3187.
-
- 06 Jun, 2018 1 commit
-
-
Michael Moravec authored
-
- 30 May, 2018 1 commit
-
-
Matty Driessen authored
-
- 21 May, 2018 1 commit
-
-
Sergei Morozov authored
-
- 15 May, 2018 2 commits
-
-
Alessandro Minoccheri authored
-
Michele Locati authored
-
- 12 May, 2018 1 commit
-
-
Sergei Morozov authored
1. Use the actual dsdriver distribution 2. Introduced `AbstractPlatform::getCharMaxLength()` since `CHAR` and `VARCHAR` limitations are different on DB2.
-
- 11 May, 2018 2 commits
-
-
Timo Bakx authored
-
Robin Appelman authored
If a PRIMARY KEY field is defined in sqlite without autoincrement then keys might be reused when rows are deleted, explicitly settings autoincrement will prevent this. Autoincrement is not enabled by default due to additional overhead introduced with autoincrement bookkeeping and should only be enabled when the additional uniqueness is required.
-
- 29 Apr, 2018 1 commit
-
-
Sergei Morozov authored
For testing purposes and not only, it may be needed to evaluate an arbitrary SQL expression (see https://github.com/doctrine/dbal/pull/3013, https://github.com/doctrine/dbal/pull/3108). Instead of doing `str_replace()` on an expected string, one could specify the expression explicitly.
-
- 28 Apr, 2018 1 commit
-
-
Sergei Morozov authored
The SQLite and Oracle platforms produces a `ROUND()`'ed or `TRUNC()`'ated difference between the datetimes. However it should be the difference between dates.
-
- 01 Apr, 2018 1 commit
-
-
Michael Moravec authored
-
- 29 Mar, 2018 1 commit
-
-
Stefan Lorenz authored
-
- 16 Mar, 2018 1 commit
-
-
Sergei Morozov authored
-
- 17 Feb, 2018 1 commit
-
-
Grégoire Paris authored
A string is made of characters, an array might contain anything.
-
- 15 Feb, 2018 1 commit
-
-
Grégoire Paris authored
-
- 13 Feb, 2018 1 commit
-
-
Fogs authored
-
- 11 Feb, 2018 1 commit
-
-
Fogs authored
-
- 09 Feb, 2018 4 commits
-
-
Grégoire Paris authored
array_merge will not work with any iterable
-
Grégoire Paris authored
-
Grégoire Paris authored
The docs only talk about 2008 and up, not sure if those should be added to 2005 too.
-
Grégoire Paris authored
-
- 07 Feb, 2018 1 commit
-
-
Tom Van Looy authored
Inherit table charset/collation from db charset
-
- 29 Jan, 2018 4 commits
-
-
Michael Moravec authored
-
Michael Moravec authored
-
Michael Moravec authored
-
Gabriel Caruso authored
-
- 15 Jan, 2018 1 commit
-
-
Gabriel Caruso authored
-
- 04 Jan, 2018 2 commits
-
-
Gabriel Caruso authored
-
Marco Pivetta authored
This reverts commit e3ab1276, reversing changes made to f988b0a6.
-
- 03 Jan, 2018 1 commit
-
-
Gabriel Caruso authored
-
- 01 Jan, 2018 2 commits
-
-
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`.
-