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

  1. 21 Dec, 2014 3 commits
  2. 20 Dec, 2014 1 commit
    • Make migration logic deprecated · 17cb0dc2
      This commit deprecates the migration logic from the
      sequelize core references the rewritten CLI and the
      new migration engine. Also this commit removes the
      respective migration tests.
      Sascha Depold committed
  3. 17 Dec, 2014 6 commits
  4. 16 Dec, 2014 3 commits
  5. 14 Dec, 2014 5 commits
  6. 13 Dec, 2014 4 commits
  7. 12 Dec, 2014 2 commits
    • Merge pull request #2720 from jpmonette/master · 40cd8d97
      Fixing "error: syntax error at or near ")"" when using upsert with postgres dialect
      Jan Aagaard Meier committed
    • Fixing "error: syntax error at or near ")"" · c98db629
      When trying to insert values containing the character `)`, the RegEx is not modifying the string properly, throwing this error message: `error: syntax error at or near ")"`.
      
      Here's an example:
      
      Initial value:
      `VALUES ( \'Current Generator(s)\',\'CurrentGenerators__c\',NULL,NULL,\'Lead\',\'2014-12-10 22:31:24.076 +00:00\',\'2014-12-10 22:31:24.076 +00:00\');`
      
      Current result:
      `SELECT \'Current Generator(s\',\'CurrentGenerators__c\',NULL,NULL,\'Lead\',\'2014-12-10 22:31:24.076 +00:00\',\'2014-12-10 22:31:24.076 +00:00\');`
      
      Expected result:
      `SELECT \'Current Generator(s)\',\'CurrentGenerators__c\',NULL,NULL,\'Lead\',\'2014-12-10 22:31:24.076 +00:00\',\'2014-12-10 22:31:24.076 +00:00\';`
      
      This commit is removing the `replace()` method called. After reading the blog post referred, there's no explanation of why this need to be replaced - and it is working fine without it.
      Jean-Philippe Monette committed
  8. 11 Dec, 2014 3 commits
  9. 10 Dec, 2014 13 commits