mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-02 14:11:46 +01:00
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:
parent
30c49b685f
commit
cdaed311a9
1 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue