| 1209 | clock.tick(1000); |
| 1210 | |
| 1211 | @Table({ |
| 1212 | timestamps: true, |
| 1213 | createdAt: false, |
| 1214 | }) |
| 1215 | class User2 extends Model { |
| 1216 | @Column |
| 1217 | username: string; |
| 1218 | } |
| 1219 | |
| 1220 | sequelize.addModels([User2]); |
| 1221 |
nothing calls this directly
no test coverage detected
searching dependent graphs…