gitlab-org--gitlab-foss/db/migrate/20160610301627_remove_notif...

8 lines
190 B
Ruby

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