build.properties 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # $Id: build.properties 1260 2009-10-26 20:43:51Z 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 = nestedset
  13. propel.database = sqlite
  14. propel.database.url = sqlite:/var/tmp/nestedset.db
  15. # For MySQL or Oracle, you also need to specify username & password
  16. # propel.database.user = [db username]
  17. # propel.database.password = [db password]
  18. # Note that if you do not wish to specify the database (e.g. if you
  19. # are using multiple databses) you can use the @DB@ token which
  20. # will be replaced with a database at runtime.
  21. # E.g.: propel.database.url = sqlite://localhost/./test/@DB@.db
  22. # This will work for the datadump and the insert-sql tasks.
  23. # propel.database.createUrl = (doesn't aply for SQLite, since db is auto-created)
  24. propel.targetPackage = nestedset
  25. # The unit tests need to test this stuff
  26. propel.addGenericAccessors = true
  27. propel.addGenericMutators = true
  28. # Use the new PHP 5.2 DateTime class
  29. propel.useDateTimeClass = true