* Remove attribute from model definition * * @param {string} attribute name of attribute to remove
(attribute)
| 1276 | * @param {string} attribute name of attribute to remove |
| 1277 | */ |
| 1278 | static removeAttribute(attribute) { |
| 1279 | delete this.rawAttributes[attribute]; |
| 1280 | this.refreshAttributes(); |
| 1281 | } |
| 1282 | |
| 1283 | /** |
| 1284 | * Sync this Model to the DB, that is create the table. |
no test coverage detected