debian-mirror-gitlab/db/migrate/20160610301627_remove_notification_level_from_users.rb

9 lines
236 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
# rubocop:disable Migration/RemoveColumn
2019-02-15 15:39:39 +05:30
class RemoveNotificationLevelFromUsers < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
def change
remove_column :users, :notification_level, :integer
end
end