build.properties 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. # $Id: build.properties 1688 2010-04-19 20:23:27Z francois $
  2. #
  3. # This is a project-specific build.properties file. The properties
  4. # in this file override anything set in Propel's top-level build.properties
  5. # file when *this* project is being built.
  6. #
  7. # See top-level build.properties-sample for explanation of configuration
  8. # options.
  9. #
  10. # Because this file is included before the top-level build.properties file,
  11. # you cannot refer to any properties set therein.
  12. propel.project = bookstore_namespaced
  13. propel.database = mysql
  14. propel.database.url = mysql:dbname=test
  15. propel.mysqlTableType = InnoDB
  16. propel.disableIdentifierQuoting=true
  17. # For MySQL or Oracle, you also need to specify username & password
  18. #propel.database.user = [db username]
  19. #propel.database.password = [db password]
  20. # Note that if you do not wish to specify the database (e.g. if you
  21. # are using multiple databses) you can use the @DB@ token which
  22. # will be replaced with a database at runtime.
  23. # E.g.: propel.database.url = sqlite://localhost/./test/@DB@.db
  24. # This will work for the datadump and the insert-sql tasks.
  25. # propel.database.createUrl = (doesn't apply for SQLite, since db is auto-created)
  26. propel.targetPackage = bookstore