1. 08 Apr, 2020 5 commits
  2. 21 Mar, 2020 1 commit
  3. 07 Aug, 2019 1 commit
  4. 06 Jun, 2019 1 commit
  5. 18 Apr, 2019 1 commit
  6. 17 Mar, 2019 1 commit
  7. 03 Feb, 2019 1 commit
  8. 29 Jan, 2019 1 commit
  9. 22 Jan, 2019 1 commit
  10. 30 Nov, 2018 1 commit
  11. 08 Nov, 2018 1 commit
  12. 07 Oct, 2018 1 commit
  13. 02 Oct, 2018 3 commits
  14. 11 Jul, 2018 1 commit
  15. 03 Jul, 2018 1 commit
  16. 19 Jun, 2018 2 commits
  17. 21 May, 2018 1 commit
  18. 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
  19. 29 Apr, 2018 1 commit
  20. 01 Apr, 2018 1 commit
  21. 17 Feb, 2018 1 commit
  22. 15 Feb, 2018 1 commit
  23. 09 Feb, 2018 3 commits
  24. 29 Jan, 2018 4 commits
  25. 04 Jan, 2018 1 commit
  26. 03 Jan, 2018 1 commit
  27. 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