debian-mirror-gitlab/db/migrate/20150411180045_rename_buildbox_service.rb
2018-12-23 12:14:25 +05:30

10 lines
280 B
Ruby

class RenameBuildboxService < ActiveRecord::Migration[4.2]
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