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