view db/migrate/064_drop_permissions.rb @ 1407:00a51e442fe9 biblio_alt_search_auth

Adds a "Keep associated with" checkbox to the authorship view.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 01 Oct 2013 12:00:45 +0100
parents 513646585e45
children
line wrap: on
line source
class DropPermissions < ActiveRecord::Migration
  def self.up
    drop_table :permissions
    drop_table :permissions_roles
  end

  def self.down
    raise IrreversibleMigration
  end
end