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
Doctrine doesn't recognite the changes with Symfony 3.4.6, so cannot change the value's type to text, like described in here.
The text was updated successfully, but these errors were encountered:
In symfony 4.4 the only way I found was: parameters: craue_config.entity_name: App\Entity\MySetting
nor config: ... nor parameters: craue_config: entity_name: App\Entity\MySetting
And it still want to create the craue_config_setting default table…
Sorry, something went wrong.
Create a file named 'craue_config.yaml' inside your "config/packages"-Folder. Insert this:
craue_config: entity_name: App\Entity\YOURENTITY
After that, create you entity like this:
<?php namespace App\Entity; use Craue\ConfigBundle\Entity\BaseSetting; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="Craue\ConfigBundle\Repository\SettingRepository") * @ORM\Table(name="app_configuration") */ class Configuration extends BaseSetting { }
You also have to create a file like "craue.yaml" inside your "config\routes"-Folder.
craue_config_settings_modify: path: /admin/settings/configuration defaults: _controller: Craue\ConfigBundle\Controller\SettingsController::modifyAction
No branches or pull requests
Doctrine doesn't recognite the changes with Symfony 3.4.6, so cannot change the value's type to text, like described in here.
The text was updated successfully, but these errors were encountered: