Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a414d550
Commit
a414d550
authored
Aug 05, 2020
by
Etienne Baqué
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added can_push column to group_deploy_keys_groups
parent
a0b21f15
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
changelogs/unreleased/14729-group-deploy-keys-can-push.yml
changelogs/unreleased/14729-group-deploy-keys-can-push.yml
+5
-0
db/migrate/20200729180539_add_can_push_to_group_deploy_keys_groups.rb
...0200729180539_add_can_push_to_group_deploy_keys_groups.rb
+9
-0
db/schema_migrations/20200729180539
db/schema_migrations/20200729180539
+1
-0
db/structure.sql
db/structure.sql
+2
-1
No files found.
changelogs/unreleased/14729-group-deploy-keys-can-push.yml
0 → 100644
View file @
a414d550
---
title
:
Add can_push column to group_deploy_keys_groups table
merge_request
:
38714
author
:
type
:
other
db/migrate/20200729180539_add_can_push_to_group_deploy_keys_groups.rb
0 → 100644
View file @
a414d550
# 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
db/schema_migrations/20200729180539
0 → 100644
View file @
a414d550
8b6b0179c7027f34390376e06472fa80daa7c13ee7fa6ea52f04fae430309fc7
\ No newline at end of file
db/structure.sql
View file @
a414d550
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment