debian-mirror-gitlab/db/migrate/20150417122318_remove_import_data_from_project.rb
2016-06-16 23:09:34 +05:30

11 lines
207 B
Ruby

# 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