This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/db/post_migrate/20190715031050_drop_subscriptions.rb
2019-07-21 04:08:00 +02:00

12 lines
199 B
Ruby

# frozen_string_literal: true
class DropSubscriptions < ActiveRecord::Migration[5.2]
def up
drop_table :subscriptions
end
def down
raise ActiveRecord::IrreversibleMigration
end
end