Sha256: 63120a7a9da4ae4d3c598f13498cf0f56021c81fdc1bf19d8ef375b8d154cc74

Contents?: true

Size: 896 Bytes

Versions: 34

Compression:

Stored size: 896 Bytes

Contents

class RenameCommentToComments < ActiveRecord::Migration
  def self.up
    rename_column(:comments, :comment, :comments) if ActiveRecord::Base.connection.columns(Comment.table_name).detect{|c| c.name == "comment"}
    rename_column(:wiki_contents, :comment, :comments) if ActiveRecord::Base.connection.columns(WikiContent.table_name).detect{|c| c.name == "comment"}
    rename_column(:wiki_content_versions, :comment, :comments) if ActiveRecord::Base.connection.columns(WikiContent.versioned_table_name).detect{|c| c.name == "comment"}
    rename_column(:time_entries, :comment, :comments) if ActiveRecord::Base.connection.columns(TimeEntry.table_name).detect{|c| c.name == "comment"}
    rename_column(:changesets, :comment, :comments) if ActiveRecord::Base.connection.columns(Changeset.table_name).detect{|c| c.name == "comment"}
  end

  def self.down
    raise IrreversibleMigration
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
redmine_extensions-0.0.39 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.38 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.37 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.11 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.10 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.36 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.34 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.09 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.07 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.06 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.05 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.04 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.03 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.33 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.02 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.1.01 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.29 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.28 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.27 spec/redmine/db/migrate/041_rename_comment_to_comments.rb
redmine_extensions-0.0.24 spec/redmine/db/migrate/041_rename_comment_to_comments.rb