summaryrefslogtreecommitdiff
path: root/db/migrate/20141202033956_create_tools.rb
blob: a0a4c09202bb3231d5c9b99b227d74fba4935877 (plain)
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