debian-mirror-gitlab/db/migrate/20150417122318_remove_import_data_from_project.rb
2019-02-15 15:39:39 +05:30

10 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