gitlab-org--gitlab-foss/db/migrate/20181203002526_add_project_...

10 lines
243 B
Ruby
Raw Normal View History

2018-11-19 15:03:58 +00:00
# frozen_string_literal: true
class AddProjectBfgObjectMapColumn < ActiveRecord::Migration[5.0]
DOWNTIME = false
def change
add_column :projects, :bfg_object_map, :string # rubocop:disable Migration/AddLimitToStringColumns
2018-11-19 15:03:58 +00:00
end
end