I am trying to modify column type from double(8,2)
to varchar
.
Since as mentioned in the doc, it doesn't allow double
to change, so I tried using raw
statement.
public function up()
{
DB::statement('ALTER TABLE dmf_product_match_unmatches MODIFY s_price VARCHAR(191)');
DB::statement('ALTER TABLE dmf_product_match_unmatches MODIFY r_price VARCHAR(191)');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
So my question is what do I need to mention in down
method?
If you will not write code in down method, at the rollback time s_price and r_price will have VARCHAR(191) but not double(8,2) in schema.
The below down() method will revert s_price and r_price to DOUBLE(8,2) when you run