mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 20:26:15 +00:00
12 lines
187 B
Ruby
12 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
|