1. 07 Aug, 2019 1 commit
  2. 06 Jun, 2019 1 commit
  3. 18 Apr, 2019 1 commit
  4. 17 Mar, 2019 1 commit
  5. 03 Feb, 2019 1 commit
  6. 29 Jan, 2019 1 commit
  7. 22 Jan, 2019 1 commit
  8. 30 Nov, 2018 1 commit
  9. 08 Nov, 2018 1 commit
  10. 07 Oct, 2018 1 commit
  11. 02 Oct, 2018 3 commits
  12. 11 Jul, 2018 1 commit
  13. 03 Jul, 2018 1 commit
  14. 19 Jun, 2018 2 commits
  15. 21 May, 2018 1 commit
  16. 12 May, 2018 1 commit
    • Sergei Morozov's avatar
      DB2 on Travis · e2e0de25
      Sergei Morozov authored
      1. Use the actual dsdriver distribution
      2. Introduced `AbstractPlatform::getCharMaxLength()` since `CHAR` and `VARCHAR` limitations are different on DB2.
      e2e0de25
  17. 29 Apr, 2018 1 commit
  18. 01 Apr, 2018 1 commit
  19. 17 Feb, 2018 1 commit
  20. 15 Feb, 2018 1 commit
  21. 09 Feb, 2018 3 commits
  22. 29 Jan, 2018 4 commits
  23. 04 Jan, 2018 1 commit
  24. 03 Jan, 2018 1 commit
  25. 01 Jan, 2018 2 commits
    • Adrien Crivelli's avatar
    • Adrien Crivelli's avatar
      Automatic escaping of default values · bd465f71
      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`.
      bd465f71
  26. 26 Dec, 2017 1 commit
  27. 19 Nov, 2017 2 commits
  28. 18 Nov, 2017 2 commits
  29. 11 Sep, 2017 1 commit