With Propel in project/plugins/dinUserPlugin/config/schema.yml:
propel:
_attributes: { package: plugins.dinUserPlugin.lib.model }
din_user:
_attributes: { phpName: dinUser }
id: { type: integer, required: true, primaryKey: true,
autoIncrement: true }
I get the file with name dinUser.php, after execute command
propel:build-model.
With Doctrine in project/plugins/dinUserPlugin/config/doctrine/schema.yml:
din_user:
columns:
id: { type: integer, primary: true, autoincrement: true,
notnull: true }
I get the file with name Plugindin_user.class.php, after execute command
doctrine:build-model.
How to make the class names the same (Propel->Doctrine)?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---