6 lines
150 B
Ruby
6 lines
150 B
Ruby
# rubocop:disable all
|
|
class MergeRequestErrorField < ActiveRecord::Migration
|
|
def up
|
|
add_column :merge_requests, :merge_error, :string
|
|
end
|
|
end
|