1 2 3 4 5 6 7 8 9 10
class CreateTools < ActiveRecord::Migration def change create_table :tools do |t| t.string :name t.text :description t.string :asin t.timestamps end end end