You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2021. It is now read-only.
After making some migrations, adding some new fields, and making nullable others, the package began to return encrypted values for 'some' of the fields.
For example, I have the password of the db working correctly (it is encrypted and returns the correct value) but I have the name of the encrypted S3 bucket, and it returns the string as it is in the db "__LARAVEL-DATABASE-ENCRYPTED-VERSIO ... "
I can't make it work again ... any idea?
The text was updated successfully, but these errors were encountered:
2 month later I'm still have this problem ... someone can help me, please...
Like I say in the previous message, the password field was not modify by the migration, but the aws_bucket was: $table->string('aws_bucket')->nullable()->change();
I already found the problem: $table->string('aws_bucket') was truncating the field from 500 to 255 which is the default length.
I should be using this $table->string('aws_bucket', 500)
🔥
After making some migrations, adding some new fields, and making nullable others, the package began to return encrypted values for 'some' of the fields.
For example, I have the password of the db working correctly (it is encrypted and returns the correct value) but I have the name of the encrypted S3 bucket, and it returns the string as it is in the db "__LARAVEL-DATABASE-ENCRYPTED-VERSIO ... "
I can't make it work again ... any idea?
The text was updated successfully, but these errors were encountered: