mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 06:15:59 +01:00
6 lines
133 B
Ruby
6 lines
133 B
Ruby
|
|
class RenameCommentsToContent < ActiveRecord::Migration[5.1]
|
||
|
|
def change
|
||
|
|
rename_column :comments, :comments, :content
|
||
|
|
end
|
||
|
|
end
|