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

20121211011752_add_chapter_shas.rb « migrate « db - github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d1344e3d8b85800480704ebdf48c4b8ba7f950e (plain)
1
2
3
4
5
6
7
8
9
class AddChapterShas < ActiveRecord::Migration
  def up
    add_column :chapters, :sha, :string
  end

  def down
  	remove_column :chapters, :string
  end
end