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

7 lines
152 B
Ruby

# rubocop:disable all
class AddImportStatusToProject < ActiveRecord::Migration
def change
add_column :projects, :import_status, :string
end
end