* Remove attribute from model definition * * @param {string} attribute name of attribute to remove
(attribute)
| 1314 | * @param {string} attribute name of attribute to remove |
| 1315 | */ |
| 1316 | static removeAttribute(attribute) { |
| 1317 | delete this.rawAttributes[attribute]; |
| 1318 | this.refreshAttributes(); |
| 1319 | } |
| 1320 | |
| 1321 | /** |
| 1322 | * Sync this Model to the DB, that is create the table. |
no test coverage detected