gitlab-org--gitlab-foss/db/migrate/20150417122318_remove_impor...

11 lines
212 B
Ruby

# rubocop:disable all
class RemoveImportDataFromProject < ActiveRecord::Migration[4.2]
def up
remove_column :projects, :import_data
end
def down
add_column :projects, :import_data, :text
end
end