public
Description: Tracks is a GTD(TM) web application, built with Ruby on Rails
Homepage: http://www.rousette.org.uk/projects/
Clone URL: git://github.com/bsag/tracks.git
Click here to lend your support to: tracks and make a donation at www.pledgie.com !
fixes #744 by removing explicit loading of Tag from application.rb

the load went looking for tables for tags that did not exist when
creating a new db
lrbalt (author)
Mon Jun 30 01:44:37 -0700 2008
commit  cdaed311a9e9294c34ede271317cf2e19710156d
tree    c1248a2e8c80004860efd781412103ad4958bbb0
parent  30c49b685fbf251eb84acff6f2f81f3797ed1c7d
...
7
8
9
10
 
 
 
 
 
 
 
11
12
13
...
7
8
9
 
10
11
12
13
14
15
16
17
18
19
0
@@ -7,7 +7,13 @@ require "redcloth"
0
 
0
 require 'date'
0
 require 'time'
0
-Tag # We need this in development mode, or you get 'method missing' errors
0
+
0
+# Commented the following line because of #744. It prevented rake db:migrate to 
0
+# run because this tag went looking for the taggings table that did not exist
0
+# when you feshly create a new database
0
+# Old comment: We need this in development mode, or you get 'method missing' errors
0
+# 
0
+# Tag 
0
 
0
 class ApplicationController < ActionController::Base
0
 

Comments