gitlab-org--gitlab-foss/db/post_migrate/20220822071909_remove_other...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
202 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RemoveOtherRoleFromUserDetails < Gitlab::Database::Migration[2.0]
enable_lock_retries!
def change
remove_column :user_details, :other_role, :text
end
end