2018-12-23 12:14:25 +05:30
|
|
|
class DropUnusedCiTables < ActiveRecord::Migration[4.2]
|
2016-09-29 09:46:39 +05:30
|
|
|
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
|