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
This commit is contained in:
Reinier Balt 2008-06-30 10:44:37 +02:00
parent 30c49b685f
commit cdaed311a9

View file

@ -7,7 +7,13 @@ require "redcloth"
require 'date'
require 'time'
Tag # We need this in development mode, or you get 'method missing' errors
# Commented the following line because of #744. It prevented rake db:migrate to
# run because this tag went looking for the taggings table that did not exist
# when you feshly create a new database
# Old comment: We need this in development mode, or you get 'method missing' errors
#
# Tag
class ApplicationController < ActionController::Base