debian-mirror-gitlab/db/migrate/20160824103857_drop_unused_ci_tables.rb
2019-02-15 15:39:39 +05:30

11 lines
271 B
Ruby

class DropUnusedCiTables < ActiveRecord::Migration[4.2]
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