debian-mirror-gitlab/db/migrate/20150417122318_remove_import_data_from_project.rb

11 lines
207 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-04-26 12:48:37 +05:30
class RemoveImportDataFromProject < ActiveRecord::Migration
2015-09-11 14:41:01 +05:30
def up
2015-04-26 12:48:37 +05:30
remove_column :projects, :import_data
end
2015-09-11 14:41:01 +05:30
def down
add_column :projects, :import_data, :text
end
2015-04-26 12:48:37 +05:30
end