mastodon/db/post_migrate/20190715031050_drop_subscri...

12 lines
199 B
Ruby
Raw Permalink Normal View History

2019-07-21 04:08:00 +02:00
# frozen_string_literal: true
class DropSubscriptions < ActiveRecord::Migration[5.2]
def up
drop_table :subscriptions
end
def down
raise ActiveRecord::IrreversibleMigration
end
end