1
0
Fork 0
MSU-Course-Alerter/db/migrate/20130424230817_change_alert...

14 lines
240 B
Ruby

class ChangeAlertsSemesterType < ActiveRecord::Migration
def up
change_table :alerts do |t|
t.change :semester, :enum
end
end
def down
change_table :alerts do |t|
t.change :semester, :string
end
end
end