canvas-lms/db/migrate/20110610163600_add_sticky_x...

12 lines
222 B
Ruby

class AddStickyXlisting < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :course_sections, :sticky_xlist, :boolean
end
def self.down
remove_column :course_sections, :sticky_xlist
end
end