class CreateDoodadsTable < ActiveRecord::Migration def change create_table :doodads do |t| t.string :user_id, index: true t.string :name t.text :description end end end