-
Notifications
You must be signed in to change notification settings - Fork 641
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Craft update 3.0.37 to 3.1 - #3641
Comments
Getting this:
|
I am still getting an error when running the
I fixed it for us by re-saving the fields from the CP before running migrations. Here’s the code that helped me find all fields in question. public function findCorruptAssetFields()
{
return (new Query())
->select(['handle'])
->from(['{{%fields}}'])
->where([
'and',
['type' => 'craft\fields\Assets'],
[
'or',
['not like', 'settings', 'defaultUploadLocationSource'],
['not like', 'settings', 'singleUploadLocationSource'],
]
])
->column();
} |
Yeah those keys should definitely be present in the settings. |
Im having the same issue when upgrading from Craft v 2.7.4 to 3. Logs below
|
We’re also running into issues with the |
@andris-sevcenko there is one more migration affected
|
Grrrrr. |
Thanks @andris-sevcenko |
3.1.2 is out now with the fix for this. |
Description
Getting this after upgrading Craft update 3.0.37 to 3.1
view screenshot
Additional info
The text was updated successfully, but these errors were encountered: