2018-11-13 02:27:31 -05:00
|
|
|
class RenameBuildboxService < ActiveRecord::Migration[4.2]
|
2015-04-11 14:02:44 -04:00
|
|
|
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
|