Project

General

Profile

Download (277 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateSshKeys < ActiveRecord::Migration
def change
create_table :ssh_keys do |t|
t.string :name, :limit => 255
t.text :key
t.string :fingerprint
t.integer :user_id
t.integer :length

t.timestamps :null => false
end
end
end
(352-352/357)