alter table user add column join_date datetime;
UPDATE user SET join_date = date_created;
By using the code above, I am able to add a new column to the table and set join_date column to have same data as those in date created. How can i perform this action using yii2 migration?