I’m curious about the new version and I’d like to check out all the new features ![]()
So I checked out the trunk version of tracks, but I’m having a bit of trouble getting my sqlite3 database to work properly. Here’s what I did:
% svn co http://www.rousette.org.uk/svn/tracks-repos/trunk/tracks
% cp -r log.tmpl log
% cp config/environment.rb.tmpl config/environment.rb
% cp config/database.yml.tmpl config/database.yml
% cp db/tracks-1041.db ~/Documents/tracks.db
I then set all the necessary Tracks knobs and dials to the right setting (db type and path in database.yml and salt in environment.rb)
According to the documentation, I then have to run “rake migrate”, however, that fails:
== ConvertPreferences: migrating ==============================================
-- remove_column(:users, :preferences)
rake aborted!
SQL logic error or missing database
If that means it is trying to remove a column from the table, then I know what’s wrong: SQLite3 does not support dropping of columns…
Is there another way of getting this to setup properly?
