blob: 35f2bee9c802027084781d7d03f37b27cf746cbf (
plain)
1
2
3
4
5
6
7
8
9
|
class AllowLongerComments < ActiveRecord::Migration
def self.up
change_column :public_body_versions, :last_edit_comment, :text
end
def self.down
change_column :public_body_versions, :last_edit_comment, :string
end
end
|