Navigation

 ·   Wiki Home
 ·   Wiki Help
 ·   Categories
 ·   Title List
 ·   Random Page
 ·   File Upload
 ·   Uploaded Files
 ·   Recent Changes
 ·   RSS
 ·   Atom

Active Members:

 ·  Mattew

Search:

 

Create or Find Page:

 

View Known Issues

Installation with PostgreSQL:
When Tracks is installed with PostgreSQL the todos table, done column is created as an integer by rake db_schema_import. However rails code tries to execute queries against this with ‘t’ and ‘f’ (true and false) which throws an exception. Altering this column to type of character with length 1 and default of ‘f’ seems to resolve the issue.