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

  1. 10 Nov, 2012 3 commits
  2. 07 Nov, 2012 10 commits
  3. 06 Nov, 2012 9 commits
  4. 05 Nov, 2012 13 commits
  5. 03 Nov, 2012 3 commits
    • Use RETURNING * when doing update queries in postgres. · ede0b552
      This gives better results when doing an update so you don't
      run into issues where you did something like:
      
      mymodel.myfield = 'foo'
      mymodel.save(theseParams)
      
      mymodel.myfield of course wasn't updated, but it will appear
      to a test perhaps that it was.
      
      This will also allow the attributes that are returned to behave the same
      as they would in an insert or a select query.  To see this try creating
      an ARRAY column type in postgres, then make it a text field in
      sequelize.  The value that will be returned is the same on the type for
      insert/select but not for update.
      joshm committed
    • v1.6.0-alpha-3 · 5be1683d
      Sascha Depold committed
    • fixed conditions for postgresql · aca6d5b8
      Sascha Depold committed
  6. 31 Oct, 2012 2 commits