class CreateBooks < ActiveRecord::Migration
  def change
    create_table :books do |t|
      t.string :name
      t.string :link
      t.string :category

      t.timestamps null: false
    end
  end
end