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

20141024175303_add_chapter_type.rb « migrate « db - github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 474a880d39b54508dc9e1029eaf85fc1239ee19e (plain)
1
2
3
4
5
6
class AddChapterType < ActiveRecord::Migration
  def change
    add_column :chapters, :chapter_type, :string
    add_column :chapters, :chapter_number, :string
  end
end