6 lines
124 B
Ruby
6 lines
124 B
Ruby
|
class ChangeContentInComments < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_column :comments, :content, :text
|
||
|
end
|
||
|
end
|