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

Commit d2f1af65 by Mick Hansen

Merge pull request #5112 from ozum/master

tsrange data type is added.
2 parents 544d5655 cda3c512
Showing with 3 additions and 1 deletions
# Future
- [ADDED] PostgreSQL tsrange (Range of timestamp without time zone) data type support.
- [FIXED] attributes from multiple scopes does not merge [#4856](https://github.com/sequelize/sequelize/issues/4856)
- [FIXED] Support Unicode strings in mssql [#3752](https://github.com/sequelize/sequelize/issues/3752)
......
......@@ -617,7 +617,8 @@ var pgRangeSubtypes = {
bigint: 'int8range',
decimal: 'numrange',
dateonly: 'daterange',
date: 'tstzrange'
date: 'tstzrange',
datenotz: 'tsrange'
};
RANGE.prototype.key = RANGE.key = 'RANGE';
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!