laravel migration change column type double to string : down function

1.1k Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

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

php artisan migrate:rollback

public function down()
{
    DB::statement('ALTER TABLE dmf_product_match_unmatches MODIFY s_price DOUBLE(8,2)');
    DB::statement('ALTER TABLE dmf_product_match_unmatches MODIFY r_price DOUBLE(8,2)');
}