added channelName to Claim model

This commit is contained in:
bill bittner 2017-10-26 08:31:38 -07:00
parent a72d3a08a6
commit 07f6c02f60

View file

@ -134,6 +134,11 @@ module.exports = (sequelize, { STRING, BOOLEAN, INTEGER, TEXT, ARRAY, DECIMAL, D
type : STRING,
default: null,
},
channelName: {
type : STRING,
allowNull: true,
default : null,
},
},
{
freezeTableName: true,