summaryrefslogtreecommitdiff
path: root/db/migrate/20150417122318_remove_import_data_from_project.rb
blob: 5a008218fa5f34f24f721c1356a56c8a112135cf (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
class RemoveImportDataFromProject < ActiveRecord::Migration
  def up
    remove_column :projects, :import_data
  end

  def down
    add_column :projects, :import_data, :text
  end
end