* Creates an object representing a database function. This can be used in search queries, both in where and order parts, and as default values in column definitions. * If you want to refer to columns in your function, you should use `sequelize.col`, so that the columns are properly interpreted as
(fn, ...args)
| 932 | * }); |
| 933 | */ |
| 934 | static fn(fn, ...args) { |
| 935 | return new Utils.Fn(fn, args); |
| 936 | } |
| 937 | |
| 938 | /** |
| 939 | * Creates an object which represents a column in the DB, this allows referencing another column in your query. This is often useful in conjunction with `sequelize.fn`, since raw string arguments to fn will be escaped. |
no outgoing calls
no test coverage detected