Project

General

Profile

Download (354 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateComputeResources < ActiveRecord::Migration
def up
create_table :compute_resources do |t|
t.string :name
t.string :description
t.string :url
t.string :user
t.string :password
t.string :uuid
t.string :type

t.timestamps
end
end

def down
drop_table :compute_resources
end
end
(94-94/281)