(val)
| 16 | field1: { |
| 17 | type: Sequelize.VIRTUAL, |
| 18 | set(val) { |
| 19 | this.setDataValue('storage', val); |
| 20 | this.setDataValue('field1', val); |
| 21 | }, |
| 22 | get() { |
| 23 | return this.getDataValue('field1'); |
| 24 | } |
nothing calls this directly
no test coverage detected