1. 08 Apr, 2020 1 commit
  2. 21 Mar, 2020 1 commit
  3. 20 Mar, 2020 1 commit
    • Sergei Morozov's avatar
      Made some platform class names reflect the lowest server version they support · bd87aa64
      Sergei Morozov authored
      The `PostgreSqlPlatform`, `SQLAnywherePlatform` and `SQLServerPlatform` classes have been renamed to `PostgreSQL94Platform`, `SQLAnywhere16Platform` and `SQLServer2012Platform` respectively.
      
      When deprecating an old platform version, we can deprecate and later remove a specific class. Otherwise, there's no way to express the deprecation on the class level and the upgrade notes contain sentences like: "`XYZPlatform` and `XYZKeywords` now represent XYZ (version)".
      bd87aa64
  4. 18 Mar, 2020 4 commits
  5. 16 Jan, 2020 1 commit
  6. 07 Aug, 2019 1 commit
  7. 17 Mar, 2019 1 commit
  8. 29 Jan, 2019 1 commit
  9. 22 Jan, 2019 1 commit
  10. 24 Oct, 2018 1 commit
  11. 16 Oct, 2018 2 commits
  12. 06 Oct, 2018 1 commit
  13. 02 Oct, 2018 3 commits
  14. 11 Jul, 2018 1 commit
  15. 01 Jul, 2018 1 commit
  16. 15 May, 2018 1 commit
  17. 01 Apr, 2018 1 commit
  18. 29 Jan, 2018 2 commits
  19. 04 Jan, 2018 1 commit
  20. 01 Jan, 2018 1 commit
  21. 26 Dec, 2017 1 commit
  22. 20 Nov, 2017 1 commit
    • Robin Appelman's avatar
      Fix changing column from int to bigint with autoincrement · 754880b6
      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.
      754880b6
  23. 18 Nov, 2017 1 commit
  24. 25 Jul, 2017 1 commit
  25. 19 Jul, 2017 1 commit
  26. 09 Mar, 2017 1 commit
  27. 15 Jul, 2016 1 commit
  28. 06 Jan, 2016 1 commit
  29. 01 May, 2015 1 commit
  30. 25 Apr, 2015 1 commit
  31. 11 Mar, 2015 1 commit
  32. 31 Jan, 2015 1 commit
  33. 03 Jan, 2015 1 commit
    • Adrien Crivelli's avatar
      Do not TRIM() parentheses around partial index's conditions · e5e3dbc9
      Adrien Crivelli authored
      Because PostgreSQL will return the expression with a lot of
      parentheses we cannot TRIM() them easily. It is easier and more
      correct to adapt to what PostgreSQL returns. That means the declaration
      of partial indexes must be updated as follow:
      
      Before:
      ``options={"where": "other_id IS NULL"}``
      
      After:
      ``options={"where": "(other_id IS NULL)"}``
      
      And fore more complex conditions, that would be:
      ``options={"where": "(((id IS NOT NULL) AND (other_id IS NULL)) AND (name IS NULL))"}``
      e5e3dbc9