gitlab-org--gitlab-foss/db/migrate/20160824103857_drop_unused_...

12 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