我对教条束有问题。
这是我的代码:
config.yml
stof_doctrine_extensions:
orm:
default:
sluggable: true
AppKernel
new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
实体:
/**
* @var string
*
* @ORM\Column(name="name", type="string", length=255)
*/
private $name;
/**
* @Gedmo\Slug(fields={"name"})
* @ORM\Column(length=128, unique=true)
*/
private $slugurl;
我已经使用了使用声明。
但是当我想保存时,我收到了这条消息:
SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'slugurl' cannot be null
谢谢你的帮助!
答案 0 :(得分:0)
错误的配置文件。 app/config.yml
它是app/config/config.yml
。我的坏!