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: 473f355eceb0566f4caf97ce575770d95dc5e690 (plain)
1
2
3
4
5
6
class AddColorAndFontToBroadcastMessages < ActiveRecord::Migration
  def change
    add_column :broadcast_messages, :color, :string
    add_column :broadcast_messages, :font, :string
  end
end