提交 b7d67232 编写于 作者: G Grzegorz Bizon

Add initial build stage_id ref background migration

上级 16ae7b7a
......@@ -3,7 +3,17 @@ class MigrateStageIdReferenceInBackground < ActiveRecord::Migration
DOWNTIME = false
disable_ddl_transaction!
class Build < ActiveRecord::Base
self.table_name = 'ci_builds'
end
def up
Build.find_each do |build|
BackgroundMigrationWorker
.perform_async('MigrateBuildStageIdReference', [build.id])
end
end
def down
......
module Gitlab
module BackgroundMigration
class MigrateBuildStageIdReference
class Build < ActiveRecord::Base
self.table_name = 'ci_builds'
end
def perform(id)
raise ArgumentError unless id.is_a?(Integer)
class Stage < ActiveRecord::Base
self.table_name = 'ci_stages'
end
sql = <<-SQL.strip_heredoc
UPDATE "ci_builds" SET "stage_id" = (
SELECT id FROM ci_stages
WHERE ci_stages.pipeline_id = ci_builds.commit_id
AND ci_stages.name = ci_builds.stage
)
WHERE "ci_builds"."id" = #{id} AND "ci_builds"."stage_id" IS NULL
SQL
def perform(id)
ActiveRecord::Base.connection.execute(sql)
end
end
end
......
......@@ -22,5 +22,10 @@ describe MigrateStageIdReferenceInBackground, :migration, :redis do
end
it 'schedules background migrations' do
expect(jobs.where(stage_id: nil)).to be_present
migrate!
expect(jobs.where(stage_id: nil)).to be_empty
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册