We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Getting this error on config:cache execution
Using dump schema file:
class DumpSchema extends \BeyondCode\LaravelMaskedDumper\DumpSchema { /** * @throws Exception */ public function getConnection(): ConnectionInterface { $connection = parent::getConnection(); $connection->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string');
return $connection; }
}
The text was updated successfully, but these errors were encountered:
It's not in the docs but I found this by searching in this repo;
#15 (comment)
tldr: put the definition into a helper and put the helper in the config
Sorry, something went wrong.
No branches or pull requests
Getting this error on config:cache execution
Using dump schema file:
class DumpSchema extends \BeyondCode\LaravelMaskedDumper\DumpSchema
{
/**
* @throws Exception
*/
public function getConnection(): ConnectionInterface
{
$connection = parent::getConnection();
$connection->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string');
}
The text was updated successfully, but these errors were encountered: