Project

General

Profile

Download (283 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateKeyPairs < ActiveRecord::Migration[4.2]
def up
create_table :key_pairs do |t|
t.text :secret
t.integer :compute_resource_id
t.string :name, :limit => 255

t.timestamps null: true
end
end

def down
drop_table :key_pairs
end
end
(102-102/409)