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

  1. 28 Aug, 2013 2 commits
    • Postgres single connections will no longer leak · 97c50bee
      Some users were experiencing problems with Postgres connections leaking when
      they didn't enable pooling. This commit should fix the problem.
      
      - In prototype.disconnect() we now properly call this.client.end with
        this.client.end.bind(this.client) (as shown in the node-postgres wiki).
      - We no longer check for readyForQuery on this.client as that value may not
        always be populated by node-postgres (possibly a bug on node-postgres).
      
      This should close https://github.com/sequelize/sequelize/issues/859
      Daniel Durante committed
    • Fixes PostgresSQL connection problems. · 270ac753
      This commit fixes the following connection problems:
      * Pools should now properly release themselves always
      * You can now set a "TestOnBorrow"-like functionality with
        config.pool.reapInterval).
      * Heroku should be able to properly send the correct DB credentials.
      Daniel Durante committed
  2. 27 Aug, 2013 6 commits
  3. 25 Aug, 2013 2 commits
    • Enum values can now be null · 202aeedd
      If the column allows null values, the validation for that column will be skipped
      if the vale is null.
      
      Closes https://github.com/sequelize/sequelize/issues/839
      Daniel Durante committed
    • Allows us to define our own timestamp columns. · 6ef1f5eb
      This commit allows the user to predefine their own timestamp columns which is
      useful for databases that already exist. This also allows the user to have their
      own naming conventions for the timestamp columns.
      
      The following options have been added when defining a new table:
      
      * createdAt (defaults to "createdAt")
      * updatedAt (defaults to "updatedAt")
      * deletedAt (defaults to "deletedAt")
      * touchedAt (defaults to "touchedAt")
      
      Note: The underscored option still remains useful since it's just a simple one
      line option which allows flexibility for those rare cases in which people decide
      to change the structure of their database from camelCase to under_score or
      vice-versa.
      Daniel Durante committed
  4. 24 Aug, 2013 3 commits
  5. 23 Aug, 2013 11 commits
  6. 22 Aug, 2013 11 commits
  7. 21 Aug, 2013 5 commits