rosa-build/db/migrate/20111019173246_create_role_...

14 lines
239 B
Ruby
Raw Normal View History

class CreateRoleLines < ActiveRecord::Migration
def self.up
create_table :role_lines do |t|
t.integer :role_id
t.integer :relation_id
t.timestamps
end
end
def self.down
drop_table :role_lines
end
end