20110915213352_create_keys.rb 205 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 class CreateKeys < ActiveRecord::Migration def change create_table :keys do |t| t.integer :user_id, :null => false t.text :project_id, :null => false t.timestamps end end end