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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
ed9b285b
Commit
ed9b285b
authored
May 03, 2018
by
Dylan Griffith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix constants in backfill_runner_type_for_ci_runners_post_migrate.rb
parent
cb49d68c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
db/post_migrate/20180430143705_backfill_runner_type_for_ci_runners_post_migrate.rb
...43705_backfill_runner_type_for_ci_runners_post_migrate.rb
+4
-4
No files found.
db/post_migrate/20180430143705_backfill_runner_type_for_ci_runners_post_migrate.rb
View file @
ed9b285b
...
...
@@ -3,17 +3,17 @@ class BackfillRunnerTypeForCiRunnersPostMigrate < ActiveRecord::Migration
DOWNTIME
=
false
PROJECT
_RUNNER_TYPE
=
1
INSTANCE
_RUNNER_TYPE
=
3
INSTANCE
_RUNNER_TYPE
=
1
PROJECT
_RUNNER_TYPE
=
3
disable_ddl_transaction!
def
up
update_column_in_batches
(
:ci_runners
,
:runner_type
,
PROJECT
_RUNNER_TYPE
)
do
|
table
,
query
|
update_column_in_batches
(
:ci_runners
,
:runner_type
,
INSTANCE
_RUNNER_TYPE
)
do
|
table
,
query
|
query
.
where
(
table
[
:is_shared
].
eq
(
true
)).
where
(
table
[
:runner_type
].
eq
(
nil
))
end
update_column_in_batches
(
:ci_runners
,
:runner_type
,
INSTANCE
_RUNNER_TYPE
)
do
|
table
,
query
|
update_column_in_batches
(
:ci_runners
,
:runner_type
,
PROJECT
_RUNNER_TYPE
)
do
|
table
,
query
|
query
.
where
(
table
[
:is_shared
].
eq
(
false
)).
where
(
table
[
:runner_type
].
eq
(
nil
))
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