VIRTUALSTRING - virtual string field that doesn't exist in the database Provides getter/setter support for computed string values
// Virtual string with getterfullName: DataTypes.VIRTUALSTRING({ get: function() { return this.firstName + ' ' + this.lastName; }, dependencies: ['firstName', 'lastName']})// Virtual string with getter and setterdisplayName: DataTypes.VIRTUALSTRING({ Copy
// Virtual string with getterfullName: DataTypes.VIRTUALSTRING({ get: function() { return this.firstName + ' ' + this.lastName; }, dependencies: ['firstName', 'lastName']})// Virtual string with getter and setterdisplayName: DataTypes.VIRTUALSTRING({
VIRTUALSTRING - virtual string field that doesn't exist in the database Provides getter/setter support for computed string values