gitlab-org--gitlab-foss/db/migrate/20151110125604_add_import_e...

7 lines
148 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-11-11 15:19:06 +00:00
class AddImportErrorToProject < ActiveRecord::Migration
def change
add_column :projects, :import_error, :text
end
end