9c2d061ad4
These tables, web hooks and services, are unused but where not dropped with the commitsd5c91bb9a6
and2988e1fbf5
. The file was left too, but never called.
11 lines
266 B
Ruby
11 lines
266 B
Ruby
class DropUnusedCiTables < ActiveRecord::Migration
|
|
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
|