debian-mirror-gitlab/db/migrate/20160610301627_remove_notification_level_from_users.rb
2016-06-16 23:09:34 +05:30

8 lines
190 B
Ruby

class RemoveNotificationLevelFromUsers < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
def change
remove_column :users, :notification_level, :integer
end
end