20190715031050_drop_subscriptions.rb 199 B

1234567891011
  1. # frozen_string_literal: true
  2. class DropSubscriptions < ActiveRecord::Migration[5.2]
  3. def up
  4. drop_table :subscriptions
  5. end
  6. def down
  7. raise ActiveRecord::IrreversibleMigration
  8. end
  9. end