5 lines
116 B
Ruby
5 lines
116 B
Ruby
class AddSectionsToAlerts < ActiveRecord::Migration
|
|
def change
|
|
add_column :alerts, :sections, :text
|
|
end
|
|
end
|