blob: 36eb02f9c506d2224eb0c2072498657f5c303cef (
plain)
| 1
2
3
4
5
6
7
8
9
 | class PopulateSoftkeyFunctions < ActiveRecord::Migration
  def up
  	SoftkeyFunction.create(:name => 'call_forwarding')
  end
  def down
  	SoftkeyFunction.where(:name => 'call_forwarding').destroy_all
  end
end
 |