debian-mirror-gitlab/db/migrate/20181203002526_add_project_bfg_object_map_column.rb
2018-12-23 12:14:25 +05:30

10 lines
191 B
Ruby

# frozen_string_literal: true
class AddProjectBfgObjectMapColumn < ActiveRecord::Migration[5.0]
DOWNTIME = false
def change
add_column :projects, :bfg_object_map, :string
end
end