1. 22 8月, 2017 2 次提交
  2. 21 8月, 2017 1 次提交
  3. 20 8月, 2017 1 次提交
  4. 20 7月, 2017 1 次提交
  5. 02 7月, 2017 1 次提交
  6. 01 7月, 2017 1 次提交
  7. 07 2月, 2017 1 次提交
  8. 04 2月, 2017 1 次提交
    • R
      Correctly dump integer-like primary key with default nil · 605837a6
      Ryuta Kamizono 提交于
      The PR #27384 changed integer-like primary key to be autoincrement
      unless an explicit default. This means that integer-like primary key is
      restored as autoincrement unless dumping the default nil explicitly.
      We should dump integer-like primary key with default nil correctly.
      605837a6
  9. 02 2月, 2017 1 次提交
  10. 06 12月, 2016 1 次提交
  11. 29 10月, 2016 1 次提交
  12. 11 10月, 2016 1 次提交
  13. 10 10月, 2016 1 次提交
  14. 07 8月, 2016 2 次提交
  15. 20 4月, 2016 1 次提交
  16. 16 4月, 2016 1 次提交
  17. 12 3月, 2016 1 次提交
    • R
      Primary key should be `NOT NULL` · 98fb3744
      Ryuta Kamizono 提交于
      Follow up to #18228.
      
      In MySQL and PostgreSQL, primary key is to be `NOT NULL` implicitly.
      But in SQLite it must be specified `NOT NULL` explicitly.
      98fb3744
  18. 11 3月, 2016 2 次提交
  19. 29 2月, 2016 1 次提交
  20. 08 2月, 2016 1 次提交
  21. 13 1月, 2016 1 次提交
  22. 13 10月, 2015 1 次提交
  23. 28 9月, 2015 1 次提交
  24. 09 7月, 2015 1 次提交
  25. 19 5月, 2015 1 次提交
  26. 04 5月, 2015 1 次提交
  27. 04 3月, 2015 1 次提交
  28. 18 2月, 2015 1 次提交
  29. 11 2月, 2015 2 次提交
    • R
      The datetime precision with zero should be dumped · 18e0ffe9
      Ryuta Kamizono 提交于
      `precision: 0` was not dumped by f1a0fa9e.
      However, `precision: 0` is valid value for PostgreSQL timestamps.
      18e0ffe9
    • S
      Refactor microsecond precision to be database agnostic · f1a0fa9e
      Sean Griffin 提交于
      The various databases don't actually need significantly different
      handling for this behavior, and they can achieve it without knowing
      about the type of the object.
      
      The old implementation was returning a string, which will cause problems
      such as breaking TZ aware attributes, and making it impossible for the
      adapters to supply their logic for time objects.
      f1a0fa9e
  30. 31 1月, 2015 1 次提交
  31. 29 12月, 2014 1 次提交
  32. 02 12月, 2014 1 次提交
  33. 30 10月, 2014 1 次提交
  34. 11 9月, 2014 1 次提交
  35. 18 6月, 2014 1 次提交
    • S
      Don't type cast the default on the column · 4d3e88fc
      Sean Griffin 提交于
      If we want to have type decorators mess with the attribute, but not the
      column, we need to stop type casting on the column. Where possible, we
      changed the tests to test the value of `column_defaults`, which is
      public API. `Column#default` is not.
      4d3e88fc
  36. 12 6月, 2014 1 次提交