String -> Text

This commit is contained in:
Tom Moor
2023-12-11 17:28:39 -08:00
committed by GitHub
parent 43e538dba7
commit e315ba9dff

View File

@@ -3,7 +3,7 @@
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn("search_queries", "answer", {
type: Sequelize.STRING,
type: Sequelize.TEXT,
allowNull: true,
});
},