Commit a414d550 authored by Etienne Baqué's avatar Etienne Baqué

Added can_push column to group_deploy_keys_groups

parent a0b21f15
---
title: Add can_push column to group_deploy_keys_groups table
merge_request: 38714
author:
type: other
# 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
8b6b0179c7027f34390376e06472fa80daa7c13ee7fa6ea52f04fae430309fc7
\ No newline at end of file
......@@ -12180,7 +12180,8 @@ CREATE TABLE public.group_deploy_keys_groups (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
group_id bigint NOT NULL,
group_deploy_key_id bigint NOT NULL
group_deploy_key_id bigint NOT NULL,
can_push boolean DEFAULT false NOT NULL
);
CREATE SEQUENCE public.group_deploy_keys_groups_id_seq
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment