socialforge/db/migrate/20160126031857_add_is_copy_...

6 lines
132 B
Ruby
Raw Normal View History

2016-01-26 15:05:45 +08:00
class AddIsCopyToCourse < ActiveRecord::Migration
def change
add_column :courses, :is_copy, :integer, :default => 0
end
end