aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/054_allow_longer_comments.rb
blob: fb19a1045058c6f257af9c590f9ce4988d203b08 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- encoding : utf-8 -*-
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