porkchopclub/porkchop

View on GitHub
db/migrate/20160602043328_drop_users.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DropUsers < ActiveRecord::Migration[5.0]
  def up
    drop_table "users"
  end

  def down
    raise ActiveRecord::IrreversibleMigration, "Yeah no that's not going to work."
  end
end