I would love to be able to update a column values in my DB, e.g:
update table set col_1 = val where col_2 = val2
What is the use case here, how would you use it. Can you provide some example?
You can use $this->query('update table set col_1 = val where col_2 = val2');, but you would have to manually code up() and down() separately.
Working solution seems enough then. Closing.
Most helpful comment
You can use
$this->query('update table set col_1 = val where col_2 = val2');, but you would have to manually codeup()anddown()separately.