1. 17 Jul, 2020 2 commits
  2. 05 Jul, 2020 1 commit
  3. 20 Jun, 2020 2 commits
  4. 27 May, 2020 1 commit
  5. 04 May, 2020 1 commit
  6. 30 May, 2019 1 commit
  7. 03 Feb, 2019 1 commit
  8. 24 Oct, 2018 1 commit
  9. 02 Oct, 2018 1 commit
  10. 28 Sep, 2018 2 commits
  11. 19 Jun, 2018 2 commits
  12. 01 Apr, 2018 1 commit
  13. 29 Jan, 2018 1 commit
  14. 01 Jan, 2018 2 commits
    • Adrien Crivelli's avatar
      Fix code style · 7e65c84c
      Adrien Crivelli authored
      7e65c84c
    • 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
  15. 19 Nov, 2017 2 commits
  16. 09 Sep, 2017 3 commits
  17. 28 Jul, 2017 1 commit
  18. 11 Mar, 2017 1 commit
  19. 23 Jan, 2017 1 commit
  20. 22 Jan, 2017 1 commit
  21. 14 Jan, 2017 1 commit
  22. 22 Sep, 2016 1 commit
  23. 09 Sep, 2016 3 commits
  24. 15 Jul, 2016 1 commit
  25. 09 Jan, 2016 1 commit
  26. 06 Jan, 2016 1 commit
  27. 18 Jan, 2015 1 commit
  28. 31 Dec, 2014 1 commit
  29. 26 Dec, 2014 1 commit
  30. 25 Dec, 2014 1 commit