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