这是我的 Schema.yml 的正确语法吗?
user_type_1 :
inheritance:
type: concrete
extends: sfGuardUser
columns:
name: { type: string(255) }
user_type_2 :
inheritance:
type: concrete
extends: sfGuardUser
columns:
name: { type: string(255) }
我的项目由两种类型的用户user_type_1和user_type_2组成,我希望它们都从 sfGuardUser 继承,我应该使用继承类型具体或column_aggregation
谢谢