- 24 Feb, 2015 6 commits
-
-
Dr. Evil committed
-
Add support for tagged SQL queries
Mick Hansen committed -
Sascha Depold committed
-
Sascha Depold committed
-
Add canonical tag to theme template
Sascha Depold committed -
[skip ci]
Sascha Depold committed
-
- 23 Feb, 2015 6 commits
-
-
Tagged SQL queries are queries constructed via ES6 tagged template strings. For instance, one can do: ```js var result = sql`SELECT ${1} AS "var"`; ``` The `sql` tag can transform the template string so that it returns something like: ```js var result = { query: 'SELECT ? AS "var"', values: [1] }; ``` This makes it ideal for writing elegant SQL by passing the tagged query, containing the `query` and `values` properties to `sequelize.query`.
Rui Marinho committed -
Jan Aagaard Meier committed
-
Jan Aagaard Meier committed
-
Jan Aagaard Meier committed
-
Jan Aagaard Meier committed
-
Jan Aagaard Meier committed
-
- 22 Feb, 2015 2 commits
-
-
Feature/docs changelog
Mick Hansen committed -
Sascha Depold committed
-
- 20 Feb, 2015 6 commits
-
-
Improve the imprint even more
Sascha Depold committed -
Sascha Depold committed
-
Jan Aagaard Meier committed
-
Mick Hansen committed
-
…action, is default and does not need to be set
Mick Hansen committed -
Mick Hansen committed
-
- 19 Feb, 2015 10 commits
-
-
Jan Aagaard Meier committed
-
Add imprint to the docs
Mick Hansen committed -
As the content is still originally from me and somehow related to my anyways, I think we’ll have to add this lovely imprint :-| Hooray!
Sascha Depold committed -
Allow overriding `plain` in rawSelect functions
Mick Hansen committed -
Improve documentation
Mick Hansen committed -
… when specifying 'group'. Added documentation and integration test.
Thaddeus Quintin committed -
… typeError when a result was NULL.
Thaddeus Quintin committed -
Sascha Depold committed
-
Sascha Depold committed
-
Sascha Depold committed
-
- 18 Feb, 2015 6 commits
-
-
Clearify how to use Getters & Setters
Mick Hansen committed -
Jumpei Ogawa committed
-
Jumpei Ogawa committed
-
Mick Hansen committed
-
Mick Hansen committed
-
Mick Hansen committed
-
- 17 Feb, 2015 4 commits
-
-
[PostgreSQL] Support for range datatype
Mick Hansen committed -
Dr. Evil committed
-
Dr. Evil committed
-
… of explicit conversion to ISO string
Dr. Evil committed
-