Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151008130321_migrate_name_to_description_for_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 306fa7092ea7f879e06ba8ebbeb99499ccfe0c9a (plain)
1
2
3
4
5
6
# rubocop:disable all
class MigrateNameToDescriptionForBuilds < ActiveRecord::Migration
  def change
    execute("UPDATE ci_builds SET type='Ci::Build' WHERE type IS NULL")
  end
end