To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 68 / 68f2959a12b15f675878392447e35e71f3fc6417.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (896 Bytes)
| 1 |
class RenameCommentToComments < ActiveRecord::Migration |
|---|---|
| 2 |
def self.up |
| 3 |
rename_column(:comments, :comment, :comments) if ActiveRecord::Base.connection.columns(Comment.table_name).detect{|c| c.name == "comment"}
|
| 4 |
rename_column(:wiki_contents, :comment, :comments) if ActiveRecord::Base.connection.columns(WikiContent.table_name).detect{|c| c.name == "comment"}
|
| 5 |
rename_column(:wiki_content_versions, :comment, :comments) if ActiveRecord::Base.connection.columns(WikiContent.versioned_table_name).detect{|c| c.name == "comment"}
|
| 6 |
rename_column(:time_entries, :comment, :comments) if ActiveRecord::Base.connection.columns(TimeEntry.table_name).detect{|c| c.name == "comment"}
|
| 7 |
rename_column(:changesets, :comment, :comments) if ActiveRecord::Base.connection.columns(Changeset.table_name).detect{|c| c.name == "comment"}
|
| 8 |
end |
| 9 |
|
| 10 |
def self.down |
| 11 |
raise IrreversibleMigration |
| 12 |
end |
| 13 |
end |