возможно ли перезаписать модель Doctrine в Symfony?
Я пытаюсь не изменять свойство "notnull", но я могу его получить ..
В 'plugins / sfDoctrineGuardPlugin / config / doctrine / schema.yml':
sfGuardUser:
actAs: [Timestampable]
columns:
id:
type: integer(4)
primary: true
autoincrement: true
username:
type: string(128)
notnull: true
unique: true
#...
И в 'config / doctrine / schema.yml':
sfGuardUser:
columns:
username:
type: string(128)
notnull: false
unique: true
Тогда "build-all-reload", но это не изменится.
Есть идеи?
Javi