Hi, Im using the Doctrine versionable behavior for one of my models. The schema works fine & tables are created. But when I try to load fixtures for this, I get a fatal error saying class TaxCodeVersion not found
. I checked my Model dir, and indeed the class TaxCodeVersion is not generated by Doctrine. I always use the build --all --no-confirmation
command. Am I missing on something?
TaxCode:
package: Taxes
tableName: Fin_Tax_Codes
actAs:
Activateable: ~
SoftDelete: ~
Versionable:
tableName: fin_tax_codes_version
versionColumn: version
className: %CLASS%Version
auditLog: true
Auditable: ~
Timestampable: ~
Multitenant: ~
columns:
id:
type: integer(4)
primary: true
notnull: true
autoincrement: true
.....other columns.....