* 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 * {@link Sequelize#fn} * * @param {string} col The name of
(col)
| 948 | * @returns {Sequelize.col} |
| 949 | */ |
| 950 | static col(col) { |
| 951 | return new Utils.Col(col); |
| 952 | } |
| 953 | |
| 954 | /** |
| 955 | * Creates an object representing a call to the cast function. |
no outgoing calls
no test coverage detected