mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-24 16:34:50 +00:00
11 lines
187 B
Ruby
11 lines
187 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropImports < ActiveRecord::Migration[7.1]
|
|
def up
|
|
drop_table :imports
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|