gitlab-org--gitlab-foss/db/migrate/20151008130321_migrate_name...

7 lines
183 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-10-06 10:01:16 +00:00
class MigrateNameToDescriptionForBuilds < ActiveRecord::Migration
def change
execute("UPDATE ci_builds SET type='Ci::Build' WHERE type IS NULL")
end
end