canvas-lms/db/migrate/20150210172230_allow_null_w...

12 lines
254 B
Ruby

class AllowNullWeightOnGradingPeriods < ActiveRecord::Migration
tag :predeploy
def up
change_column :grading_periods, :weight, :float, :null => true
end
def down
change_column :grading_periods, :weight, :float, :null => false
end
end