Project

General

Profile

Download (251 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateHypervisors < ActiveRecord::Migration
def self.up
create_table :hypervisors do |t|
t.string :name
t.string :uri
t.string :kind
t.timestamps
end
end

def self.down
drop_table :hypervisors
end
end
(65-65/83)