- 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
-
- 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`.
-
- 26 Dec, 2017 1 commit
-
-
Simon Podlipsky authored
-
- 19 Dec, 2017 1 commit
-
-
Gabriel Caruso authored
-
- 20 Nov, 2017 1 commit
-
-
Robin Appelman authored
- SERIAL and BIGSERIAL are not true types and can't be used in ALTER TABLE expressions - When changing between int and bigint auto increment fields the default should no be dropped to preserve the link between the column and the sequence.
-
- 19 Nov, 2017 12 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
-
belgattitude authored
-
belgattitude authored
-
- 18 Nov, 2017 3 commits
-
-
Christopher Davis authored
Serial fields already have a default value. By opting out of `notnull` serial fields will just set the next value in the sequence.
-
Luís Cobucci authored
-
Tobias Kristensen authored
-
- 11 Sep, 2017 2 commits
-
-
Grégoire Paris authored
It is a somewhat fragile thing to do.
-
Grégoire Paris authored
It groups things naturally.
-
- 28 Jul, 2017 2 commits
-
-
Jean-Baptiste Noblot authored
-
Jean-Baptiste Noblot authored
Fix PSR2 rules : "As per PSR2, the static declaration should come after the visibility declaration."
-