Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200729180539_add_can_push_to_group_deploy_keys_groups.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3412790c20cda00f23b6d4ce6c6e668a870f6f54 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddCanPushToGroupDeployKeysGroups < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :group_deploy_keys_groups, :can_push, :boolean, default: false, null: false
  end
end