blob: 9f3b25c39713273c04d1a4e8036e05617000cdc8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# rubocop:disable all
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
|