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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tomaka <atomaka@gmail.com>2013-12-09 09:34:51 +0400
committerAndrew Tomaka <atomaka@gmail.com>2013-12-19 02:43:45 +0400
commit0760ba3efb7566b9f56bb066f4b15ba8ea34e1e7 (patch)
tree90188fdd35e78469275a6f6084b33dce7495d841 /db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb
parent566b49624a230728a3a873ee1937f4b8d30ff8f5 (diff)
Customization and previewing of broadcast messages
Diffstat (limited to 'db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb')
-rw-r--r--db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb b/db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb
new file mode 100644
index 00000000000..473f355eceb
--- /dev/null
+++ b/db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb
@@ -0,0 +1,6 @@
+class AddColorAndFontToBroadcastMessages < ActiveRecord::Migration
+ def change
+ add_column :broadcast_messages, :color, :string
+ add_column :broadcast_messages, :font, :string
+ end
+end