1
0
Fork 0
MSU-Course-Alerter/db/migrate/20130531033938_readd_default_alerted_value.rb

10 lines
222 B
Ruby
Raw Normal View History

class ReaddDefaultAlertedValue < ActiveRecord::Migration
def up
change_column :alerts, :alerted, :boolean, :default => false
end
def down
change_column :alerts, :alerted, :boolean, :default => nil
end
end