10 lines
167 B
Ruby
10 lines
167 B
Ruby
class DropIndexedPosts < ActiveRecord::Migration[7.2]
|
|
def up
|
|
drop_table :indexed_posts
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|