Class: AddAuthorizationExtent

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/db/migrate/20101129084538_add_authorization_extent.rb

Class Method Summary collapse

Class Method Details

.downObject



12
13
14
# File 'lib/db/migrate/20101129084538_add_authorization_extent.rb', line 12

def self.down
  drop_table :authorization_extents
end

.upObject



2
3
4
5
6
7
8
9
10
# File 'lib/db/migrate/20101129084538_add_authorization_extent.rb', line 2

def self.up
  create_table :authorization_extents do |t|
    t.integer :authorization_id
    t.string  :extent_type
    t.integer :extent_objid

    t.timestamps
  end
end