Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20131130165425_add_color_and_font_to_broadcast_messages.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 348a284a53e8771fbccd6ecad14079da5f6f63dc (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddColorAndFontToBroadcastMessages < ActiveRecord::Migration
  def change
    add_column :broadcast_messages, :color, :string
    add_column :broadcast_messages, :font, :string
  end
end