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