Redmineを1.3.0から2.0.0にアップグレードしようとしていますが、データベースの移行に問題があります。私はコマンドを実行すると:ここActiveRecord :: SubclassNotFound
ActiveRecord::SubclassNotFound (The single-table inheritance mechanism failed to locate the subclass: 'GoogleAppsAuthSource'. This error is raised because the column 'type' is reserved for storing the class in case of inheritance. Please rename this column if you didn't intend it to be used for storing the inheritance class or overwrite AuthSource.inheritance_column to use another column for that information.):
app/models/user.rb:139:in `try_to_login'
app/controllers/account_controller.rb:143:in `password_authentication'
app/controllers/account_controller.rb:138:in `authenticate_user'
app/controllers/account_controller.rb:30:in `login'
は、私は私の古いで使用していたプラグインのリストである:
rake db:migrate RAILS_ENV=production
を
rake aborted!
uninitialized constant RAILS_ENV
私のエラーログがあるように、それはエラーを示しredmine:
Google Appsプラグイン
Redmineのコードレビューのプラグイン
Redmineのハドソンプラグイン
単一テーブル継承のエラーはおそらくあなたのデータベースにtype
という列によって引き起こされる私に
'self.inheritance_column = nil'もトリックを行います。 – Amir
'inheritance_column'でハックするのではなく' table_type'の名前を変更するほうが簡単です。これをnilとシンボルで試して、アプリケーションを別の領域で継承したモデルを壊しました。 –
'typeというカラムを使用しないでください.'ありがとうございます...... –