Skip to content

Commit c922d0c

Browse files
committed
added notes to model
1 parent 350d155 commit c922d0c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/models/copilotApplication.js

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ module.exports = function defineCopilotOpportunity(sequelize, DataTypes) {
1313
onUpdate: 'CASCADE',
1414
onDelete: 'CASCADE'
1515
},
16+
notes: {
17+
type: DataTypes.TEXT,
18+
allowNull: true
19+
},
1620
userId: { type: DataTypes.BIGINT, allowNull: false },
1721
deletedAt: { type: DataTypes.DATE, allowNull: true },
1822
createdAt: { type: DataTypes.DATE, defaultValue: DataTypes.NOW },

0 commit comments

Comments
 (0)