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:
authorRobert Speicher <rspeicher@gmail.com>2015-12-31 23:56:15 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-01-13 19:34:57 +0300
commit6ae39c2cd1edcc845136739d42baf032120e3ddc (patch)
tree93f2a7b573999151a7a897a644d15b442841c4d5 /db/migrate
parent7e24c5c45afe1ada044a782f27d3f3413043b1e6 (diff)
Remove alert_type attribute from BroadcastMessage
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20151231202530_remove_alert_type_from_broadcast_messages.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20151231202530_remove_alert_type_from_broadcast_messages.rb b/db/migrate/20151231202530_remove_alert_type_from_broadcast_messages.rb
new file mode 100644
index 00000000000..78fdfeaf5cf
--- /dev/null
+++ b/db/migrate/20151231202530_remove_alert_type_from_broadcast_messages.rb
@@ -0,0 +1,5 @@
+class RemoveAlertTypeFromBroadcastMessages < ActiveRecord::Migration
+ def change
+ remove_column :broadcast_messages, :alert_type, :integer
+ end
+end