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