5 lines
118 B
Ruby
5 lines
118 B
Ruby
class AddSemesterToAlerts < ActiveRecord::Migration
|
|
def change
|
|
add_column :alerts, :semester, :string
|
|
end
|
|
end
|