debian-mirror-gitlab/db/migrate/20181203002526_add_project_bfg_object_map_column.rb
2019-02-15 15:39:39 +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