view db/migrate/064_drop_permissions.rb @ 13:80433603a2cd yuya

* Add support for HTTP Basic Authentication to reposman web service access
author Chris Cannam
date Wed, 25 Aug 2010 12:46:56 +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