rosa-build/db/migrate/20130227102900_create_ssh_k...

16 lines
361 B
Ruby
Raw Normal View History

2013-02-28 17:02:14 +00:00
class CreateSshKeys < ActiveRecord::Migration
def change
create_table :ssh_keys do |t|
t.string :name
2013-02-28 17:02:14 +00:00
t.text :key, :null => false
t.string :fingerprint, :null => false
t.integer :user_id, :null => false
t.timestamps
end
add_index :ssh_keys, :fingerprint, :unique => true
2013-02-28 17:02:14 +00:00
add_index :ssh_keys, :user_id
end
end