2019-02-15 15:39:39 +05:30
|
|
|
class RenameBuildboxService < ActiveRecord::Migration[4.2]
|
2015-04-26 12:48:37 +05:30
|
|
|
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
|