2019-11-22 04:06:20 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddNameToBadges < ActiveRecord::Migration[5.0]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2020-04-21 11:21:10 -04:00
|
|
|
add_column :badges, :name, :string, null: true, limit: 255 # rubocop:disable Migration/PreventStrings
|
2019-11-22 04:06:20 -05:00
|
|
|
end
|
|
|
|
end
|