gitlab-org--gitlab-foss/db/migrate/20220525123914_add_raw_to_c...

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

10 lines
229 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddRawToCiInstanceVariables < Gitlab::Database::Migration[2.0]
enable_lock_retries!
def change
add_column :ci_instance_variables, :raw, :boolean, null: false, default: true
end
end