database migration error (from ver 0.9.1 to ver 1.5.8) #632

This commit is contained in:
Karel Picman 2017-01-18 13:04:29 +01:00
parent 355f688871
commit 94fad6275b

View File

@ -1,6 +1,9 @@
# encoding: utf-8
#
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# Copyright (C) 2011-17 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -18,15 +21,6 @@
class Dmsf120 < ActiveRecord::Migration class Dmsf120 < ActiveRecord::Migration
class DmsfFileRevision < ActiveRecord::Base
belongs_to :file, :class_name => 'DmsfFile', :foreign_key => 'dmsf_file_id'
belongs_to :source_revision, :class_name => 'DmsfFileRevision', :foreign_key => 'source_dmsf_file_revision_id'
belongs_to :user
belongs_to :folder, :class_name => 'DmsfFolder', :foreign_key => 'dmsf_folder_id'
belongs_to :deleted_by_user, :class_name => 'User', :foreign_key => 'deleted_by_user_id'
belongs_to :project
end
def self.up def self.up
add_column :dmsf_file_revisions, :project_id, :integer, :null => true add_column :dmsf_file_revisions, :project_id, :integer, :null => true
DmsfFileRevision.reset_column_information DmsfFileRevision.reset_column_information