2018-11-13 02:27:31 -05:00
|
|
|
class DropUnusedCiTables < ActiveRecord::Migration[4.2]
|
2016-08-24 06:43:44 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
# Set this constant to true if this migration requires downtime.
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
drop_table(:ci_services)
|
|
|
|
drop_table(:ci_web_hooks)
|
|
|
|
end
|
|
|
|
end
|