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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
749d3383
Commit
749d3383
authored
May 06, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add migration code for existing deploy keys
parent
4528fa98
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
db/migrate/20130506095501_remove_project_id_from_key.rb
db/migrate/20130506095501_remove_project_id_from_key.rb
+13
-0
No files found.
db/migrate/20130506095501_remove_project_id_from_key.rb
View file @
749d3383
class
RemoveProjectIdFromKey
<
ActiveRecord
::
Migration
class
RemoveProjectIdFromKey
<
ActiveRecord
::
Migration
def
up
def
up
puts
'Migrate deploy keys: '
Key
.
where
(
'project_id IS NOT NULL'
).
update_all
(
type:
'DeployKey'
)
DeployKey
.
all
.
each
do
|
key
|
project
=
Project
.
find_by_id
(
key
.
project_id
)
if
project
project
.
deploy_keys
<<
key
print
'.'
end
end
puts
'Done'
remove_column
:keys
,
:project_id
remove_column
:keys
,
:project_id
end
end
...
...
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