1. 21 10月, 2017 1 次提交
  2. 04 10月, 2017 1 次提交
  3. 25 9月, 2017 1 次提交
  4. 19 9月, 2017 1 次提交
  5. 29 8月, 2017 1 次提交
  6. 22 8月, 2017 1 次提交
  7. 08 8月, 2017 1 次提交
  8. 26 7月, 2017 1 次提交
  9. 20 7月, 2017 1 次提交
  10. 02 7月, 2017 1 次提交
  11. 01 7月, 2017 2 次提交
  12. 30 6月, 2017 1 次提交
    • R
      Don't cache queries for schema statements · 21d040f9
      Ryuta Kamizono 提交于
      `test_middleware_caches` is sometimes failed since #29454.
      The failure is due to schema statements are affected by query caching.
      Bypassing query caching for schema statements to avoid the issue.
      21d040f9
  13. 20 6月, 2017 1 次提交
  14. 15 6月, 2017 1 次提交
  15. 10 6月, 2017 1 次提交
  16. 03 6月, 2017 1 次提交
  17. 19 5月, 2017 1 次提交
  18. 10 5月, 2017 1 次提交
  19. 26 3月, 2017 1 次提交
  20. 20 3月, 2017 1 次提交
  21. 06 3月, 2017 1 次提交
  22. 05 3月, 2017 2 次提交
  23. 04 3月, 2017 1 次提交
    • R
      Fix `rake db:schema:load` with subdirectories · 031605aa
      Ryuta Kamizono 提交于
      Related #25174.
      
      `db:schema:load` doesn't work with subdirectories like previous
      `db:migrate:status`. `Migrator.migration_files` should be used in
      `assume_migrated_upto_version` to fix the issue.
      031605aa
  24. 28 2月, 2017 1 次提交
  25. 23 2月, 2017 1 次提交
    • R
      Correctly dump native timestamp types for MySQL · 50552633
      Ryuta Kamizono 提交于
      The native timestamp type in MySQL is different from datetime type.
      Internal representation of the timestamp type is UNIX time, This means
      that timestamp columns are affected by time zone.
      
      ```
      > SET time_zone = '+00:00';
      Query OK, 0 rows affected (0.00 sec)
      
      > INSERT INTO time_with_zone(ts,dt) VALUES (NOW(),NOW());
      Query OK, 1 row affected (0.02 sec)
      
      > SELECT * FROM time_with_zone;
      +---------------------+---------------------+
      | ts                  | dt                  |
      +---------------------+---------------------+
      | 2016-02-07 22:11:44 | 2016-02-07 22:11:44 |
      +---------------------+---------------------+
      1 row in set (0.00 sec)
      
      > SET time_zone = '-08:00';
      Query OK, 0 rows affected (0.00 sec)
      
      > SELECT * FROM time_with_zone;
      +---------------------+---------------------+
      | ts                  | dt                  |
      +---------------------+---------------------+
      | 2016-02-07 14:11:44 | 2016-02-07 22:11:44 |
      +---------------------+---------------------+
      1 row in set (0.00 sec)
      ```
      50552633
  26. 20 2月, 2017 1 次提交
  27. 19 2月, 2017 1 次提交
  28. 13 2月, 2017 3 次提交
  29. 11 2月, 2017 1 次提交
  30. 09 2月, 2017 1 次提交
  31. 07 2月, 2017 2 次提交
  32. 19 1月, 2017 2 次提交
  33. 18 1月, 2017 1 次提交
  34. 04 1月, 2017 1 次提交