Newer
Older
dmpopidor / db / migrate / 20150416133602_remove_admin_users_table.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 165 bytes DMPonline4 - RAILS 4.0 (#4)
class RemoveAdminUsersTable < ActiveRecord::Migration
  def up
    drop_table :admin_users
  end

  def down
    raise ActiveRecord::IrreversibleMigration
  end
end