Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20120417224143_add_book_url.rb « migrate « db - github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 103d626d692b9af7fa136e606fa92823ac7bffa5 (plain)
1
2
3
4
5
6
7
8
9
class AddBookUrl < ActiveRecord::Migration
  def up
    add_column :sections, :source_url, :string
  end

  def down
    remove_column :sections, :source_url
  end
end