blob: d9520a93416c4a6d172d0222f7c0c4165f3737b9 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddHexDigestToFoiAttachment < ActiveRecord::Migration
def self.up
add_column :foi_attachments, :hexdigest, :string, :limit => 32
end
def self.down
remove_column :foi_attachments, :hexdigest
end
end
|