- 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."
-
- 25 Jul, 2017 1 commit
-
-
Alessandro Minoccheri authored
-
- 19 Jul, 2017 2 commits
-
-
Luís Cobucci authored
Since it was deprecated.
-
Luís Cobucci authored
-
- 05 Jul, 2017 1 commit
-
-
Roel van Duijnhoven authored
As can be found in https://mariadb.com/kb/en/mariadb/reserved-words/.
-
- 29 Jun, 2017 1 commit
-
-
mondrake authored
-
- 21 May, 2017 1 commit
-
-
Eugene Pisarchik authored
-
- 20 May, 2017 1 commit
-
-
Eugene Pisarchik authored
-
- 14 Apr, 2017 1 commit
-
-
Immanuel Klinkenberg authored
primary key on MySQL platform.
-