10 lines
191 B
Ruby
10 lines
191 B
Ruby
|
class ChangeFileDigests < ActiveRecord::Migration
|
||
|
def up
|
||
|
change_column :zip_packs, :file_digests, :text
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
change_column :zip_packs, :file_digests, :string
|
||
|
end
|
||
|
end
|