summaryrefslogtreecommitdiff
path: root/db/migrate/20151008130321_migrate_name_to_description_for_builds.rb
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