不要怂,就是干,撸起袖子干!

  1. 27 May, 2017 1 commit
  2. 20 May, 2017 3 commits
  3. 19 May, 2017 2 commits
  4. 18 May, 2017 1 commit
  5. 16 May, 2017 2 commits
  6. 14 May, 2017 1 commit
    • Polish docs (#7627) · d2baa896
      * Indent Markdown by 2 spaces
      
      Consistent with most examples and our codebase
      
      * Use ES6 (as supported by Node 4) in docs
      Felix Becker committed
  7. 10 May, 2017 1 commit
  8. 08 May, 2017 1 commit
    • 7564 Ordering with JSON attributes (#7565) · c3859940
      * Two birds with one stone.  Adds support for ordering by JSON columns and removes vulnerability for injections on JSON attributes.
      
      * Updates the changelog for the addition of json attributes.
      
      * Fixes lint error with prefer arrow.
      
      * Removes specific error because it may change depending on dialect and engine version.
      
      * Removed duplicate tests and moved location of SQL injection test and find order test.
      
      * Optimizes item.split performance by only performing the split once.
      
      * Fixes test for sqlite dialect json.  JSON is handled differently in sqlite where the json value is extracted from a path.  If the path doesn't exist sqlite returns null instead of throwing an error like postgres.
      Michael Kaufman committed
  9. 28 Apr, 2017 3 commits
  10. 27 Apr, 2017 1 commit
  11. 25 Apr, 2017 1 commit
  12. 23 Apr, 2017 2 commits
  13. 21 Apr, 2017 2 commits
  14. 11 Apr, 2017 3 commits
  15. 10 Apr, 2017 1 commit
  16. 08 Apr, 2017 2 commits
  17. 07 Apr, 2017 6 commits
  18. 03 Apr, 2017 1 commit
  19. 02 Apr, 2017 3 commits
  20. 27 Mar, 2017 1 commit
  21. 25 Mar, 2017 1 commit
  22. 21 Mar, 2017 1 commit
    • Added feature to alter tables on sync. Fixes #537 (#7230) · b31b6628
      * Added feature to alter tables on sync. Fixes #537
      
      * Added an entry to future in changelog
      
      * Added integration test for syncing with alter
      
      * Fixed tests and model with sqlite and psql
      
      * Updated docs and updated some code style
      
      * Updated test.sync.js to use let instead of var
      
      * Changed all vars to lets and replaced anonymous functions with arrow functions
      
      * Added back some anonymous functions to use scope and fixed more coding style
      
      * Updated code style again - removed binds and nested then's
      
      * Updated changelog; renamed and improved tests; Added option to comment
      
      * Changed debug vars to consts
      
      * Switched changes to const
      
      * Added some missing semi-colons
      Julian Meyer committed