Is it possible to add a new column, copy some data to this new column and update the data in another column with a Laravel migration?
I have a table something like this;
id | item | price |
---|---|---|
1 | ItemOne | 100.00 |
2 | ItemTwo | 200.00 |
Now what I need to do is,
- add a new column,
old_price
to this table - copy the values in the
price
column to newly addedold_price
column - multiply the values in the
price
column with 5 and update the same column
The new table should look something like this;
id | item | price | old_price |
---|---|---|---|
1 | ItemOne | 500.00 | 100.00 |
2 | ItemTwo | 1000.00 | 200.00 |
Is it possible to to achieve this with a migration or a seed or something?
This change needs to be done on an application that is already in production so dropping and re-creating the tables is not an option for me here.
Also the old_price
column is created just to keep a reference of the current values of the price
column. It will not be updated after this and probably will be removed in an later update if everything is going right with the new prices. So I don't need to use any model events to update the column afterwards.
Any help you can give me on this is really appreciated. Thanks.
Create a new migration.
Version 1. create automatically by command:
Version 2. create manually something like this:
2021_08_18_163618_add_price_old_to_products_table.php
Manage the content by following the 3 steps in the code:
Run that migration for creating a new column: