debian-mirror-gitlab/db/migrate/20150411180045_rename_buildbox_service.rb

11 lines
297 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-04-26 12:48:37 +05:30
class RenameBuildboxService < ActiveRecord::Migration
def up
execute "UPDATE services SET type = 'BuildkiteService' WHERE type = 'BuildboxService';"
end
def down
execute "UPDATE services SET type = 'BuildboxService' WHERE type = 'BuildkiteService';"
end
end