canvas-lms/db/migrate/20150714162127_drop_local_f...

12 lines
208 B
Ruby

class DropLocalFilename < ActiveRecord::Migration
tag :postdeploy
def up
remove_column :attachments, :local_filename
end
def down
add_column :attachments, :local_filename, :string
end
end