20111225202855_create_deploy_keys.rb 304 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 class CreateDeployKeys < ActiveRecord::Migration def change create_table :deploy_keys do |t| t.integer "project_id", :null => false t.datetime "created_at" t.datetime "updated_at" t.text "key" t.string "title" t.string "identifier" end end end