- 24 Oct, 2018 1 commit
-
-
Sergei Morozov authored
-
- 16 Oct, 2018 1 commit
-
-
Ben Davies authored
-
- 02 Oct, 2018 1 commit
-
-
Sergei Morozov authored
-
- 28 Sep, 2018 2 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
-
- 20 Sep, 2018 1 commit
-
-
Oleg Zhulnev authored
revert back MariaDb1027Platform
-
- 19 Jun, 2018 2 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
Closes #3187.
-
- 17 Jun, 2018 1 commit
-
-
Gabriel Caruso authored
-
- 21 May, 2018 1 commit
-
-
Sergei Morozov 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 1 commit
-
-
Timo Bakx authored
-
- 01 Apr, 2018 1 commit
-
-
Michael Moravec authored
-
- 30 Mar, 2018 1 commit
-
-
Tobias Schultze authored
-
- 29 Mar, 2018 1 commit
-
-
Stefan Lorenz authored
-
- 16 Mar, 2018 1 commit
-
-
Sergei Morozov authored
-
- 11 Feb, 2018 1 commit
-
-
Fogs authored
-
- 09 Feb, 2018 1 commit
-
-
Grégoire Paris authored
-
- 05 Feb, 2018 1 commit
-
-
Gabriel Caruso authored
-
- 29 Jan, 2018 3 commits
-
-
Michael Moravec authored
-
Michael Moravec authored
-
Gabriel Caruso authored
-
- 04 Jan, 2018 1 commit
-
-
Marco Pivetta authored
This reverts commit e3ab1276, reversing changes made to f988b0a6.
-
- 01 Jan, 2018 4 commits
-
-
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`.
-
- 26 Dec, 2017 1 commit
-
-
Simon Podlipsky authored
-
- 19 Nov, 2017 10 commits
-
-
Luís Cobucci authored
Since the JSON type is simply an alias to a LONG TEXT we must force a comment, otherwise things will not work properly. Also the test for JSON types should work regardless of native JSON support (DBAL should add a comment to identify the correct type).
-
belgattitude authored
-
belgattitude authored
-
belgattitude authored
-
belgattitude authored
-
belgattitude authored
-
belgattitude authored
-
belgattitude authored
-
belgattitude authored
-
belgattitude authored
-
- 18 Nov, 2017 2 commits
-
-
Christopher Davis authored
Postgres has a `SERIAL` data type to allow shorthand for `nextval('sequence_name')`, but DDL like this: CREATE TABLE example (id SERIAL) Cannot be generated in the DBAL schema APIs.
-
Tobias Kristensen authored
-