Tambourine作業メモ

主にスキル習得のためにやった作業のメモ。他人には基本的に無用のものです。

感想を書いたブログへのリンクを張る

DB変更。Amazonへのリンクと、自分のブログの感想のエントリの為のURLを持たせることにする。

class AddBlogToBook < ActiveRecord::Migration
  @cls = [
    [:amazon_url, :string],
    [:blog_url, :string]
  ]

  def self.up
    @cls.each{|c| add_column :books, *c}
  end

  def self.down
    @cls.each{|c| remove_column :books, *c}
  end
end