Files
redux-scraper/db/migrate/20241217182129_drop_good_jobs.rb
2025-01-01 03:29:53 +00:00

16 lines
397 B
Ruby

# typed: true
# frozen_string_literal: true
class DropGoodJobs < ActiveRecord::Migration[7.0]
def change
# Uncomment for Postgres v12 or earlier to enable gen_random_uuid() support
# enable_extension 'pgcrypto'
drop_table :good_jobs
drop_table :good_job_batches
drop_table :good_job_executions
drop_table :good_job_processes
drop_table :good_job_settings
end
end