Doctrineの1つのテーブルに複数のスラッグを持つことは可能ですか?
私は自分のyamlファイルでこれを試しました:
Article:
tableName: tst_article
actAs:
Sluggable:
unique: true
fields: [title]
canUpdate: true
Sluggable:
unique: true
fields: [text]
name: secondSlug
columns:
id:
type: integer(8)
primary: true
autoincrement: true
category_id:
type: integer(8)
title:
type: text(255)
text:
type: clob
しかし、SQLを生成した後、secondSlugのみが生成されました...