* 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. * * @see * Sequelize#fn * * @param {string} col The name of
(col)
| 1030 | * @returns {Sequelize.col} |
| 1031 | */ |
| 1032 | static col(col) { |
| 1033 | return new Utils.Col(col); |
| 1034 | } |
| 1035 | |
| 1036 | /** |
| 1037 | * Creates an object representing a call to the cast function. |
no outgoing calls
no test coverage detected