Fix missing 'filename' field in asset_log to action_log migration (#2854)

Merging this anyway, to stop the bleeding for new upgraders.
This commit is contained in:
itsupportcmsukorg 2016-10-31 18:18:48 +00:00 committed by snipe
parent dce5afde78
commit 140bac2b53

View file

@ -59,6 +59,7 @@ class MigrateAssetLogToActionLog extends Migration
$a->expected_checkin = $log->expected_checkin;
$a->thread_id = $log->thread_id;
$a->accepted_id = $log->accepted_id;
$a->filename = $log->filename;
$a->save();