diff options
author | Andrew Tomaka <atomaka@gmail.com> | 2013-12-09 00:34:51 -0500 |
---|---|---|
committer | Andrew Tomaka <atomaka@gmail.com> | 2013-12-18 17:43:45 -0500 |
commit | 0760ba3efb7566b9f56bb066f4b15ba8ea34e1e7 (patch) | |
tree | 90188fdd35e78469275a6f6084b33dce7495d841 /db | |
parent | 566b49624a230728a3a873ee1937f4b8d30ff8f5 (diff) | |
download | gitlab-ce-0760ba3efb7566b9f56bb066f4b15ba8ea34e1e7.tar.gz |
Customization and previewing of broadcast messages
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20131130165425_add_color_and_font_to_broadcast_messages.rb | 6 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 8 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 diff --git a/db/schema.rb b/db/schema.rb index cda5c3cf946..e02799e0dbc 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -20,6 +20,8 @@ ActiveRecord::Schema.define(version: 20131217102743) do t.integer "alert_type" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.string "color" + t.string "font" end create_table "deploy_keys_projects", force: true do |t| |