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: f5c44babd84277d0b7764942a114c54f7e1b32fb (plain)
1
2
3
4
5
class MigrateNameToDescriptionForBuilds < ActiveRecord::Migration
  def change
    execute("UPDATE ci_builds SET type='Ci::Build' WHERE type IS NULL")
  end
end