debian-mirror-gitlab/db/migrate/20210610102410_add_protected_attribute_to_pending_builds.rb
2021-09-04 01:27:46 +05:30

8 lines
213 B
Ruby

# frozen_string_literal: true
class AddProtectedAttributeToPendingBuilds < ActiveRecord::Migration[6.1]
def change
add_column :ci_pending_builds, :protected, :boolean, null: false, default: false
end
end