Project

General

Profile

Download (262 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateKeyPairs < ActiveRecord::Migration
def self.up
create_table :key_pairs do |t|
t.text :secret
t.integer :compute_resource_id
t.string :name

t.timestamps
end
end

def self.down
drop_table :key_pairs
end
end
(102-102/104)