To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 064_drop_permissions.rb @ 912:5e80956cc792

History | View | Annotate | Download (189 Bytes)

1
class DropPermissions < ActiveRecord::Migration
2
  def self.up
3
    drop_table :permissions
4
    drop_table :permissions_roles
5
  end
6

    
7
  def self.down
8
    raise IrreversibleMigration
9
  end
10
end