Delete selected records. * * await Flight.where("destination", "Paris").delete();
()
| 691 | * await Flight.where("destination", "Paris").delete(); |
| 692 | */ |
| 693 | static delete() { |
| 694 | return this._runQuery( |
| 695 | this._currentQuery.table(this.table).delete().toDescription(), |
| 696 | ); |
| 697 | } |
| 698 | |
| 699 | /** Join a table to the current query. |
| 700 | * |
no test coverage detected