view db/migrate/064_drop_permissions.rb @ 165:3f11a076d11b feature_75

* Add styles for Javadoc when shown in Embedded view
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 01 Feb 2011 16:40:14 +0000
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