mastodon/db/migrate/20250410144908_drop_imports.rb

12 lines
187 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
class DropImports < ActiveRecord::Migration[7.1]
def up
drop_table :imports
end
def down
raise ActiveRecord::IrreversibleMigration
end
end